From 415c97093de33c3e96382c81c41b905b42c71aa6 Mon Sep 17 00:00:00 2001 From: Stephen Leitnick Date: Tue, 29 Jan 2019 19:18:15 -0500 Subject: [PATCH] Added FastSpawn --- filelist.json | 3 +- .../Aero/Internal/FastSpawn.modulescript.lua | 49 +++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 src/ReplicatedStorage/Aero/Internal/FastSpawn.modulescript.lua diff --git a/filelist.json b/filelist.json index 56122a7..b84a952 100644 --- a/filelist.json +++ b/filelist.json @@ -3,12 +3,13 @@ "paths": [ "ReplicatedFirst/AeroLoad.localscript.lua", "ServerScriptService/Aero/AeroServer.script.lua", - "ReplicatedStorage/Aero/Shared/Date.modulescript.lua", + "ServerStorage/Aero/Modules/Data.modulescript.lua", "ReplicatedStorage/Aero/Shared/Event.modulescript.lua", "ReplicatedStorage/Aero/Shared/Base64.modulescript.lua", "ReplicatedStorage/Aero/Shared/TableUtil.modulescript.lua", "ServerStorage/Aero/Services/DataService.modulescript.lua", "ServerStorage/Aero/Services/StoreService.modulescript.lua", + "ReplicatedStorage/Aero/Internal/FastSpawn.modulescript.lua", "ServerStorage/Aero/Modules/DataStoreCache.modulescript.lua", "ReplicatedStorage/Aero/Shared/ListenerList.modulescript.lua", "StarterPlayer/StarterPlayerScripts/Aero/AeroClient.localscript.lua", diff --git a/src/ReplicatedStorage/Aero/Internal/FastSpawn.modulescript.lua b/src/ReplicatedStorage/Aero/Internal/FastSpawn.modulescript.lua new file mode 100644 index 0000000..f8ed98c --- /dev/null +++ b/src/ReplicatedStorage/Aero/Internal/FastSpawn.modulescript.lua @@ -0,0 +1,49 @@ +--[[ + + MIT License + + Copyright (c) 2014 Quenty + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + --]] + +-- FastSpawn +-- Quenty +-- December 23, 2017 +-- Original source: https://github.com/Quenty/NevermoreEngine/blob/version2/Modules/Utility/fastSpawn.lua + + +--- An expensive way to spawn a function. However, unlike spawn(), it executes on the same frame, and +-- unlike coroutines, does not obscure errors +-- @module fastSpawn + +return function(func, ...) + + assert(type(func) == "function") + + local args = {...} + local bindable = Instance.new("BindableEvent") + bindable.Event:Connect(function() + func(unpack(args)) + end) + + bindable:Fire() + bindable:Destroy() + +end \ No newline at end of file