-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActor.lua
99 lines (50 loc) · 1.91 KB
/
Actor.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
local tapLua = tapLua.Type
local isSprite = tapLua.isSprite
local isActorFrame = tapLua.isActorFrame
local function actor(s)
local path = bitEye.Path .. "Actors/"
local endsWith = s:Astro():endsWith("%.lua")
if not endsWith then s = s .. "/Actor.lua" end
local actor = loadfile( path .. s )() return actor
end
local function onSprite(self)
if not isSprite(self) then return end
self:set_use_effect_clock_for_texcoords(false)
end
local setChildrenTiming
local function setTiming(self)
self:effectclock("timer"):set_tween_uses_effect_delta(false)
onSprite(self) setChildrenTiming(self)
end
setChildrenTiming = function(self)
if not isActorFrame(self) then return end
self:RunCommandsOnChildren( function(self) setTiming(self) end )
end
local function onMediaActor(self)
local actor = self:GetChild("")
if isSprite(actor) then actor:scale_or_crop_background() end
end
local function Load( self, path )
self:RemoveAllChildren() self:AddChildFromPath(path)
onMediaActor(self) self:playcommand("On") setChildrenTiming(self)
end
-- Check if the option row position is in range.
local function inRange( i, n ) return i == n or i == n + 8 end
local optionRow = {
currentIndex = function()
return SCREENMAN:GetTopScreen():GetCurrentRowIndex("PlayerNumber_P1")
end,
get = function(i) return SCREENMAN:GetTopScreen():GetOptionRow(i) end,
isCustom = function(i)
if inRange( i, 7 ) then return "script" end
return inRange( i, 8 ) or inRange( i, 9 )
end,
isBGA = function(i) return inRange( i, 10 ) end,
isMovie = function(i)
for n = 11, 13 do
if inRange( i, n ) then return true end
end
end
}
local merge = { actor = actor, OptionRow = optionRow, Load = Load }
Astro.Table.merge( bitEye, merge )