2012-02-01 22:02:26 +00:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Invert Selection
|
2012-02-18 16:43:40 +00:00
|
|
|
-- by AnS, 2012
|
2012-02-01 22:02:26 +00:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Showcases following functions:
|
|
|
|
-- * taseditor.getselection()
|
|
|
|
-- * taseditor.setselection()
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Usage:
|
|
|
|
-- Run the script, unpause emulation (or simply Frame Advance once).
|
2012-07-19 19:40:40 +00:00
|
|
|
-- Now you can press "Invert Selection" button to invert current Selection.
|
2012-02-01 22:02:26 +00:00
|
|
|
-- Previously selected frames become deselected, all other frames become selected.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function display_selection()
|
|
|
|
if (taseditor.engaged()) then
|
|
|
|
selection_table = taseditor.getselection();
|
|
|
|
if (selection_table ~= nil) then
|
|
|
|
selection_size = #selection_table;
|
|
|
|
gui.text(0, 10, "Selection: " .. selection_size .. " rows");
|
|
|
|
else
|
|
|
|
gui.text(0, 10, "Selection: no");
|
|
|
|
end
|
2012-03-24 14:07:59 +00:00
|
|
|
else
|
|
|
|
gui.text(1, 9, "TAS Editor is not engaged.");
|
2012-02-01 22:02:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function invert_selection()
|
|
|
|
old_sel = taseditor.getselection();
|
|
|
|
new_sel = {};
|
|
|
|
|
|
|
|
-- Select all
|
|
|
|
movie_size = movie.length();
|
|
|
|
for i = 0, movie_size do
|
|
|
|
new_sel[i + 1] = i;
|
|
|
|
end
|
|
|
|
|
|
|
|
if (selection_table ~= nil) then
|
2012-02-06 16:57:46 +00:00
|
|
|
-- Substract old selection from new selection set
|
2012-02-01 22:02:26 +00:00
|
|
|
for i = #old_sel, 1, -1 do
|
|
|
|
selected_frame = old_sel[i];
|
|
|
|
-- we're taking advantage of the fact that "old_sel" is sorted in ascending order
|
|
|
|
-- so we can safely use table.remove to remove indexes from the end to the beginning
|
|
|
|
table.remove(new_sel, selected_frame + 1);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Apply new set to TAS Editor selection
|
|
|
|
taseditor.setselection(new_sel);
|
|
|
|
end
|
|
|
|
|
|
|
|
taseditor.registerauto(display_selection);
|
2012-07-19 19:40:40 +00:00
|
|
|
taseditor.registermanual(invert_selection, "Invert Selection");
|
2012-02-01 22:02:26 +00:00
|
|
|
|