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
|
_addon.name = 'ConsoleBG'
_addon.author = 'StarHawk'
_addon.version = '0.9.0.1'
_addon.command = 'consolebg'
config = require('config')
require('logger')
defaults = {}
defaults.bg = {}
defaults.bg.alpha = 192
defaults.bg.red = 0
defaults.bg.green = 0
defaults.bg.blue = 0
defaults.pos = {}
defaults.pos.x = 0
defaults.pos.y = 0
defaults.extents = {}
defaults.extents.x = 7680
defaults.extents.y = 360
settings = config.load(defaults)
windower.prim.create('ConsoleBG')
consolesetting_commands = T{
color = 'Color',
c = 'Color',
size = 'Size',
s = 'Size',
position = 'Position',
p = 'Position',
}
config.register(settings, function(settings)
windower.prim.set_color('ConsoleBG', settings.bg.alpha, settings.bg.red, settings.bg.green, settings.bg.blue)
windower.prim.set_position('ConsoleBG', settings.pos.x, settings.pos.y)
windower.prim.set_size('ConsoleBG', settings.extents.x, settings.extents.y)
end)
function consolesettings(command1, ...)
local values = L{...}
local command1 = command1:lower()
if command1 == 'color' then
log('Colors changed! Alpha: ' .. values[1] .. ' Red: ' .. values[2] .. ' Green: ' .. values[3] .. ' Blue: ' .. values[4])
settings.bg.alpha = tonumber(values[1])
settings.bg.red = tonumber(values[2])
settings.bg.green = tonumber(values[3])
settings.bg.blue = tonumber(values[4])
elseif command1 == 'position' then
log('Position changed! X: ' .. values[1] .. ' Y: ' .. values[2])
settings.pos.x = tonumber(values[1])
settings.pos.y = tonumber(values[2])
elseif command1 == 'size' then
log('Size changed! Width: ' .. values[1] .. ' Height: ' .. values[2])
settings.extents.x = tonumber(values[1])
settings.extents.y = tonumber(values[2])
end
config.save(settings)
config.reload(settings)
end
windower.register_event('addon command', function(command1, ...)
local argcount = select('#', ...)
command1 = command1 and command1:lower() or 'help'
if consolesetting_commands:containskey(command1) then
command1 = consolesetting_commands[command1]
if command1 == 'Color' then
if ((4 > argcount) or (argcount > 4)) then
error('Invalid syntax. Check the "help" command.')
else
consolesettings(command1, ...)
end
elseif (command1 == 'Position' or command1 == 'Size') then
if ((2 > argcount) or (argcount > 2)) then
error('Invalid syntax. Check the "help" command.')
else
consolesettings(command1, ...)
end
end
elseif command1 == 'help' then
print('%s v%s':format(_addon.name, _addon.version))
print(' \\cs(255,255,255)color <values>\\cr - Changes background color and transparency Valid range: 0-255')
print(' \\crExample:\\cs(255,255,255) color 255 0 1 2\\cr - Alpha: 255 Red: 0 Green: 1 Blue: 2')
print(' \\cs(255,255,255)position <values>\\cr - Set anchor points')
print(' \\crExample:\\cs(255,255,255) position 1 25 \\cr - X: 1 Y: 25')
print(' \\cs(255,255,255)size <values>\\cr - Set size')
print(' \\crExample:\\cs(255,255,255) size 700 310\\cr - Width: 700 Height: 310')
else
error('Unknown command! Use the "help" command for a list of commands.')
end
end)
windower.register_event('prerender', function()
windower.prim.set_visibility('ConsoleBG', windower.console.visible())
end)
--[[
Copyright © 2015, Windower
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of Windower nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Windower BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
]]
|