]> git.lizzy.rs Git - dragonblocks.git/commitdiff
Added Item Entity
authorElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 24 Jun 2020 10:28:24 +0000 (12:28 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Wed, 24 Jun 2020 10:28:24 +0000 (12:28 +0200)
engine/init.js
engine/item_entity.js [new file with mode: 0644]

index 0a5061c7f3a205329e24209be6d468a4dbe8376b..26977659ef6b56af8c3c72707dfc976ed0be8cc4 100755 (executable)
@@ -161,7 +161,7 @@ dragonblocks.loadMod = function(modname){
        dragonblocks.loadedMods.push(modname);
        dragonblocks.loadingMods[modname] = false;
 }
-dragonblocks.modules = ["ressources", "key_handler", "gui", "mapgen", "world", "item", "node", "tool", "group", "builtin", "map_node", "map", "itemstack", "inventory", "inventory_group", "hudbar", "inventory_container", "creative_inventory", "recipe", "craftfield", "menu", "skin", "entity", "map_interaction", "spawned_entity", "timer", "player", "pixel_manipulator", "chat", "chatcommands", "mainmenu"];
+dragonblocks.modules = ["ressources", "key_handler", "gui", "mapgen", "world", "item", "node", "tool", "group", "builtin", "map_node", "map", "itemstack", "inventory", "inventory_group", "hudbar", "inventory_container", "creative_inventory", "recipe", "craftfield", "menu", "skin", "entity", "map_interaction", "spawned_entity", "item_entity", "timer", "player", "pixel_manipulator", "chat", "chatcommands", "mainmenu"];
 dragonblocks.moduleCount = dragonblocks.modules.length;
 dragonblocks.loadModule = function(){
        if(dragonblocks.modules[0]){
diff --git a/engine/item_entity.js b/engine/item_entity.js
new file mode 100644 (file)
index 0000000..d736773
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * item_entity.js
+ * 
+ * Copyright 2020 Elias Fleckenstein <eliasfleckenstein@web.de>
+ * 
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ * 
+ * 
+ */ 
+
+dragonblocks.registerEntity({
+       name: "dragonblocks:item_entity",
+       width: 0.4,
+       height: 0.4,
+       gravity: true,
+       onpunch: self => {
+               dragonblocks.dropItem(dragonblocks.player.give(self.meta.itemstring), self.x, self.y);
+               self.despawn();
+       }
+});
+
+dragonblocks.dropItem = function(itemstack, x, y) {
+       if (! itemstack || ! itemstack.item || ! itemstack.count)
+               return;
+       let entity = dragonblocks.spawnEntity("dragonblocks:item_entity", x, y);
+       entity.meta.itemstring = itemstack.stringify();
+       entity.texture = itemstack.toItem().texture;
+       entity.updateTexture();
+}