-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLOSLockdown.txt
47 lines (44 loc) · 1016 Bytes
/
LOSLockdown.txt
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
--@name Lanteans OS AppCard (Lockdown)
--@author Yuri6037
--@class processor
--@model models/props_junk/sawblade001a.mdl
--Initialisation
Entity = ents.self()
Entity:setMaterial("phoenix_storms/black_chrome")
wire.createOutputs({"AppName", "AppCode"}, {"String", "String"})
Ports = wire.ports
--End
--Application
AppName = "lockdown"
AppCode = [[
OS.DefineMessage("LOCKDOWN_START", function()
if (OS.GetTaskCount("lockdown") == 0) then
OS.StartApp("lockdown")
end
end)
OS.DefineMessage("LOCKDOWN_END", function()
OS.TaskKill("lockdown")
end)
local app = {}
function app:Init()
self:DisableDecorations()
self:SetPos(0, 0)
self:SetSize(ScrW, ScrH)
self:SetBackground(COLOR(0, 0, 0))
OS.Message("LOCKDOWN_START", {})
end
function app:DrawTitleBar()
end
function app:Render()
end
function app:Touched(x, y)
OS.Message("LOCKDOWN_END")
end
OS.DefineApp("lockdown", app)
OS.AddAppMenuItem("lockdown", "Lockdown", "Tools")
]]
--End
--Saving
Ports["AppName"] = "app_" .. AppName
Ports["AppCode"] = AppCode
--End