dobrograd-13-06-2022/garrysmod/addons/feature-wire/lua/wire/stools/graphics_tablet.lua
Jonny_Bro (Nikita) e4d5311906 first commit
2023-11-16 15:01:19 +05:00

46 lines
2.1 KiB
Lua

--Wire graphics tablet by greenarrow
--http://gmodreviews.googlepages.com/
--http://forums.facepunchstudios.com/greenarrow
--There may be a few bits of code from the wire panel here and there as i used it as a starting point.
--Credit to whoever created the first wire screen, from which all others seem to use the lagacy clientside drawing code (this one included)
WireToolSetup.setCategory( "Input, Output/Mouse Interaction" )
WireToolSetup.open( "graphics_tablet", "Graphics Tablet", "gmod_wire_graphics_tablet", nil, "Graphics Tablet" )
if ( CLIENT ) then
language.Add( "Tool.wire_graphics_tablet.name", "Graphics Tablet Tool (Wire)" )
language.Add( "Tool.wire_graphics_tablet.desc", "Spawns a graphics tablet, which outputs cursor coordinates" )
language.Add( "Tool_wire_graphics_tablet_mode", "Output mode: -1 to 1 (ticked), 0 to 1 (unticked)" )
language.Add( "Tool_wire_graphics_tablet_draw_background", "Draw background" )
language.Add( "Tool_wire_graphics_tablet_createflat", "Create flat to surface" )
TOOL.Information = { { name = "left", text = "Create/Update " .. TOOL.Name } }
end
WireToolSetup.BaseLang()
WireToolSetup.SetupMax( 20 )
if SERVER then
function TOOL:GetDataTables()
return {
DrawBackground = self:GetClientNumber("draw_background") ~= 0,
CursorMode = self:GetClientNumber("outmode") ~= 0
}
end
-- Uses default WireToolObj:MakeEnt's WireLib.MakeWireEnt function
end
TOOL.ClientConVar = {
model = "models/kobilica/wiremonitorbig.mdl",
outmode = 0,
createflat = 1,
draw_background = 1,
}
function TOOL.BuildCPanel(panel)
panel:AddControl("Header", { Text = "#Tool.wire_graphics_tablet.name", Description = "#Tool.wire_graphics_tablet.desc" })
WireDermaExts.ModelSelect(panel, "wire_graphics_tablet_model", list.Get( "WireScreenModels" ), 5) -- screen with out a GPUlip setup
panel:CheckBox("#Tool_wire_graphics_tablet_mode", "wire_graphics_tablet_outmode")
panel:CheckBox("#Tool_wire_graphics_tablet_draw_background", "wire_graphics_tablet_draw_background")
panel:CheckBox("#Tool_wire_graphics_tablet_createflat", "wire_graphics_tablet_createflat")
end