summaryrefslogtreecommitdiff
path: root/init.lua
blob: 49c803eae9158658003c33614a552072da76d10e (plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
digiscreen = {}

function digiscreen.removeEntity(pos)
	local entitiesNearby = core.get_objects_inside_radius(pos,0.5)
	for _,i in pairs(entitiesNearby) do
		if i:get_luaentity() and i:get_luaentity().name == "digiscreen:image" then
			i:remove()
		end
	end
end

function digiscreen.processDigilinesMessage(pos,msg,size)
	if (not size) or size < 1 then size = 16 end
	local data = {}
	for y=1,size,1 do
		data[y] = {}
		if type(msg[y]) ~= "table" then msg[y] = {} end
		for x=1,size,1 do
			if type(msg[y][x]) == "string" and string.len(msg[y][x]) == 7 and string.sub(msg[y][x],1,1) == "#" then
				msg[y][x] = string.sub(msg[y][x],2,-1)
			end
			if type(msg[y][x]) ~= "string" or string.len(msg[y][x]) ~= 6 then msg[y][x] = "000000" end
			msg[y][x] = string.upper(msg[y][x])
			for i=1,6,1 do
				if not tonumber(string.sub(msg[y][x],i,i),16) then
					msg[y][x] = "000000"
				end
			end
			data[y][x] = msg[y][x]
		end
	end
	local bincolors = ""
	for y=1,size,1 do
		if type(data[y]) ~= "table" then data[y] = {} end
		for x=1,size,1 do
			local colorspec = 0
			if data[y][x] then
				colorspec = tonumber(data[y][x],16) or 0
			end
			colorspec = 0xFF000000 + colorspec
			bincolors = bincolors..core.colorspec_to_bytes(colorspec)
		end
	end
	local img = core.encode_png(size,size,bincolors,1)
	return pos,"[png:"..core.encode_base64(img),bincolors
end

function digiscreen.updateDisplay(pos)
	digiscreen.removeEntity(pos)
	local meta = core.get_meta(pos)
	local texture = meta:get_string("texture")
	if (not texture) or texture == "" then
		local oldData = meta:get_string("data")
		if oldData and string.len(oldData) > 1 then
			oldData = core.deserialize(oldData)
			if not oldData then return end
			core.handle_async(digiscreen.processDigilinesMessage,digiscreen.asyncDone,pos,oldData)
			return
		end
	end
	local entity = core.add_entity(pos,"digiscreen:image")
	local fdir = core.facedir_to_dir(core.get_node(pos).param2)
	entity:set_properties({textures={texture}})
	entity:set_yaw((fdir.x ~= 0) and math.pi/2 or 0)
	entity:set_pos(vector.add(pos,vector.multiply(fdir,0.39)))
end

function digiscreen.asyncDone(pos,texture,bincolors)
	local node = core.get_node(pos)
	if core.get_item_group(node.name,"digiscreen") ~= 1 then return end
	local meta = core.get_meta(pos)
	meta:set_string("data","")
	meta:set_string("bincolors",bincolors)
	meta:set_string("texture",texture)
	meta:mark_as_private({"data","bincolors","texture"})
	digiscreen.updateDisplay(pos)
	core.get_node_timer(pos):start(5)
end

function digiscreen.recompress(pos,bincolors,size)
	if (not size) or size < 1 then size = 16 end
	if string.len(bincolors) ~= (size^2)*4 then return false end
	local img = core.encode_png(size,size,bincolors,9)
	return true,pos,"[png:"..core.encode_base64(img)
end

function digiscreen.recompressDone(ok,pos,texture)
	if not ok then return end
	local node = core.get_node(pos)
	if core.get_item_group(node.name,"digiscreen") ~= 1 then return end
	local meta = core.get_meta(pos)
	meta:set_string("bincolors","")
	meta:set_string("texture",texture)
	meta:mark_as_private({"bincolors","texture"})
	digiscreen.updateDisplay(pos)
end

function digiscreen.on_construct(pos,size)
	if (not size) or size < 1 then size = 16 end
	local meta = core.get_meta(pos)
	meta:set_string("formspec","field[channel;Channel;${channel}]")
	local disp = {}
	for y=1,size,1 do
		disp[y] = {}
		for x=1,size,1 do
			disp[y][x] = "000000"
		end
	end
	meta:set_string("data",core.serialize(disp))
	meta:mark_as_private("data")
	meta:set_int("size",size)
	digiscreen.updateDisplay(pos)
end

function digiscreen.on_receive_fields(pos,_,fields,sender)
	local name = sender:get_player_name()
	if not fields.channel then return end
	if core.is_protected(pos,name) and not core.check_player_privs(name,"protection_bypass") then
		core.record_protection_violation(pos,name)
		return
	end
	local meta = core.get_meta(pos)
	meta:set_string("channel",fields.channel)
end

function digiscreen.on_punch(screenpos,_,player)
	local meta = core.get_meta(screenpos)
	local size = meta:get_int("size")
	if (not size) or size < 1 then size = 16 end
	if player and not player.is_fake_player then
		local eyepos = vector.add(player:get_pos(),vector.add(player:get_eye_offset(),vector.new(0,1.5,0)))
		local lookdir = player:get_look_dir()
		local distance = vector.distance(eyepos,screenpos)
		local endpos = vector.add(eyepos,vector.multiply(lookdir,distance+1))
		local ray = core.raycast(eyepos,endpos,true,false)
		local pointed,screen,hitpos
		repeat
			pointed = ray:next()
			if pointed and pointed.type == "node" then
				local node = core.get_node(pointed.under)
				if node.name == "digiscreen:digiscreen" then
					screen = pointed.under
					hitpos = vector.subtract(pointed.intersection_point,screen)
				end
			end
		until screen or not pointed
		if not hitpos then return end
		local facedir = core.facedir_to_dir(core.get_node(screen).param2)
		if facedir.x > 0 then
			hitpos.x = -1*hitpos.z
		elseif facedir.x < 0 then
			hitpos.x = hitpos.z
		elseif facedir.z < 0 then
			hitpos.x = -1*hitpos.x
		end
		hitpos.y = -1*hitpos.y
		local hitpixel = {}
		hitpixel.x = math.floor((hitpos.x+0.5)*size+0.5)+1
		hitpixel.y = math.floor((hitpos.y+0.5)*size+0.5)+1
		if hitpixel.x < 1 or hitpixel.x > size or hitpixel.y < 1 or hitpixel.y > size then return end
		local message = {
			x = hitpixel.x,
			y = hitpixel.y,
			player = player:get_player_name(),
		}
		digilines.receptor_send(screenpos,digilines.rules.default,meta:get_string("channel"),message)
	end
end

function digiscreen.on_timer(pos)
	local bincolors = core.get_meta(pos):get_string("bincolors")
	local size = core.get_meta(pos):get_int("size")
	if (not size) or size < 1 then size = 16 end
	if string.len(bincolors) > 0 then
		core.handle_async(digiscreen.recompress,digiscreen.recompressDone,pos,bincolors,size)
	end
end

function digiscreen.on_digilines(pos,_,channel,msg)
	local meta = core.get_meta(pos)
	local setchan = meta:get_string("channel")
	if type(msg) ~= "table" or setchan ~= channel then return end
	local size = meta:get_int("size")
	if (not size) or size < 1 then size = 16 end
	core.handle_async(digiscreen.processDigilinesMessage,digiscreen.asyncDone,pos,msg,size)
end

core.register_entity("digiscreen:image",{
	initial_properties = {
		visual = "upright_sprite",
		physical = false,
		collisionbox = {0,0,0,0,0,0,},
		textures = {"digiscreen_pixel.png",},
		glow = 14,
		shaded = true,
		static_save = false,
	},
})

core.register_node("digiscreen:digiscreen",{
	description = "Digilines Graphical Display",
	tiles = {"digiscreen_pixel.png",},
	groups = {cracky = 3,digiscreen = 1,},
	paramtype = "light",
	paramtype2 = "facedir",
	on_rotate = core.global_exists("screwdriver") and screwdriver.rotate_simple,
	drawtype = "nodebox",
	node_box = {
		type = "fixed",
		fixed = {-0.5,-0.5,0.4,0.5,0.5,0.5},
	},
	_digistuff_channelcopier_fieldname = "channel",
	light_source = 10,
	on_construct = digiscreen.on_construct,
	on_destruct = digiscreen.removeEntity,
	on_receive_fields = digiscreen.on_receive_fields,
	on_punch = digiscreen.on_punch,
	on_timer = digiscreen.on_timer,
	digiline = {
		wire = {
			rules = digilines.rules.default,
		},
		effector = {
			action = digiscreen.on_digilines,
		},
	},
})

core.register_node("digiscreen:digiscreen_big",{
	description = "High-Resolution Digilines Graphical Display",
	tiles = {"digiscreen_pixel.png",},
	groups = {cracky = 3,digiscreen = 1,},
	paramtype = "light",
	paramtype2 = "facedir",
	on_rotate = core.global_exists("screwdriver") and screwdriver.rotate_simple,
	drawtype = "nodebox",
	node_box = {
		type = "fixed",
		fixed = {-0.5,-0.5,0.4,0.5,0.5,0.5},
	},
	_digistuff_channelcopier_fieldname = "channel",
	light_source = 10,
	on_construct = function(pos) digiscreen.on_construct(pos,64) end,
	on_destruct = digiscreen.removeEntity,
	on_receive_fields = digiscreen.on_receive_fields,
	on_punch = digiscreen.on_punch,
	on_timer = digiscreen.on_timer,
	digiline = {
		wire = {
			rules = digilines.rules.default,
		},
		effector = {
			action = digiscreen.on_digilines,
		},
	},
})

core.register_lbm({
	name = "digiscreen:respawn",
	label = "Respawn/upgrade digiscreen entities",
	nodenames = {"group:digiscreen",},
	run_at_every_load = true,
	action = digiscreen.updateDisplay,
})

local luacontroller = "mesecons_luacontroller:luacontroller0000"
local rgblightstone = "rgblightstone:rgblightstone_truecolor_0"

core.register_craft({
	output = "digiscreen:digiscreen",
	recipe = {
		{luacontroller,rgblightstone,rgblightstone,},
		{rgblightstone,rgblightstone,rgblightstone,},
		{rgblightstone,rgblightstone,rgblightstone,},
	},
})

core.register_craft({
	output = "digiscreen:digiscreen_big",
	recipe = {
		{"digiscreen:digiscreen","digiscreen:digiscreen",},
		{"digiscreen:digiscreen","digiscreen:digiscreen",},
	},
})