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
115
116
117
118
119
120
121
122
123
|
local plugin = {
name = 'altcraft',
displayName = "AltCraft Core Plugin",
onLoad = nil,
onUnload = nil,
onChangeState = nil,
onTick = nil,
onRequestBlockInfo = nil,
onChatMessage = nil,
onDisconnected = nil,
}
function plugin.onLoad ()
rmlui:LoadFontFace("altcraft/fonts/OpenSans-Regular")
local con = rmlui.contexts["default"]
local uiMainMenu = con:LoadDocument("altcraft/ui/main-menu")
con:LoadDocument("altcraft/ui/hud")
con:LoadDocument("altcraft/ui/pause")
con:LoadDocument("altcraft/ui/options")
con:LoadDocument("altcraft/ui/loading")
con:LoadDocument("altcraft/ui/respawn")
con:LoadDocument("altcraft/ui/chat")
uiMainMenu:Show()
AC.Settings.Load()
uiMainMenu:GetElementById("username"):SetAttribute("value", AC.Settings.Read("username","Username"..tostring(math.random(10000))))
uiMainMenu:GetElementById("hostname"):SetAttribute("value",AC.Settings.Read("hostname","127.0.0.1"))
end
function plugin.onChangeState (newState)
local toHide = {}
local toShow = {}
for i,doc in ipairs(rmlui.contexts["default"].documents) do
if doc.title == newState then
toShow[#toShow+1]=doc
else
toHide[#toHide+1]=doc
end
end
for i,doc in ipairs(toHide) do
doc:Hide()
end
for i,doc in ipairs(toShow) do
doc:Show()
end
end
function plugin.onUnload ()
AC.LogInfo("AC Core unloaded")
end
require("altcraft/ui")
function plugin.onTick (deltaTime)
UpdateUi()
if AC.GetGameState() and AC.GetGameState():GetPlayer() and AC.GetGameState():GetTimeStatus().worldAge > 0 then
-- local player = AC.GetGameState():GetPlayer()
-- player.pos.x = player.pos.x + deltaTime * 0.5
-- local playerPos = AC.GetGameState():GetPlayer().pos
-- local wrld = AC.GetGameState():GetWorld()
-- playerPosV = Vector.new(playerPos.x, playerPos.y - 1, playerPos.z)
-- bid = wrld:GetBlockId(playerPosV)
-- print(bid.id..":"..bid.state)
end
end
local blocks = require("altcraft/blocks")
blocks.RegisterBlocks()
function plugin.onRequestBlockInfo(blockPos)
return blocks.GetBlockInfo(blockPos)
end
function plugin.onChatMessage(chat, pos)
local chatDoc = {}
for i,d in ipairs(rmlui.contexts["default"].documents) do
if d.title == "Chat" then
chatDoc = d
end
end
local msg = chat:ToPlainText()
msg = string.gsub(msg,'&','&')
msg = string.gsub(msg,'<','<')
msg = string.gsub(msg,'>','>')
msg = string.gsub(msg,'""','"')
msg = string.gsub(msg,"''",''')
local color = ""
if pos == 0 then
color = ""
elseif pos == 1 then
color = 'style="color: #BBBBBB"'
elseif pos == 2 then
color = 'style="color: maroon"'
else
color = 'style="color: navy"'
end
chatDoc:GetElementById('chat').inner_rml = chatDoc:GetElementById('chat').inner_rml .. string.format('<p class="chat-msg" %s>%s</p>', color, msg)
MoveChatToBottom = true
end
function plugin.onDisconnected(reason)
local mmDoc = {}
for i,d in ipairs(rmlui.contexts["default"].documents) do
if d.title == "MainMenu" then
mmDoc = d
end
end
mmDoc:GetElementById('disclaimer').inner_rml = reason
end
AC.RegisterDimension(0, Dimension.new("overworld", true))
AC.RegisterDimension(-1, Dimension.new("the_nether", false))
AC.RegisterDimension(1, Dimension.new("the_end", false))
AC.RegisterPlugin(plugin)
plugin = nil
|