-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.lua
110 lines (94 loc) · 3.14 KB
/
main.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
--
-- Default keybinds:
-- To cycle, press 'g'
-- To reset back to nothing, press 'G'
-- To switch between 4:3 and 16:9, press CTRL+g
--
-- Everything breaks when you're not full screen btw
--
-- Adding a guide:
-- Add image to 'guides' directory
-- Images have to be bgra format
-- Add image file name to the GUIDES variable below
-- Add readable image name to the FULL_NAMES variable below
--
-- TODO
-- Full screen warning? Maybe when switching but not in full screen give feedback?
--
-- Keybind key
-- To change the key for all three functions, change this 'key' variable
-- To disable automatic keybind setting, use local key = nil, or local key = ''
-- then add the three functions to your input.conf with script-binding
-- h script-binding cycle_guide
local key = 'g'
-- local key = ''
local verbose = true -- if true, gives feedback at top left corner
-- Globals
local mp = require 'mp'
local M = {}
local guide = 0
local fourthree = 0
local DIRECTORY = mp.get_script_directory() .. "/guides/"
local GUIDES = {"center", "center_diag", "thirds", "golden_section", "harm_tri_A", "harm_tri_B"}
local FULL_NAMES = {"Center", "Center Diagonal", "Thirds", "Golden Section", "Harmonic Triangle A", "Harmonic Triangle B"}
-- lua arrays start at 1 btw
function M.cycle_guide()
guide = (guide + 1) % (table.getn(GUIDES) + 1)
mp.commandv("overlay-remove", 10)
-- f = mp.get_property("fullscreen") -- in case I want to add full screen warning later
if(guide > 0) then
if(fourthree == 0) then
path = DIRECTORY .. GUIDES[guide]
local status = mp.commandv("overlay-add", 10, 0, 0, path, 0, 'bgra', 1920, 1080, 7680)
M.feedback(status)
else
path = DIRECTORY .. "43_" .. GUIDES[guide]
local status = mp.commandv("overlay-add", 10, 240, 0, path, 0, 'bgra', 1440, 1080, 5760)
M.feedback(status)
end
else
if(verbose) then
mp.commandv("show-text", "Off", 500)
end
end
end
function M.feedback(status)
if(verbose) then
if(status) then
mp.commandv("show-text", FULL_NAMES[guide], 750)
else
mp.commandv("show-text", "Could not read " .. path, 2000)
-- technically some other error could happen as well actually
end
end
end
function M.clear_guide()
guide = 0
mp.commandv("overlay-remove", 10)
if(verbose) then
mp.commandv("show-text", "Off", 500)
end
end
function M.set_43()
fourthree = (fourthree + 1) % 2
guide = guide - 1
M.cycle_guide()
text = "Mode: "
if (fourthree == 1) then
text = text .. "4:3"
else
text = text .. "16:9"
end
mp.commandv("show-text", text, 750)
end
-- main function of the file
function M.main()
mp.add_key_binding(key, "comp_guide_cycle", M.cycle_guide)
mp.add_key_binding('SHIFT+' .. key, "comp_guide_clear", M.clear_guide)
mp.add_key_binding('CTRL+' .. key, "comp_guide_43", M.set_43)
-- Force functions if that's your style
-- mp.add_forced_key_binding(key, "comp_guide_cycle", M.cycle_guide)
-- mp.add_forced_key_binding('SHIFT+' .. key, "comp_guide_clear", M.clear_guide)
-- mp.add_forced_key_binding('CTRL+' .. key, "comp_guide_43", M.set_43)
end
mp.register_event("file-loaded", M.main)