X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavedroid%2Fgame%2FGameItems.java;h=eeeeb115da03fad2112abe5b96682373251d083f;hb=127dbffee03093baee8c11a4e7e152aee0bf5343;hp=61b3af736653e9097b30df8f49ca1d6c0cfd280d;hpb=7646ac0833becd8f9424908ee8bc142b7b3999f8;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavedroid/game/GameItems.java b/core/src/ru/deadsoftware/cavedroid/game/GameItems.java index 61b3af7..eeeeb11 100644 --- a/core/src/ru/deadsoftware/cavedroid/game/GameItems.java +++ b/core/src/ru/deadsoftware/cavedroid/game/GameItems.java @@ -3,32 +3,46 @@ package ru.deadsoftware.cavedroid.game; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.Sprite; +import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.utils.ArrayMap; -import com.badlogic.gdx.utils.JsonReader; +import com.badlogic.gdx.utils.GdxRuntimeException; import com.badlogic.gdx.utils.JsonValue; import ru.deadsoftware.cavedroid.game.objects.Block; import ru.deadsoftware.cavedroid.game.objects.Item; +import ru.deadsoftware.cavedroid.misc.Assets; +import ru.deadsoftware.cavedroid.misc.utils.AssetLoader; +import ru.deadsoftware.cavedroid.misc.utils.SpriteOrigin; -import java.util.HashMap; +import java.util.*; public class GameItems { - private static HashMap blocksIds = new HashMap<>(); - private static HashMap itemsIds = new HashMap<>(); + private static final String TAG = "GameItems"; - private static ArrayMap blocks = new ArrayMap<>(); - private static ArrayMap items = new ArrayMap<>(); + private static final HashMap blocksIds = new HashMap<>(); + private static final HashMap itemsIds = new HashMap<>(); + + private static final ArrayMap blocks = new ArrayMap<>(); + private static final ArrayMap items = new ArrayMap<>(); public static boolean isFluid(int id) { return getBlock(id).isFluid(); } public static boolean isWater(int id) { - return getBlock(id).getMeta().equals("water"); + return isWater(getBlock(id)); + } + + public static boolean isWater(Block block) { + return block.getMeta().equals("water"); } public static boolean isLava(int id) { - return getBlock(id).getMeta().equals("lava"); + return isLava(getBlock(id)); + } + + public static boolean isLava(Block block) { + return block.getMeta().equals("lava"); } public static boolean isSlab(int id) { @@ -77,6 +91,10 @@ public class GameItems { return getBlockId(items.getKeyAt(id)); } + public static int getItemIdByBlockId(int id) { + return getItemId(blocks.getKeyAt(id)); + } + public static int getBlocksSize() { return blocks.size; } @@ -86,66 +104,116 @@ public class GameItems { } public static Sprite getBlockTex(int id) { - return getBlock(id).getTex(); + return getBlock(id).getTexture(); } public static Sprite getItemTex(int id) { - if (items.getValueAt(id).getType().equals("block")) return getBlockTex(id); - else return getItem(id).getTex(); - } - - public static void load() { - JsonValue json = new JsonReader().parse(Gdx.files.internal("game_items.json")); - JsonValue block = json.child.child; - JsonValue item = json.child.next.child; - while (block != null) { - String key = block.name; - int left = (block.has("left") ? block.getInt("left") : 0); - int right = (block.has("right") ? block.getInt("right") : 0); - int top = (block.has("top") ? block.getInt("top") : 0); - int bottom = (block.has("bottom") ? block.getInt("bottom") : 0); - int hp = (block.has("hp") ? block.getInt("hp") : -1); - String drop = (block.has("drop") ? block.getString("drop") : key); - boolean collision = (!block.has("collision") || block.getBoolean("collision")); - boolean background = (block.has("background") && block.getBoolean("background")); - boolean transparent = !(!block.has("collision") || block.getBoolean("collision")); - boolean blockRequired = (block.has("block_required") && block.getBoolean("block_required")); - boolean fluid = (block.has("fluid") && block.getBoolean("fluid")); - String meta = (block.has("meta") ? block.getString("meta") : ""); - String texture = (block.has("texture") ? block.getString("texture") : key); - Sprite sprite = key.equals("none") ? null : - new Sprite(new Texture(Gdx.files.internal("textures/blocks/" + texture + ".png"))); - Block newBlock = new Block( - left, - top, - right, - bottom, - hp, - drop, - collision, - background, - transparent, - blockRequired, - fluid, - meta, - sprite - ); - - blocksIds.put(key, blocks.size); - blocks.put(key, newBlock); - block = block.next(); + return items.getValueAt(id).getType().equals("block") ? getBlockTex(id) : getItem(id).getTexture(); + } + + public static void load(AssetLoader assetLoader) { + JsonValue json = Assets.jsonReader.parse(assetLoader.getAssetHandle("json/game_items.json")); + + TreeSet blocksSet = new TreeSet<>(Comparator.comparingInt(Block::getId)); + TreeSet itemsSet = new TreeSet<>(Comparator.comparingInt(Item::getId)); + + + int count = 0; + for (JsonValue block = json.get("blocks").child(); block != null; block = block.next()) { + try { + String key = block.name(); + int left = Assets.getIntFromJson(block, "left", 0); + int right = Assets.getIntFromJson(block, "right", 0); + int top = Assets.getIntFromJson(block, "top", 0); + int bottom = Assets.getIntFromJson(block, "bottom", 0); + int clipX = Assets.getIntFromJson(block, "sprite_left", 0); + int clipY = Assets.getIntFromJson(block, "sprite_top", 0); + int clipWidth = Assets.getIntFromJson(block, "sprite_right", 0); + int clipHeight = Assets.getIntFromJson(block, "sprite_bottom", 0); + int hp = Assets.getIntFromJson(block, "hp", -1); + boolean collision = Assets.getBooleanFromJson(block, "collision", true); + boolean background = Assets.getBooleanFromJson(block, "background", false); + boolean transparent = Assets.getBooleanFromJson(block, "transparent", false); + boolean requiresBlock = Assets.getBooleanFromJson(block, "block_required", false); + boolean fluid = Assets.getBooleanFromJson(block, "fluid", false); + String drop = Assets.getStringFromJson(block, "drop", key); + String meta = Assets.getStringFromJson(block, "meta", ""); + String tex = Assets.getStringFromJson(block, "texture", key); + Texture texture = tex.equals("none") ? null : + new Texture(assetLoader.getAssetHandle("textures/blocks/" + tex + ".png")); + boolean animated = Assets.getBooleanFromJson(block, "animated", false); + int frames = Assets.getIntFromJson(block, "frames", 0); + int id = Assets.getIntFromJson(block, "id", count); + String fullBlock = Assets.getStringFromJson(block, "full_block", null); + blocksIds.put(key, id); + + if (count >= id) { + count++; + } + + Block newBlock = new Block( + id, + key, + left, + top, + right, + bottom, + hp, + drop, + collision, + background, + transparent, + requiresBlock, + fluid, + meta, + texture, + animated, + frames, + clipX, + clipY, + clipWidth, + clipHeight, + fullBlock + ); + blocksSet.add(newBlock); + } catch (GdxRuntimeException e) { + Gdx.app.error(TAG, e.getMessage()); + } } - while (item != null) { - String key = item.name; - String name = (item.has("name") ? item.getString("name") : key); - String type = (item.has("type") ? item.getString("type") : "item"); - String texture = (item.has("texture") ? item.getString("texture") : key); - Sprite sprite = type.equals("block") ? null : - new Sprite(new Texture(Gdx.files.internal("textures/items/" + texture + ".png"))); - itemsIds.put(key, items.size); - items.put(key, new Item(name, type, sprite)); - item = item.next(); + + count = 0; + for (JsonValue item = json.get("items").child(); item != null; item = item.next()) { + try { + String key = item.name(); + String name = Assets.getStringFromJson(item, "name", key); + String type = Assets.getStringFromJson(item, "type", "item"); + String texture = Assets.getStringFromJson(item, "texture", key); + Sprite sprite = type.equals("block") ? null : + new Sprite(new Texture(assetLoader.getAssetHandle("textures/items/" + texture + ".png"))); + + float originX = Assets.getFloatFromJson(item, "origin_x", 0f); + float originY = Assets.getFloatFromJson(item, "origin_y", 1f); + originX = MathUtils.clamp(originX, 0f, 1f); + originY = MathUtils.clamp(originY, 0f, 1f); + SpriteOrigin origin = new SpriteOrigin(originX, originY); + + int id = Assets.getIntFromJson(item, "id", count); + + String actionKey = Assets.getStringFromJson(item, "action_key", null); + + if (count >= id) { + count++; + } + + itemsIds.put(key, id); + itemsSet.add(new Item(id, key, name, type, sprite, origin, actionKey)); + } catch (GdxRuntimeException e) { + Gdx.app.error(TAG, e.getMessage()); + } } + + blocksSet.forEach((block -> blocks.put(block.getKey(), block))); + itemsSet.forEach((item -> items.put(item.getKey(), item))); } } \ No newline at end of file