-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoriginal_plugin.lua
249 lines (195 loc) · 7.49 KB
/
original_plugin.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
--things may or may not work in this
--Stars and Bunnies [Hard] is good for testing, no LNs
LAYER_INCREMENT = 1000000
SV_INCREMENT = .125
hidelayers = false
debug = "hi"
function draw()
imgui.Begin("Parallel Universe")
imgui.Text(debug)
--[[if map.EditorLayers[#map.EditorLayers].Name != "ignore" then
actions.CreateLayer(utils.CreateEditorLayer("ignore"))
end]]
state.IsWindowHovered = imgui.IsWindowHovered()
if #state.SelectedHitObjects > 0 then
local sv = map.GetScrollVelocityAt(state.SelectedHitObjects[1].StartTime)
imgui.Text("SV: " .. (sv and sv.Multiplier or 1))
imgui.Text("Layer: " .. state.SelectedHitObjects[1].EditorLayer)
imgui.Text("Universe: " .. getPositionFromTime(state.SelectedHitObjects[1].StartTime) / (LAYER_INCREMENT * 100)) --"universe" of the note
end
if hidelayers then
--TODO: optimize
local universe = math.floor(getUniverse(state.SongTime))
if universe != 0 then
for i, layer in pairs(map.EditorLayers) do
setLayerHidden(layer, i != universe and i != #map.EditorLayers)
end
setLayerHidden(map.DefaultLayer, true)
else
for i, layer in pairs(map.EditorLayers) do
setLayerHidden(layer, true and i != #map.EditorLayers)
end
setLayerHidden(map.DefaultLayer, false)
end
end
if imgui.Button("Hide Layer") then
hideLayer(state.CurrentLayer)
end
if imgui.Button("Unhide Layer") then
unhideLayer(state.CurrentLayer)
end
if imgui.Button("Teleport Backward") then
teleport(state.SelectedHitObjects[1].StartTime, -1)
end
if imgui.Button("Teleport Forward") then
teleport(state.SelectedHitObjects[1].StartTime, 1)
end
if imgui.Button("Increase SV by .5") then
increaseSV(math.floor(state.SongTime), .5)
end
_, hidelayers = imgui.Checkbox("Hide Layers", hidelayers)
imgui.End()
end
function increaseSV(time, multiplier)
local sv = map.GetScrollVelocityAt(time)
local newsv = utils.CreateScrollVelocity(time, sv.Multiplier + multiplier)
local svs = map.ScrollVelocities
if sv.StartTime == time then
actions.RemoveScrollVelocity(sv)
actions.PlaceScrollVelocity(newsv)
for i = 1, #svs do
if svs[i].StartTime == newsv.StartTime then
local nextsv = svs[i + 1]
local prevsv = svs[i - 1]
if nextsv and nextsv.Multiplier == newsv.Multiplier then
actions.RemoveScrollVelocity(nextsv)
end
if prevsv and prevsv.Multiplier == newsv.Multiplier then
actions.RemoveScrollVelocity(newsv)
end
break
end
end
else
actions.PlaceScrollVelocity(newsv)
for _, nextsv in pairs(svs) do
if nextsv.StartTime > time then
if nextsv.Multiplier == newsv.Multiplier then
actions.RemoveScrollVelocity(nextsv)
end
break
end
end
end
end
function getUniverse(time)
return getPositionFromTime(time) / (LAYER_INCREMENT * 100)
end
function setLayerHidden(layer, hidden)
if layer.Hidden != hidden then actions.ToggleLayerVisibility(layer) end
end
function teleport(time, diff) --TODO: implement teleporting without having to show note
local multiplier = diff * LAYER_INCREMENT / SV_INCREMENT
local svs = {}
local sv = function (time, multiplier) table.insert(svs, utils.CreateScrollVelocity(time, multiplier)) end
local origsv = map.GetScrollVelocityAt(time)
local rate = origsv and origsv.Multiplier or 1
sv(time, rate + multiplier)
sv(time + SV_INCREMENT, rate)
actions.PlaceScrollVelocityBatch(svs)
local notes = {}
for _, note in pairs(map.HitObjects) do
if note.StartTime == time then
table.insert(notes, note)
end
end
actions.MoveHitObjectsToLayer(map.EditorLayers[#map.EditorLayers], notes)
end
function hideLayer(layer)
local notes = getNotesInLayer(layer)
local svs = {}
local sv = function (time, multiplier) table.insert(svs, utils.CreateScrollVelocity(time, multiplier)) end
local layerindex = getLayerIndex(layer)
unhideLayer(layer)
for _, note in pairs(notes) do
local universe = math.floor(getPositionFromTime(note.StartTime) / (LAYER_INCREMENT * 100))
local distance = (layerindex - universe) * LAYER_INCREMENT * 100
local multiplier = distance / 100 / SV_INCREMENT
local origsv = map.GetScrollVelocityAt(note.StartTime)
local rate = origsv and origsv.Multiplier or 1
if distance != 0 then
--[[actions.PlaceScrollVelocity(utils.CreateScrollVelocity(note.StartTime + SV_INCREMENT, rate))
increaseSV(note.StartTime, -1 * multiplier)
increaseSV(note.StartTime - SV_INCREMENT, multiplier)]]
sv(note.StartTime - SV_INCREMENT, multiplier)
sv(note.StartTime, -1 * multiplier + 2 * rate)
sv(note.StartTime + SV_INCREMENT, rate)
end
end
actions.PlaceScrollVelocityBatch(svs)
end
function unhideLayer(layer)
local notes = getNotesInLayer(layer)
local svs = {}
for _, note in pairs(notes) do
table.insert(svs, getScrollVelocityAtExactly(note.StartTime - SV_INCREMENT))
table.insert(svs, getScrollVelocityAtExactly(note.StartTime))
table.insert(svs, getScrollVelocityAtExactly(note.StartTime + SV_INCREMENT))
end
actions.RemoveScrollVelocityBatch(svs)
end
function getNotesInLayer(layer)
local notes = map.HitObjects
local layernotes = {}
local layerindex = getLayerIndex(layer)
local lasttime = false
for _, note in pairs(notes) do
if note.EditorLayer == layerindex and note.StartTime != lasttime then
table.insert(layernotes, note)
lasttime = note.StartTime
end
end
return layernotes
end
function getLayerIndex(layer)
local layers = map.EditorLayers
if layer == map.DefaultLayer then
return 0
end
for i = 1, #layers do
if layer == layers[i] then
return i
end
end
end
function getPositionFromTime(time)
--[[
if using this function multiple times in one frame,
it may be faster to set ScrollVelocities = map.ScrollVelocities in draw()
and then set local svs = ScrollVelocities inside this function
]]
local svs = map.ScrollVelocities
if #svs == 0 or time < svs[1].StartTime then
return math.floor(time * 100)
end
local position = math.floor(svs[1].StartTime * 100)
local i = 2
while i <= #svs do
if time < svs[i].StartTime then
break
else
position = position + math.floor((svs[i].StartTime - svs[i - 1].StartTime) * svs[i - 1].Multiplier * 100)
end
i = i + 1
end
i = i - 1
position = position + math.floor((time - svs[i].StartTime) * svs[i].Multiplier * 100)
return position
end
function getScrollVelocityAtExactly(time)
local currentsv = map.GetScrollVelocityAt(time)
if not currentsv then return end
if currentsv.StartTime == time then
return currentsv
end
end