mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-30 23:15:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			209 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Minimal test entities to test visuals
 | |
| 
 | |
| core.register_entity("testentities:sprite", {
 | |
| 	initial_properties = {
 | |
| 		visual = "sprite",
 | |
| 		textures = { "testentities_sprite.png" },
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:upright_sprite", {
 | |
| 	initial_properties = {
 | |
| 		visual = "upright_sprite",
 | |
| 		textures = {
 | |
| 			"testentities_upright_sprite1.png",
 | |
| 			"testentities_upright_sprite2.png",
 | |
| 		},
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:cube", {
 | |
| 	initial_properties = {
 | |
| 		visual = "cube",
 | |
| 		textures = {
 | |
| 			"testentities_cube1.png",
 | |
| 			"testentities_cube2.png",
 | |
| 			"testentities_cube3.png",
 | |
| 			"testentities_cube4.png",
 | |
| 			"testentities_cube5.png",
 | |
| 			"testentities_cube6.png",
 | |
| 		},
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:item", {
 | |
| 	initial_properties = {
 | |
| 		visual = "item",
 | |
| 		wield_item = "testnodes:normal",
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:wielditem", {
 | |
| 	initial_properties = {
 | |
| 		visual = "wielditem",
 | |
| 		wield_item = "testnodes:normal",
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:mesh", {
 | |
| 	initial_properties = {
 | |
| 		visual = "mesh",
 | |
| 		mesh = "testnodes_pyramid.obj",
 | |
| 		textures = {
 | |
| 			"testnodes_mesh_stripes2.png"
 | |
| 		},
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:mesh_unshaded", {
 | |
| 	initial_properties = {
 | |
| 		visual = "mesh",
 | |
| 		mesh = "testnodes_pyramid.obj",
 | |
| 		textures = {
 | |
| 			"testnodes_mesh_stripes2.png"
 | |
| 		},
 | |
| 		shaded = false,
 | |
| 	},
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:node", {
 | |
| 	initial_properties = {
 | |
| 		visual = "node",
 | |
| 		node = { name = "stairs:stair_stone" },
 | |
| 	},
 | |
| })
 | |
| 
 | |
| -- More complex meshes
 | |
| 
 | |
| core.register_entity("testentities:sam", {
 | |
| 	initial_properties = {
 | |
| 		visual = "mesh",
 | |
| 		mesh = "testentities_sam.b3d",
 | |
| 		textures = {
 | |
| 			"testentities_sam.png"
 | |
| 		},
 | |
| 	},
 | |
| 	on_activate = function(self)
 | |
| 		self.object:set_animation({x = 0, y = 219}, 30, 0, true)
 | |
| 		self._timer = 0
 | |
| 		self._grow_head = true
 | |
| 		self:_animate_head()
 | |
| 	end,
 | |
| 	_head_anim_duration = 2,
 | |
| 	_animate_head = function(self)
 | |
| 		local s = self._grow_head and 2 or 1
 | |
| 		self.object:set_bone_override("Head", {
 | |
| 			scale = {
 | |
| 				vec = vector.new(s, s, s),
 | |
| 				absolute = true,
 | |
| 				interpolation = self._head_anim_duration,
 | |
| 			},
 | |
| 		})
 | |
| 	end,
 | |
| 	on_step = function(self, dtime)
 | |
| 		self._timer = self._timer + dtime
 | |
| 		if self._timer >= self._head_anim_duration then
 | |
| 			self._timer = 0
 | |
| 			self._grow_head = not self._grow_head
 | |
| 			self:_animate_head()
 | |
| 		end
 | |
| 	end,
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:lava_flan", {
 | |
| 	initial_properties = {
 | |
| 		infotext = "Lava Flan (smoke test .x)",
 | |
| 		visual = "mesh",
 | |
| 		mesh = "testentities_lava_flan.x",
 | |
| 		textures = {
 | |
| 			"testentities_lava_flan.png"
 | |
| 		},
 | |
| 	},
 | |
| 	on_activate = function(self)
 | |
| 		self.object:set_animation({x = 0, y = 28}, 15, 0, true)
 | |
| 	end,
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:cool_guy", {
 | |
| 	initial_properties = {
 | |
| 		visual = "mesh",
 | |
| 		mesh = "testentities_cool_guy.x",
 | |
| 		textures = {
 | |
| 			"testentities_cool_guy.png"
 | |
| 		},
 | |
| 	},
 | |
| 	on_activate = function(self)
 | |
| 		self.object:set_animation({x = 0, y = 29}, 30, 0, true)
 | |
| 	end,
 | |
| })
 | |
| 
 | |
| -- Advanced visual tests
 | |
| 
 | |
| -- An entity for testing animated and yaw-modulated sprites
 | |
| core.register_entity("testentities:yawsprite", {
 | |
| 	initial_properties = {
 | |
| 		selectionbox = {-0.3, -0.5, -0.3, 0.3, 0.3, 0.3},
 | |
| 		visual = "sprite",
 | |
| 		visual_size = {x=0.6666, y=1},
 | |
| 		textures = {"testentities_dungeon_master.png^[makealpha:128,0,0^[makealpha:128,128,0"},
 | |
| 		spritediv = {x=6, y=5},
 | |
| 		initial_sprite_basepos = {x=0, y=0},
 | |
| 	},
 | |
| 	on_activate = function(self, staticdata)
 | |
| 		self.object:set_sprite({x=0, y=0}, 3, 0.5, true)
 | |
| 	end,
 | |
| })
 | |
| 
 | |
| -- An entity for testing animated upright sprites
 | |
| core.register_entity("testentities:upright_animated", {
 | |
| 	initial_properties = {
 | |
| 		visual = "upright_sprite",
 | |
| 		textures = {"testnodes_anim.png"},
 | |
| 		spritediv = {x = 1, y = 4},
 | |
| 	},
 | |
| 	on_activate = function(self)
 | |
| 		self.object:set_sprite({x=0, y=0}, 4, 1.0, false)
 | |
| 	end,
 | |
| })
 | |
| 
 | |
| core.register_entity("testentities:nametag", {
 | |
| 	initial_properties = {
 | |
| 		visual = "sprite",
 | |
| 		textures = { "testentities_sprite.png" },
 | |
| 	},
 | |
| 
 | |
| 	on_activate = function(self, staticdata)
 | |
| 		if staticdata ~= "" then
 | |
| 			local data = core.deserialize(staticdata)
 | |
| 			self.color = data.color
 | |
| 			self.bgcolor = data.bgcolor
 | |
| 		else
 | |
| 			self.color = {
 | |
| 				r = math.random(0, 255),
 | |
| 				g = math.random(0, 255),
 | |
| 				b = math.random(0, 255),
 | |
| 			}
 | |
| 
 | |
| 			if math.random(0, 10) > 5 then
 | |
| 				self.bgcolor = {
 | |
| 					r = math.random(0, 255),
 | |
| 					g = math.random(0, 255),
 | |
| 					b = math.random(0, 255),
 | |
| 					a = math.random(0, 255),
 | |
| 				}
 | |
| 			end
 | |
| 		end
 | |
| 
 | |
| 		assert(self.color)
 | |
| 		self.object:set_properties({
 | |
| 			nametag = tostring(math.random(1000, 10000)),
 | |
| 			nametag_color = self.color,
 | |
| 			nametag_bgcolor = self.bgcolor,
 | |
| 		})
 | |
| 	end,
 | |
| 
 | |
| 	get_staticdata = function(self)
 | |
| 		return core.serialize({ color = self.color, bgcolor = self.bgcolor })
 | |
| 	end,
 | |
| })
 |