summaryrefslogtreecommitdiff
path: root/memory.lua
blob: 51d9d7e081d68caf0f863f46e786c4ab58ce69d7 (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
minetest.register_node("digistuff:ram", {
	description = "Digilines 128Kbit SRAM",
	groups = {cracky=3},
	on_construct = function(pos)
		local meta = minetest.get_meta(pos)
		meta:set_string("formspec","field[channel;Channel;${channel}")
		for i=0,31,1 do
			meta:set_string(string.format("data%02d",i),"")
		end
	end,
	tiles = {
		"digistuff_ram_top.png",
		"jeija_microcontroller_bottom.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png"
	},
	inventory_image = "digistuff_ram_top.png",
	drawtype = "nodebox",
	selection_box = {
		--From luacontroller
		type = "fixed",
		fixed = { -8/16, -8/16, -8/16, 8/16, -5/16, 8/16 },
	},
	_digistuff_channelcopier_fieldname = "channel",
	node_box = {
		--From Luacontroller
		type = "fixed",
		fixed = {
			{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16}, -- Bottom slab
			{-5/16, -7/16, -5/16, 5/16, -6/16, 5/16}, -- Circuit board
			{-3/16, -6/16, -3/16, 3/16, -5/16, 3/16}, -- IC
		}
	},
	paramtype = "light",
	sunlight_propagates = true,
	on_receive_fields = function(pos, formname, fields, sender)
		local name = sender:get_player_name()
		if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
			minetest.record_protection_violation(pos,name)
			return
		end
		local meta = minetest.get_meta(pos)
		if fields.channel then meta:set_string("channel",fields.channel) end
	end,
	digiline = 
	{
		receptor = {},
		effector = {
			action = function(pos,node,channel,msg)
				local meta = minetest.get_meta(pos)
				if meta:get_string("channel") ~= channel or type(msg) ~= "table" then return end
				if msg.command == "read" then
					if type(msg.address) == "number" and msg.address >= 0 and msg.address <= 31 then
						digiline:receptor_send(pos,digiline.rules.default,channel,meta:get_string(string.format("data%02i",math.floor(msg.address))))					
					end
				elseif msg.command == "write" then
					if type(msg.address) == "number" and msg.address >= 0 and msg.address <= 31 and type(msg.data) == "string" then
						meta:set_string(string.format("data%02i",math.floor(msg.address)),string.sub(msg.data,1,512))
					end
				end
			end
		},
	},
})

minetest.register_node("digistuff:eeprom", {
	description = "Digilines 128Kbit EEPROM",
	groups = {cracky=3},
	after_place_node = function(pos,_,istack)
		local meta = minetest.get_meta(pos)
		local smeta = istack:get_meta()
		for i=0,31,1 do
			meta:set_string(string.format("data%02d",i),smeta:get_string(string.format("data%02d",i)))
		end
		meta:set_string("channel",smeta:get_string("channel"))
		meta:set_string("formspec","field[channel;Channel;${channel}")
	end,
	on_dig = function(pos,node,player)
		local name = player:get_player_name()
		if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
			minetest.record_protection_violation(pos,name)
			return
		end
		local meta = minetest.get_meta(pos)
		local istack = ItemStack("digistuff:eeprom")
		local smeta = istack:get_meta()
		for i=0,31,1 do
			smeta:set_string(string.format("data%02d",i),meta:get_string(string.format("data%02d",i)))
		end
		smeta:set_string("channel",meta:get_string("channel"))
		minetest.remove_node(pos)
		smeta:set_string("description","Digilines 128KBit EEPROM (with data)")
		local inv = minetest.get_inventory({type = "player",name = name,})
		if player.is_fake_player or not inv:room_for_item("main",istack) then
			minetest.handle_node_drops(pos,{istack},player)
		else
			inv:add_item("main",istack)
		end
		digilines.update_autoconnect(pos)
	end,
	tiles = {
		"digistuff_eeprom_top.png",
		"jeija_microcontroller_bottom.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png",
		"jeija_microcontroller_sides.png"
	},
	inventory_image = "digistuff_eeprom_top.png",
	drawtype = "nodebox",
	selection_box = {
		--From luacontroller
		type = "fixed",
		fixed = { -8/16, -8/16, -8/16, 8/16, -5/16, 8/16 },
	},
	_digistuff_channelcopier_fieldname = "channel",
	node_box = {
		--From Luacontroller
		type = "fixed",
		fixed = {
			{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16}, -- Bottom slab
			{-5/16, -7/16, -5/16, 5/16, -6/16, 5/16}, -- Circuit board
			{-3/16, -6/16, -3/16, 3/16, -5/16, 3/16}, -- IC
		}
	},
	paramtype = "light",
	sunlight_propagates = true,
	on_receive_fields = function(pos, formname, fields, sender)
		local name = sender:get_player_name()
		if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
			minetest.record_protection_violation(pos,name)
			return
		end
		local meta = minetest.get_meta(pos)
		if fields.channel then meta:set_string("channel",fields.channel) end
	end,
	digiline = 
	{
		receptor = {},
		effector = {
			action = function(pos,node,channel,msg)
				local meta = minetest.get_meta(pos)
				if meta:get_string("channel") ~= channel or type(msg) ~= "table" then return end
				if msg.command == "read" then
					if type(msg.address) == "number" and msg.address >= 0 and msg.address <= 31 then
						digiline:receptor_send(pos,digiline.rules.default,channel,meta:get_string(string.format("data%02i",math.floor(msg.address))))					
					end
				elseif msg.command == "write" then
					if type(msg.address) == "number" and msg.address >= 0 and msg.address <= 31 and type(msg.data) == "string" then
						meta:set_string(string.format("data%02i",math.floor(msg.address)),string.sub(msg.data,1,512))
					end
				end
			end
		},
	},
})

minetest.register_craft({
	output = "digistuff:ram",
	recipe = {
		{"basic_materials:plastic_sheet","basic_materials:plastic_sheet","basic_materials:plastic_sheet"},
		{"mesecons_gates:nand_off","basic_materials:plastic_sheet","mesecons_gates:nand_off"},
		{"mesecons:wire_00000000_off","basic_materials:silicon","mesecons:wire_00000000_off"},
	}
})

minetest.register_craft({
	output = "digistuff:eeprom",
	recipe = {
		{"basic_materials:plastic_sheet","mesecons:wire_00000000_off","basic_materials:plastic_sheet"},
		{"digilines:wire_std_00000000","basic_materials:plastic_sheet","digilines:wire_std_00000000"},
		{"mesecons:wire_00000000_off","basic_materials:silicon","mesecons:wire_00000000_off"},
	}
})