/engine/src/main/java/org/terasology/world/block/sounds/BlockSoundsFormat.java

http://github.com/MovingBlocks/Terasology · Java · 99 lines · 67 code · 14 blank · 18 comment · 8 complexity · 8202715df5f4c9df9cdda769626419ed MD5 · raw file

  1. /*
  2. * Copyright 2014 MovingBlocks
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.terasology.world.block.sounds;
  17. import com.google.common.base.Charsets;
  18. import com.google.gson.JsonElement;
  19. import com.google.gson.JsonObject;
  20. import com.google.gson.JsonParser;
  21. import org.terasology.assets.ResourceUrn;
  22. import org.terasology.assets.format.AbstractAssetFileFormat;
  23. import org.terasology.assets.format.AssetDataFile;
  24. import org.terasology.assets.management.AssetManager;
  25. import org.terasology.assets.module.annotations.RegisterAssetFileFormat;
  26. import org.terasology.audio.StaticSound;
  27. import java.io.BufferedReader;
  28. import java.io.IOException;
  29. import java.io.InputStreamReader;
  30. import java.util.List;
  31. import java.util.Optional;
  32. /**
  33. * Block sounds loader will load all block sounds definitions and build them into immutable objects.
  34. */
  35. @RegisterAssetFileFormat
  36. public class BlockSoundsFormat extends AbstractAssetFileFormat<BlockSoundsData> {
  37. private final AssetManager assetManager;
  38. private JsonParser parser;
  39. public BlockSoundsFormat(AssetManager assetManager) {
  40. super("blocksounds");
  41. this.assetManager = assetManager;
  42. parser = new JsonParser();
  43. }
  44. @Override
  45. public BlockSoundsData load(ResourceUrn resourceUrn, List<AssetDataFile> list) throws IOException {
  46. JsonElement rawJson = readJson(list.get(0));
  47. JsonObject blockDefJson = rawJson.getAsJsonObject();
  48. BlockSoundsData data = new BlockSoundsData();
  49. if (blockDefJson.has("basedOn")) {
  50. Optional<BlockSounds> parentBlockSounds = assetManager.getAsset(blockDefJson.get("basedOn").getAsString(), BlockSounds.class);
  51. if (parentBlockSounds.isPresent()) {
  52. data.getStepSounds().addAll(parentBlockSounds.get().getStepSounds());
  53. data.getStepSounds().addAll(parentBlockSounds.get().getDestroySounds());
  54. data.getStepSounds().addAll(parentBlockSounds.get().getDigSounds());
  55. } else {
  56. throw new IOException("Unable to resolve parent '" + blockDefJson.get("basedOn").getAsString() + "'");
  57. }
  58. }
  59. loadBlockSounds(blockDefJson, data);
  60. return data;
  61. }
  62. private JsonElement readJson(AssetDataFile input) throws IOException {
  63. try (BufferedReader reader = new BufferedReader(new InputStreamReader(input.openStream(), Charsets.UTF_8))) {
  64. return parser.parse(reader);
  65. }
  66. }
  67. private void loadBlockSounds(JsonObject element, BlockSoundsData data) throws IOException {
  68. readSoundList(element, "stepSounds", data.getStepSounds());
  69. readSoundList(element, "destroySounds", data.getDestroySounds());
  70. readSoundList(element, "digSounds", data.getDigSounds());
  71. }
  72. private void readSoundList(JsonObject element, String field, List<StaticSound> sounds) throws IOException {
  73. if (element.has(field) && element.get(field).isJsonArray()) {
  74. sounds.clear();
  75. for (JsonElement item : element.getAsJsonArray(field)) {
  76. Optional<StaticSound> sound = assetManager.getAsset(item.getAsString(), StaticSound.class);
  77. if (sound.isPresent()) {
  78. sounds.add(sound.get());
  79. } else {
  80. throw new IOException("Unable to resolve sound '" + item.getAsString() + "'");
  81. }
  82. }
  83. }
  84. }
  85. }