mc_dot_art_maker 0.3.3 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/Rakefile +7 -0
  4. data/lib/mc_dot_art_maker/block.rb +6 -9
  5. data/lib/mc_dot_art_maker/block_list.rb +2 -2
  6. data/lib/mc_dot_art_maker/dot.rb +51 -18
  7. data/lib/mc_dot_art_maker/extern_lib_extension.rb +11 -0
  8. data/lib/mc_dot_art_maker/maker.rb +118 -97
  9. data/lib/mc_dot_art_maker/schematic_helper.rb +1 -1
  10. data/lib/mc_dot_art_maker/texture_loader.rb +2 -9
  11. data/lib/mc_dot_art_maker/utils.rb +28 -28
  12. data/mc_dot_art_maker.gemspec +1 -1
  13. data/test/images/src/test_image_cat.jpg +0 -0
  14. data/test/images/tmp/normal_conversion_mosaic.png +0 -0
  15. data/test/images/tmp/normal_conversion_mosaic_with_magick__image.png +0 -0
  16. data/test/images/tmp/normal_conversion_schematic.schematic +0 -0
  17. data/test/images/tmp/{dither_methods_RiemersmaDitherMethod.png → normal_conversion_texture.png} +0 -0
  18. data/test/images/tmp/normal_conversion_texture_with_magick__image.png +0 -0
  19. data/test/test_block_list.rb +8 -0
  20. data/test/test_dither_method.rb +5 -5
  21. data/test/test_dot.rb +44 -0
  22. data/test/test_maker.rb +74 -0
  23. data/test/test_normal_conversion.rb +67 -14
  24. data/test/test_texture_loader.rb +9 -1
  25. metadata +10 -448
  26. data/lib/mc_dot_art_maker/textures/brick.png +0 -0
  27. data/lib/mc_dot_art_maker/textures/clay.png +0 -0
  28. data/lib/mc_dot_art_maker/textures/coal_block.png +0 -0
  29. data/lib/mc_dot_art_maker/textures/diamond_block.png +0 -0
  30. data/lib/mc_dot_art_maker/textures/emerald_block.png +0 -0
  31. data/lib/mc_dot_art_maker/textures/glowstone.png +0 -0
  32. data/lib/mc_dot_art_maker/textures/gold_block.png +0 -0
  33. data/lib/mc_dot_art_maker/textures/hardened_clay.png +0 -0
  34. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_black.png +0 -0
  35. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_blue.png +0 -0
  36. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_brown.png +0 -0
  37. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_cyan.png +0 -0
  38. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_gray.png +0 -0
  39. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_green.png +0 -0
  40. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_light_blue.png +0 -0
  41. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_lime.png +0 -0
  42. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_magenta.png +0 -0
  43. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_orange.png +0 -0
  44. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_pink.png +0 -0
  45. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_purple.png +0 -0
  46. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_red.png +0 -0
  47. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_silver.png +0 -0
  48. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_white.png +0 -0
  49. data/lib/mc_dot_art_maker/textures/hardened_clay_stained_yellow.png +0 -0
  50. data/lib/mc_dot_art_maker/textures/hay_block_top.png +0 -0
  51. data/lib/mc_dot_art_maker/textures/ice.png +0 -0
  52. data/lib/mc_dot_art_maker/textures/iron_block.png +0 -0
  53. data/lib/mc_dot_art_maker/textures/lapis_block.png +0 -0
  54. data/lib/mc_dot_art_maker/textures/melon_top.png +0 -0
  55. data/lib/mc_dot_art_maker/textures/nether_brick.png +0 -0
  56. data/lib/mc_dot_art_maker/textures/obsidian.png +0 -0
  57. data/lib/mc_dot_art_maker/textures/planks_birch.png +0 -0
  58. data/lib/mc_dot_art_maker/textures/planks_jungle.png +0 -0
  59. data/lib/mc_dot_art_maker/textures/planks_oak.png +0 -0
  60. data/lib/mc_dot_art_maker/textures/planks_spruce.png +0 -0
  61. data/lib/mc_dot_art_maker/textures/quartz_block_chiseled_top.png +0 -0
  62. data/lib/mc_dot_art_maker/textures/redstone_block.png +0 -0
  63. data/lib/mc_dot_art_maker/textures/sandstone_top.png +0 -0
  64. data/lib/mc_dot_art_maker/textures/soul_sand.png +0 -0
  65. data/lib/mc_dot_art_maker/textures/sponge.png +0 -0
  66. data/lib/mc_dot_art_maker/textures/stonebrick_carved.png +0 -0
  67. data/lib/mc_dot_art_maker/textures/stonebrick_mossy.png +0 -0
  68. data/lib/mc_dot_art_maker/textures/tmp/1.9.jar +0 -0
  69. data/lib/mc_dot_art_maker/textures/wool_colored_black.png +0 -0
  70. data/lib/mc_dot_art_maker/textures/wool_colored_blue.png +0 -0
  71. data/lib/mc_dot_art_maker/textures/wool_colored_brown.png +0 -0
  72. data/lib/mc_dot_art_maker/textures/wool_colored_cyan.png +0 -0
  73. data/lib/mc_dot_art_maker/textures/wool_colored_gray.png +0 -0
  74. data/lib/mc_dot_art_maker/textures/wool_colored_green.png +0 -0
  75. data/lib/mc_dot_art_maker/textures/wool_colored_light_blue.png +0 -0
  76. data/lib/mc_dot_art_maker/textures/wool_colored_lime.png +0 -0
  77. data/lib/mc_dot_art_maker/textures/wool_colored_magenta.png +0 -0
  78. data/lib/mc_dot_art_maker/textures/wool_colored_orange.png +0 -0
  79. data/lib/mc_dot_art_maker/textures/wool_colored_pink.png +0 -0
  80. data/lib/mc_dot_art_maker/textures/wool_colored_purple.png +0 -0
  81. data/lib/mc_dot_art_maker/textures/wool_colored_red.png +0 -0
  82. data/lib/mc_dot_art_maker/textures/wool_colored_silver.png +0 -0
  83. data/lib/mc_dot_art_maker/textures/wool_colored_white.png +0 -0
  84. data/lib/mc_dot_art_maker/textures/wool_colored_yellow.png +0 -0
  85. data/test/images/tmp/dither_methods_FloydSteinbergDitherMethod.png +0 -0
  86. data/test/images/tmp/dither_methods_NoDitherMethod.png +0 -0
  87. data/test/test_block_palette.rb +0 -29
  88. data/textures/anvil_base.png +0 -0
  89. data/textures/anvil_top_damaged_0.png +0 -0
  90. data/textures/anvil_top_damaged_1.png +0 -0
  91. data/textures/anvil_top_damaged_2.png +0 -0
  92. data/textures/beacon.png +0 -0
  93. data/textures/bed_feet_end.png +0 -0
  94. data/textures/bed_feet_side.png +0 -0
  95. data/textures/bed_feet_top.png +0 -0
  96. data/textures/bed_head_end.png +0 -0
  97. data/textures/bed_head_side.png +0 -0
  98. data/textures/bed_head_top.png +0 -0
  99. data/textures/bedrock.png +0 -0
  100. data/textures/bookshelf.png +0 -0
  101. data/textures/brewing_stand.png +0 -0
  102. data/textures/brewing_stand_base.png +0 -0
  103. data/textures/brick.png +0 -0
  104. data/textures/cactus_bottom.png +0 -0
  105. data/textures/cactus_side.png +0 -0
  106. data/textures/cactus_top.png +0 -0
  107. data/textures/cake_bottom.png +0 -0
  108. data/textures/cake_inner.png +0 -0
  109. data/textures/cake_side.png +0 -0
  110. data/textures/cake_top.png +0 -0
  111. data/textures/carrots_stage_0.png +0 -0
  112. data/textures/carrots_stage_1.png +0 -0
  113. data/textures/carrots_stage_2.png +0 -0
  114. data/textures/carrots_stage_3.png +0 -0
  115. data/textures/cauldron_bottom.png +0 -0
  116. data/textures/cauldron_inner.png +0 -0
  117. data/textures/cauldron_side.png +0 -0
  118. data/textures/cauldron_top.png +0 -0
  119. data/textures/clay.png +0 -0
  120. data/textures/coal_block.png +0 -0
  121. data/textures/coal_ore.png +0 -0
  122. data/textures/coarse_dirt.png +0 -0
  123. data/textures/cobblestone.png +0 -0
  124. data/textures/cobblestone_mossy.png +0 -0
  125. data/textures/cocoa_stage_0.png +0 -0
  126. data/textures/cocoa_stage_1.png +0 -0
  127. data/textures/cocoa_stage_2.png +0 -0
  128. data/textures/command_block.png +0 -0
  129. data/textures/comparator_off.png +0 -0
  130. data/textures/comparator_on.png +0 -0
  131. data/textures/crafting_table_front.png +0 -0
  132. data/textures/crafting_table_side.png +0 -0
  133. data/textures/crafting_table_top.png +0 -0
  134. data/textures/daylight_detector_inverted_top.png +0 -0
  135. data/textures/daylight_detector_side.png +0 -0
  136. data/textures/daylight_detector_top.png +0 -0
  137. data/textures/deadbush.png +0 -0
  138. data/textures/destroy_stage_0.png +0 -0
  139. data/textures/destroy_stage_1.png +0 -0
  140. data/textures/destroy_stage_2.png +0 -0
  141. data/textures/destroy_stage_3.png +0 -0
  142. data/textures/destroy_stage_4.png +0 -0
  143. data/textures/destroy_stage_5.png +0 -0
  144. data/textures/destroy_stage_6.png +0 -0
  145. data/textures/destroy_stage_7.png +0 -0
  146. data/textures/destroy_stage_8.png +0 -0
  147. data/textures/destroy_stage_9.png +0 -0
  148. data/textures/diamond_block.png +0 -0
  149. data/textures/diamond_ore.png +0 -0
  150. data/textures/dirt.png +0 -0
  151. data/textures/dirt_podzol_side.png +0 -0
  152. data/textures/dirt_podzol_top.png +0 -0
  153. data/textures/dispenser_front_horizontal.png +0 -0
  154. data/textures/dispenser_front_vertical.png +0 -0
  155. data/textures/door_acacia_lower.png +0 -0
  156. data/textures/door_acacia_upper.png +0 -0
  157. data/textures/door_birch_lower.png +0 -0
  158. data/textures/door_birch_upper.png +0 -0
  159. data/textures/door_dark_oak_lower.png +0 -0
  160. data/textures/door_dark_oak_upper.png +0 -0
  161. data/textures/door_iron_lower.png +0 -0
  162. data/textures/door_iron_upper.png +0 -0
  163. data/textures/door_jungle_lower.png +0 -0
  164. data/textures/door_jungle_upper.png +0 -0
  165. data/textures/door_spruce_lower.png +0 -0
  166. data/textures/door_spruce_upper.png +0 -0
  167. data/textures/door_wood_lower.png +0 -0
  168. data/textures/door_wood_upper.png +0 -0
  169. data/textures/double_plant_fern_bottom.png +0 -0
  170. data/textures/double_plant_fern_top.png +0 -0
  171. data/textures/double_plant_grass_bottom.png +0 -0
  172. data/textures/double_plant_grass_top.png +0 -0
  173. data/textures/double_plant_paeonia_bottom.png +0 -0
  174. data/textures/double_plant_paeonia_top.png +0 -0
  175. data/textures/double_plant_rose_bottom.png +0 -0
  176. data/textures/double_plant_rose_top.png +0 -0
  177. data/textures/double_plant_sunflower_back.png +0 -0
  178. data/textures/double_plant_sunflower_bottom.png +0 -0
  179. data/textures/double_plant_sunflower_front.png +0 -0
  180. data/textures/double_plant_sunflower_top.png +0 -0
  181. data/textures/double_plant_syringa_bottom.png +0 -0
  182. data/textures/double_plant_syringa_top.png +0 -0
  183. data/textures/dragon_egg.png +0 -0
  184. data/textures/dropper_front_horizontal.png +0 -0
  185. data/textures/dropper_front_vertical.png +0 -0
  186. data/textures/emerald_block.png +0 -0
  187. data/textures/emerald_ore.png +0 -0
  188. data/textures/enchanting_table_bottom.png +0 -0
  189. data/textures/enchanting_table_side.png +0 -0
  190. data/textures/enchanting_table_top.png +0 -0
  191. data/textures/end_stone.png +0 -0
  192. data/textures/endframe_eye.png +0 -0
  193. data/textures/endframe_side.png +0 -0
  194. data/textures/endframe_top.png +0 -0
  195. data/textures/farmland_dry.png +0 -0
  196. data/textures/farmland_wet.png +0 -0
  197. data/textures/fern.png +0 -0
  198. data/textures/fire_layer_0.png +0 -0
  199. data/textures/fire_layer_0.png.mcmeta +0 -38
  200. data/textures/fire_layer_1.png +0 -0
  201. data/textures/fire_layer_1.png.mcmeta +0 -3
  202. data/textures/flower_allium.png +0 -0
  203. data/textures/flower_blue_orchid.png +0 -0
  204. data/textures/flower_dandelion.png +0 -0
  205. data/textures/flower_houstonia.png +0 -0
  206. data/textures/flower_oxeye_daisy.png +0 -0
  207. data/textures/flower_paeonia.png +0 -0
  208. data/textures/flower_pot.png +0 -0
  209. data/textures/flower_rose.png +0 -0
  210. data/textures/flower_tulip_orange.png +0 -0
  211. data/textures/flower_tulip_pink.png +0 -0
  212. data/textures/flower_tulip_red.png +0 -0
  213. data/textures/flower_tulip_white.png +0 -0
  214. data/textures/furnace_front_off.png +0 -0
  215. data/textures/furnace_front_on.png +0 -0
  216. data/textures/furnace_side.png +0 -0
  217. data/textures/furnace_top.png +0 -0
  218. data/textures/glass.png +0 -0
  219. data/textures/glass_black.png +0 -0
  220. data/textures/glass_blue.png +0 -0
  221. data/textures/glass_brown.png +0 -0
  222. data/textures/glass_cyan.png +0 -0
  223. data/textures/glass_gray.png +0 -0
  224. data/textures/glass_green.png +0 -0
  225. data/textures/glass_light_blue.png +0 -0
  226. data/textures/glass_lime.png +0 -0
  227. data/textures/glass_magenta.png +0 -0
  228. data/textures/glass_orange.png +0 -0
  229. data/textures/glass_pane_top.png +0 -0
  230. data/textures/glass_pane_top_black.png +0 -0
  231. data/textures/glass_pane_top_blue.png +0 -0
  232. data/textures/glass_pane_top_brown.png +0 -0
  233. data/textures/glass_pane_top_cyan.png +0 -0
  234. data/textures/glass_pane_top_gray.png +0 -0
  235. data/textures/glass_pane_top_green.png +0 -0
  236. data/textures/glass_pane_top_light_blue.png +0 -0
  237. data/textures/glass_pane_top_lime.png +0 -0
  238. data/textures/glass_pane_top_magenta.png +0 -0
  239. data/textures/glass_pane_top_orange.png +0 -0
  240. data/textures/glass_pane_top_pink.png +0 -0
  241. data/textures/glass_pane_top_purple.png +0 -0
  242. data/textures/glass_pane_top_red.png +0 -0
  243. data/textures/glass_pane_top_silver.png +0 -0
  244. data/textures/glass_pane_top_white.png +0 -0
  245. data/textures/glass_pane_top_yellow.png +0 -0
  246. data/textures/glass_pink.png +0 -0
  247. data/textures/glass_purple.png +0 -0
  248. data/textures/glass_red.png +0 -0
  249. data/textures/glass_silver.png +0 -0
  250. data/textures/glass_white.png +0 -0
  251. data/textures/glass_yellow.png +0 -0
  252. data/textures/glowstone.png +0 -0
  253. data/textures/gold_block.png +0 -0
  254. data/textures/gold_ore.png +0 -0
  255. data/textures/grass_side.png +0 -0
  256. data/textures/grass_side_overlay.png +0 -0
  257. data/textures/grass_side_snowed.png +0 -0
  258. data/textures/grass_top.png +0 -0
  259. data/textures/gravel.png +0 -0
  260. data/textures/hardened_clay.png +0 -0
  261. data/textures/hardened_clay_stained_black.png +0 -0
  262. data/textures/hardened_clay_stained_blue.png +0 -0
  263. data/textures/hardened_clay_stained_brown.png +0 -0
  264. data/textures/hardened_clay_stained_cyan.png +0 -0
  265. data/textures/hardened_clay_stained_gray.png +0 -0
  266. data/textures/hardened_clay_stained_green.png +0 -0
  267. data/textures/hardened_clay_stained_light_blue.png +0 -0
  268. data/textures/hardened_clay_stained_lime.png +0 -0
  269. data/textures/hardened_clay_stained_magenta.png +0 -0
  270. data/textures/hardened_clay_stained_orange.png +0 -0
  271. data/textures/hardened_clay_stained_pink.png +0 -0
  272. data/textures/hardened_clay_stained_purple.png +0 -0
  273. data/textures/hardened_clay_stained_red.png +0 -0
  274. data/textures/hardened_clay_stained_silver.png +0 -0
  275. data/textures/hardened_clay_stained_white.png +0 -0
  276. data/textures/hardened_clay_stained_yellow.png +0 -0
  277. data/textures/hay_block_side.png +0 -0
  278. data/textures/hay_block_top.png +0 -0
  279. data/textures/hopper_inside.png +0 -0
  280. data/textures/hopper_outside.png +0 -0
  281. data/textures/hopper_top.png +0 -0
  282. data/textures/ice.png +0 -0
  283. data/textures/ice_packed.png +0 -0
  284. data/textures/iron_bars.png +0 -0
  285. data/textures/iron_block.png +0 -0
  286. data/textures/iron_ore.png +0 -0
  287. data/textures/iron_trapdoor.png +0 -0
  288. data/textures/itemframe_background.png +0 -0
  289. data/textures/jukebox_side.png +0 -0
  290. data/textures/jukebox_top.png +0 -0
  291. data/textures/ladder.png +0 -0
  292. data/textures/lapis_block.png +0 -0
  293. data/textures/lapis_ore.png +0 -0
  294. data/textures/lava_flow.png +0 -0
  295. data/textures/lava_flow.png.mcmeta +0 -5
  296. data/textures/lava_still.png +0 -0
  297. data/textures/lava_still.png.mcmeta +0 -45
  298. data/textures/leaves_acacia.png +0 -0
  299. data/textures/leaves_big_oak.png +0 -0
  300. data/textures/leaves_birch.png +0 -0
  301. data/textures/leaves_jungle.png +0 -0
  302. data/textures/leaves_oak.png +0 -0
  303. data/textures/leaves_spruce.png +0 -0
  304. data/textures/lever.png +0 -0
  305. data/textures/log_acacia.png +0 -0
  306. data/textures/log_acacia_top.png +0 -0
  307. data/textures/log_big_oak.png +0 -0
  308. data/textures/log_big_oak_top.png +0 -0
  309. data/textures/log_birch.png +0 -0
  310. data/textures/log_birch_top.png +0 -0
  311. data/textures/log_jungle.png +0 -0
  312. data/textures/log_jungle_top.png +0 -0
  313. data/textures/log_oak.png +0 -0
  314. data/textures/log_oak_top.png +0 -0
  315. data/textures/log_spruce.png +0 -0
  316. data/textures/log_spruce_top.png +0 -0
  317. data/textures/melon_side.png +0 -0
  318. data/textures/melon_stem_connected.png +0 -0
  319. data/textures/melon_stem_disconnected.png +0 -0
  320. data/textures/melon_top.png +0 -0
  321. data/textures/mob_spawner.png +0 -0
  322. data/textures/mushroom_block_inside.png +0 -0
  323. data/textures/mushroom_block_skin_brown.png +0 -0
  324. data/textures/mushroom_block_skin_red.png +0 -0
  325. data/textures/mushroom_block_skin_stem.png +0 -0
  326. data/textures/mushroom_brown.png +0 -0
  327. data/textures/mushroom_red.png +0 -0
  328. data/textures/mycelium_side.png +0 -0
  329. data/textures/mycelium_top.png +0 -0
  330. data/textures/nether_brick.png +0 -0
  331. data/textures/nether_wart_stage_0.png +0 -0
  332. data/textures/nether_wart_stage_1.png +0 -0
  333. data/textures/nether_wart_stage_2.png +0 -0
  334. data/textures/netherrack.png +0 -0
  335. data/textures/noteblock.png +0 -0
  336. data/textures/obsidian.png +0 -0
  337. data/textures/piston_bottom.png +0 -0
  338. data/textures/piston_inner.png +0 -0
  339. data/textures/piston_side.png +0 -0
  340. data/textures/piston_top_normal.png +0 -0
  341. data/textures/piston_top_sticky.png +0 -0
  342. data/textures/planks_acacia.png +0 -0
  343. data/textures/planks_big_oak.png +0 -0
  344. data/textures/planks_birch.png +0 -0
  345. data/textures/planks_jungle.png +0 -0
  346. data/textures/planks_oak.png +0 -0
  347. data/textures/planks_spruce.png +0 -0
  348. data/textures/portal.png +0 -0
  349. data/textures/portal.png.mcmeta +0 -3
  350. data/textures/potatoes_stage_0.png +0 -0
  351. data/textures/potatoes_stage_1.png +0 -0
  352. data/textures/potatoes_stage_2.png +0 -0
  353. data/textures/potatoes_stage_3.png +0 -0
  354. data/textures/prismarine_bricks.png +0 -0
  355. data/textures/prismarine_dark.png +0 -0
  356. data/textures/prismarine_rough.png +0 -0
  357. data/textures/prismarine_rough.png.mcmeta +0 -30
  358. data/textures/pumpkin_face_off.png +0 -0
  359. data/textures/pumpkin_face_on.png +0 -0
  360. data/textures/pumpkin_side.png +0 -0
  361. data/textures/pumpkin_stem_connected.png +0 -0
  362. data/textures/pumpkin_stem_disconnected.png +0 -0
  363. data/textures/pumpkin_top.png +0 -0
  364. data/textures/quartz_block_bottom.png +0 -0
  365. data/textures/quartz_block_chiseled.png +0 -0
  366. data/textures/quartz_block_chiseled_top.png +0 -0
  367. data/textures/quartz_block_lines.png +0 -0
  368. data/textures/quartz_block_lines_top.png +0 -0
  369. data/textures/quartz_block_side.png +0 -0
  370. data/textures/quartz_block_top.png +0 -0
  371. data/textures/quartz_ore.png +0 -0
  372. data/textures/rail_activator.png +0 -0
  373. data/textures/rail_activator_powered.png +0 -0
  374. data/textures/rail_detector.png +0 -0
  375. data/textures/rail_detector_powered.png +0 -0
  376. data/textures/rail_golden.png +0 -0
  377. data/textures/rail_golden_powered.png +0 -0
  378. data/textures/rail_normal.png +0 -0
  379. data/textures/rail_normal_turned.png +0 -0
  380. data/textures/red_sand.png +0 -0
  381. data/textures/red_sandstone_bottom.png +0 -0
  382. data/textures/red_sandstone_carved.png +0 -0
  383. data/textures/red_sandstone_normal.png +0 -0
  384. data/textures/red_sandstone_smooth.png +0 -0
  385. data/textures/red_sandstone_top.png +0 -0
  386. data/textures/redstone_block.png +0 -0
  387. data/textures/redstone_dust_cross.png +0 -0
  388. data/textures/redstone_dust_cross_overlay.png +0 -0
  389. data/textures/redstone_dust_line.png +0 -0
  390. data/textures/redstone_dust_line_overlay.png +0 -0
  391. data/textures/redstone_lamp_off.png +0 -0
  392. data/textures/redstone_lamp_on.png +0 -0
  393. data/textures/redstone_ore.png +0 -0
  394. data/textures/redstone_torch_off.png +0 -0
  395. data/textures/redstone_torch_on.png +0 -0
  396. data/textures/reeds.png +0 -0
  397. data/textures/repeater_off.png +0 -0
  398. data/textures/repeater_on.png +0 -0
  399. data/textures/sand.png +0 -0
  400. data/textures/sandstone_bottom.png +0 -0
  401. data/textures/sandstone_carved.png +0 -0
  402. data/textures/sandstone_normal.png +0 -0
  403. data/textures/sandstone_smooth.png +0 -0
  404. data/textures/sandstone_top.png +0 -0
  405. data/textures/sapling_acacia.png +0 -0
  406. data/textures/sapling_birch.png +0 -0
  407. data/textures/sapling_jungle.png +0 -0
  408. data/textures/sapling_oak.png +0 -0
  409. data/textures/sapling_roofed_oak.png +0 -0
  410. data/textures/sapling_spruce.png +0 -0
  411. data/textures/sea_lantern.png +0 -0
  412. data/textures/sea_lantern.png.mcmeta +0 -5
  413. data/textures/slime.png +0 -0
  414. data/textures/snow.png +0 -0
  415. data/textures/soul_sand.png +0 -0
  416. data/textures/sponge.png +0 -0
  417. data/textures/sponge_wet.png +0 -0
  418. data/textures/stone.png +0 -0
  419. data/textures/stone_andesite.png +0 -0
  420. data/textures/stone_andesite_smooth.png +0 -0
  421. data/textures/stone_diorite.png +0 -0
  422. data/textures/stone_diorite_smooth.png +0 -0
  423. data/textures/stone_granite.png +0 -0
  424. data/textures/stone_granite_smooth.png +0 -0
  425. data/textures/stone_slab_side.png +0 -0
  426. data/textures/stone_slab_top.png +0 -0
  427. data/textures/stonebrick.png +0 -0
  428. data/textures/stonebrick_carved.png +0 -0
  429. data/textures/stonebrick_cracked.png +0 -0
  430. data/textures/stonebrick_mossy.png +0 -0
  431. data/textures/tallgrass.png +0 -0
  432. data/textures/tnt_bottom.png +0 -0
  433. data/textures/tnt_side.png +0 -0
  434. data/textures/tnt_top.png +0 -0
  435. data/textures/torch_on.png +0 -0
  436. data/textures/trapdoor.png +0 -0
  437. data/textures/trip_wire.png +0 -0
  438. data/textures/trip_wire_source.png +0 -0
  439. data/textures/vine.png +0 -0
  440. data/textures/water_flow.png +0 -0
  441. data/textures/water_flow.png.mcmeta +0 -3
  442. data/textures/water_still.png +0 -0
  443. data/textures/water_still.png.mcmeta +0 -5
  444. data/textures/waterlily.png +0 -0
  445. data/textures/web.png +0 -0
  446. data/textures/wheat_stage_0.png +0 -0
  447. data/textures/wheat_stage_1.png +0 -0
  448. data/textures/wheat_stage_2.png +0 -0
  449. data/textures/wheat_stage_3.png +0 -0
  450. data/textures/wheat_stage_4.png +0 -0
  451. data/textures/wheat_stage_5.png +0 -0
  452. data/textures/wheat_stage_6.png +0 -0
  453. data/textures/wheat_stage_7.png +0 -0
  454. data/textures/wool_colored_black.png +0 -0
  455. data/textures/wool_colored_blue.png +0 -0
  456. data/textures/wool_colored_brown.png +0 -0
  457. data/textures/wool_colored_cyan.png +0 -0
  458. data/textures/wool_colored_gray.png +0 -0
  459. data/textures/wool_colored_green.png +0 -0
  460. data/textures/wool_colored_light_blue.png +0 -0
  461. data/textures/wool_colored_lime.png +0 -0
  462. data/textures/wool_colored_magenta.png +0 -0
  463. data/textures/wool_colored_orange.png +0 -0
  464. data/textures/wool_colored_pink.png +0 -0
  465. data/textures/wool_colored_purple.png +0 -0
  466. data/textures/wool_colored_red.png +0 -0
  467. data/textures/wool_colored_silver.png +0 -0
  468. data/textures/wool_colored_white.png +0 -0
  469. data/textures/wool_colored_yellow.png +0 -0
  470. data/textures.zip +0 -0
@@ -0,0 +1,74 @@
1
+ require_relative '../lib/mc_dot_art_maker'
2
+ require 'test/unit'
3
+ require "digest/md5"
4
+
5
+ module MCDotArtMaker
6
+ class Maker
7
+ attr_reader :calculation_count
8
+
9
+ public :block_data
10
+ public :block_ids
11
+ end
12
+ end
13
+ class MakerTest < Test::Unit::TestCase
14
+ def setup
15
+ @maker = MCDotArtMaker::Maker.new("test/images/src/test_image.jpg")
16
+ end
17
+
18
+ def test_calculation_count
19
+ assert_equal(0,@maker.calculation_count)
20
+ @maker.calculate
21
+
22
+ assert_equal(@maker.width * @maker.height, @maker.calculation_count)
23
+ end
24
+
25
+ def test_resize_to_fit
26
+ assert_equal(150, @maker.image.columns)
27
+ assert_equal(100, @maker.image.rows)
28
+ @maker.resize_to_fit(80, 80)
29
+ assert_equal(80, @maker.image.columns)
30
+ end
31
+
32
+ def test_modify_after_calculation
33
+ @maker.calculate
34
+ assert_raise(MCDotArtMaker::CannotModifyImageError){
35
+ @maker.resize_to_fit(80, 80)
36
+ }
37
+ end
38
+ def test_manipulate_after_calculation
39
+ @maker.calculate
40
+ assert_raise(MCDotArtMaker::CannotModifyImageError){
41
+ @maker.manipulate do |image|
42
+ image
43
+ end
44
+ }
45
+ end
46
+
47
+ def test_get_block_ids_before_calculation
48
+ refute(@maker.block_ids.empty?)
49
+ refute(@maker.block_data.empty?)
50
+ end
51
+
52
+ def test_manipulate_image
53
+ @maker.manipulate do |image|
54
+ image.resize_to_fit!(300,300)
55
+ image = image.polaroid do
56
+ self.shadow_color = "gray40"
57
+ self.pointsize = 12
58
+ self.fill="white"
59
+ end
60
+ image
61
+ end
62
+ mosaic = @maker.mosaic_image
63
+ mosaic.write "test/images/tmp/test_manipulate_image.png"
64
+ assert_equal(Magick::Image, mosaic.class)
65
+ end
66
+ def test_manipulate_image_with_invalid_value
67
+ assert_raise(ArgumentError){
68
+ @maker.manipulate do |image|
69
+ :invalid
70
+ end
71
+ }
72
+ end
73
+
74
+ end
@@ -2,29 +2,82 @@ require_relative '../lib/mc_dot_art_maker'
2
2
  require 'test/unit'
3
3
  require "digest/md5"
4
4
 
5
+ module MCDotArtMaker
6
+ class Maker
7
+ public :block_data
8
+ public :block_ids
9
+ end
10
+ end
11
+
5
12
  class NormalConversionTest < Test::Unit::TestCase
6
- TMP_DIR = "images/tmp"
13
+ TMP_DIR = "test/images/tmp"
7
14
  class << self
8
15
  def startup
9
- FileUtils.rm_r TMP_DIR
10
- Dir.mkdir(TMP_DIR) unless Dir.exist?(TMP_DIR)
16
+ # FileUtils.rm_r TMP_DIR
17
+ # Dir.mkdir(TMP_DIR) unless Dir.exist?(TMP_DIR)
11
18
  end
12
19
  end
13
20
  def setup
14
- maker = MCDotArtMaker::Maker.new("images/src/test_image.jpg")
15
- maker.texture_image.write "images/tmp/normal_conversion_texture.png"
16
- maker.mosaic_image.write "images/tmp/normal_conversion_mosaic.png"
17
- maker.write_schematic "images/tmp/normal_conversion_schematic.schematic"
21
+ FileUtils.rm_r TMP_DIR
22
+ Dir.mkdir(TMP_DIR) unless Dir.exist?(TMP_DIR)
23
+
24
+ maker = MCDotArtMaker::Maker.new("test/images/src/test_image.jpg")
25
+ maker.texture_image.write "test/images/tmp/normal_conversion_texture.png"
26
+ maker.mosaic_image.write "test/images/tmp/normal_conversion_mosaic.png"
27
+ maker.write_schematic "test/images/tmp/normal_conversion_schematic.schematic"
28
+
29
+ maker = MCDotArtMaker::Maker.new(Magick::ImageList.new("test/images/src/test_image.jpg").first)
30
+ maker.texture_image.write "test/images/tmp/normal_conversion_texture_with_magick__image.png"
31
+ maker.mosaic_image.write "test/images/tmp/normal_conversion_mosaic_with_magick__image.png"
32
+
18
33
  end
19
34
 
20
- def test_block_palette
21
- assert_equal(Digest::MD5.file("images/sample/normal_conversion_texture.png"),
22
- Digest::MD5.file("images/tmp/normal_conversion_texture.png"))
23
- assert_equal(Digest::MD5.file("images/sample/normal_conversion_mosaic.png"),
24
- Digest::MD5.file("images/tmp/normal_conversion_mosaic.png"))
35
+ def test_normal_conversion
36
+ assert_equal(Digest::MD5.file("test/images/sample/normal_conversion_texture.png"),
37
+ Digest::MD5.file("test/images/tmp/normal_conversion_texture.png"))
38
+ assert_equal(Digest::MD5.file("test/images/sample/normal_conversion_mosaic.png"),
39
+ Digest::MD5.file("test/images/tmp/normal_conversion_mosaic.png"))
40
+ refute_equal(Digest::MD5.file("test/images/sample/normal_conversion_mosaic.png"),
41
+ Digest::MD5.file("test/images/sample/normal_conversion_texture.png"))
42
+ refute_equal(Digest::MD5.file("test/images/tmp/normal_conversion_mosaic.png"),
43
+ Digest::MD5.file("test/images/tmp/normal_conversion_texture.png"))
25
44
 
26
45
  # md5 values seems to be changed for every output...
27
- # assert_equal(Digest::MD5.file("images/sample/normal_conversion_schematic.schematic"),
28
- # Digest::MD5.file("images/tmp/normal_conversion_schematic.schematic"))
46
+ # assert_equal(Digest::MD5.file("test/images/sample/normal_conversion_schematic.schematic"),
47
+ # Digest::MD5.file("test/images/tmp/normal_conversion_schematic.schematic"))
48
+
49
+ end
50
+
51
+ def test_normal_conversion_with_image_arg
52
+ assert_equal(Digest::MD5.file("test/images/sample/normal_conversion_texture.png"),
53
+ Digest::MD5.file("test/images/tmp/normal_conversion_texture_with_magick__image.png"))
54
+ assert_equal(Digest::MD5.file("test/images/sample/normal_conversion_mosaic.png"),
55
+ Digest::MD5.file("test/images/tmp/normal_conversion_mosaic_with_magick__image.png"))
56
+ refute_equal(Digest::MD5.file("test/images/sample/normal_conversion_mosaic.png"),
57
+ Digest::MD5.file("test/images/sample/normal_conversion_texture.png"))
58
+ refute_equal(Digest::MD5.file("test/images/tmp/normal_conversion_mosaic_with_magick__image.png"),
59
+ Digest::MD5.file("test/images/tmp/normal_conversion_texture_with_magick__image.png"))
60
+ end
61
+
62
+ def test_schematic
63
+ sample_schematic_helper = MCDotArtMaker::SchematicHelper.new
64
+ tmp_schematic_helper = MCDotArtMaker::SchematicHelper.new
65
+
66
+ sample_schematic_helper.read("test/images/sample/normal_conversion_schematic.schematic")
67
+ tmp_schematic_helper.read("test/images/tmp/normal_conversion_schematic.schematic")
68
+
69
+ assert_equal(sample_schematic_helper.blocks, tmp_schematic_helper.blocks)
70
+ assert_equal(sample_schematic_helper.data, tmp_schematic_helper.data)
71
+
72
+ assert_equal(sample_schematic_helper.weOffsetX, tmp_schematic_helper.weOffsetX)
73
+ assert_equal(sample_schematic_helper.weOffsetY, tmp_schematic_helper.weOffsetY)
74
+ assert_equal(sample_schematic_helper.weOffsetZ, tmp_schematic_helper.weOffsetZ)
75
+ assert_equal(sample_schematic_helper.weOriginX, tmp_schematic_helper.weOriginX)
76
+ assert_equal(sample_schematic_helper.weOriginY, tmp_schematic_helper.weOriginY)
77
+ assert_equal(sample_schematic_helper.weOriginZ, tmp_schematic_helper.weOriginZ)
78
+
79
+ assert_equal(sample_schematic_helper.height, tmp_schematic_helper.height)
80
+ assert_equal(sample_schematic_helper.width, tmp_schematic_helper.width)
81
+ assert_equal(sample_schematic_helper.length, tmp_schematic_helper.length)
29
82
  end
30
83
  end
@@ -1,8 +1,16 @@
1
1
  require_relative '../lib/mc_dot_art_maker'
2
2
  require 'test/unit'
3
3
 
4
+ module MCDotArtMaker
5
+ class TextureLoader
6
+ public :os
7
+ public :search_dir
8
+ public :jars
9
+ end
10
+ end
11
+
4
12
  class TextureLoaderTest < Test::Unit::TestCase
5
- TMP_DIR = "images/tmp"
13
+ TMP_DIR = "test/images/tmp"
6
14
  class << self
7
15
  def startup
8
16
  # FileUtils.rm_r TMP_DIR
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mc_dot_art_maker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kumassy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-01 00:00:00.000000000 Z
11
+ date: 2016-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bindata
@@ -138,65 +138,6 @@ files:
138
138
  - lib/mc_dot_art_maker/schematic_helper.rb
139
139
  - lib/mc_dot_art_maker/seed.schematic
140
140
  - lib/mc_dot_art_maker/texture_loader.rb
141
- - lib/mc_dot_art_maker/textures/brick.png
142
- - lib/mc_dot_art_maker/textures/clay.png
143
- - lib/mc_dot_art_maker/textures/coal_block.png
144
- - lib/mc_dot_art_maker/textures/diamond_block.png
145
- - lib/mc_dot_art_maker/textures/emerald_block.png
146
- - lib/mc_dot_art_maker/textures/glowstone.png
147
- - lib/mc_dot_art_maker/textures/gold_block.png
148
- - lib/mc_dot_art_maker/textures/hardened_clay.png
149
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_black.png
150
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_blue.png
151
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_brown.png
152
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_cyan.png
153
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_gray.png
154
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_green.png
155
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_light_blue.png
156
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_lime.png
157
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_magenta.png
158
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_orange.png
159
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_pink.png
160
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_purple.png
161
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_red.png
162
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_silver.png
163
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_white.png
164
- - lib/mc_dot_art_maker/textures/hardened_clay_stained_yellow.png
165
- - lib/mc_dot_art_maker/textures/hay_block_top.png
166
- - lib/mc_dot_art_maker/textures/ice.png
167
- - lib/mc_dot_art_maker/textures/iron_block.png
168
- - lib/mc_dot_art_maker/textures/lapis_block.png
169
- - lib/mc_dot_art_maker/textures/melon_top.png
170
- - lib/mc_dot_art_maker/textures/nether_brick.png
171
- - lib/mc_dot_art_maker/textures/obsidian.png
172
- - lib/mc_dot_art_maker/textures/planks_birch.png
173
- - lib/mc_dot_art_maker/textures/planks_jungle.png
174
- - lib/mc_dot_art_maker/textures/planks_oak.png
175
- - lib/mc_dot_art_maker/textures/planks_spruce.png
176
- - lib/mc_dot_art_maker/textures/quartz_block_chiseled_top.png
177
- - lib/mc_dot_art_maker/textures/redstone_block.png
178
- - lib/mc_dot_art_maker/textures/sandstone_top.png
179
- - lib/mc_dot_art_maker/textures/soul_sand.png
180
- - lib/mc_dot_art_maker/textures/sponge.png
181
- - lib/mc_dot_art_maker/textures/stonebrick_carved.png
182
- - lib/mc_dot_art_maker/textures/stonebrick_mossy.png
183
- - lib/mc_dot_art_maker/textures/tmp/1.9.jar
184
- - lib/mc_dot_art_maker/textures/wool_colored_black.png
185
- - lib/mc_dot_art_maker/textures/wool_colored_blue.png
186
- - lib/mc_dot_art_maker/textures/wool_colored_brown.png
187
- - lib/mc_dot_art_maker/textures/wool_colored_cyan.png
188
- - lib/mc_dot_art_maker/textures/wool_colored_gray.png
189
- - lib/mc_dot_art_maker/textures/wool_colored_green.png
190
- - lib/mc_dot_art_maker/textures/wool_colored_light_blue.png
191
- - lib/mc_dot_art_maker/textures/wool_colored_lime.png
192
- - lib/mc_dot_art_maker/textures/wool_colored_magenta.png
193
- - lib/mc_dot_art_maker/textures/wool_colored_orange.png
194
- - lib/mc_dot_art_maker/textures/wool_colored_pink.png
195
- - lib/mc_dot_art_maker/textures/wool_colored_purple.png
196
- - lib/mc_dot_art_maker/textures/wool_colored_red.png
197
- - lib/mc_dot_art_maker/textures/wool_colored_silver.png
198
- - lib/mc_dot_art_maker/textures/wool_colored_white.png
199
- - lib/mc_dot_art_maker/textures/wool_colored_yellow.png
200
141
  - lib/mc_dot_art_maker/utils.rb
201
142
  - mc_dot_art_maker.gemspec
202
143
  - test/images/sample/dither_methods_FloydSteinbergDitherMethod.png
@@ -207,397 +148,18 @@ files:
207
148
  - test/images/sample/normal_conversion_texture.png
208
149
  - test/images/sample/palette.png
209
150
  - test/images/src/test_image.jpg
210
- - test/images/tmp/dither_methods_FloydSteinbergDitherMethod.png
211
- - test/images/tmp/dither_methods_NoDitherMethod.png
212
- - test/images/tmp/dither_methods_RiemersmaDitherMethod.png
151
+ - test/images/src/test_image_cat.jpg
152
+ - test/images/tmp/normal_conversion_mosaic.png
153
+ - test/images/tmp/normal_conversion_mosaic_with_magick__image.png
154
+ - test/images/tmp/normal_conversion_schematic.schematic
155
+ - test/images/tmp/normal_conversion_texture.png
156
+ - test/images/tmp/normal_conversion_texture_with_magick__image.png
213
157
  - test/test_block_list.rb
214
- - test/test_block_palette.rb
215
158
  - test/test_dither_method.rb
159
+ - test/test_dot.rb
160
+ - test/test_maker.rb
216
161
  - test/test_normal_conversion.rb
217
162
  - test/test_texture_loader.rb
218
- - textures.zip
219
- - textures/anvil_base.png
220
- - textures/anvil_top_damaged_0.png
221
- - textures/anvil_top_damaged_1.png
222
- - textures/anvil_top_damaged_2.png
223
- - textures/beacon.png
224
- - textures/bed_feet_end.png
225
- - textures/bed_feet_side.png
226
- - textures/bed_feet_top.png
227
- - textures/bed_head_end.png
228
- - textures/bed_head_side.png
229
- - textures/bed_head_top.png
230
- - textures/bedrock.png
231
- - textures/bookshelf.png
232
- - textures/brewing_stand.png
233
- - textures/brewing_stand_base.png
234
- - textures/brick.png
235
- - textures/cactus_bottom.png
236
- - textures/cactus_side.png
237
- - textures/cactus_top.png
238
- - textures/cake_bottom.png
239
- - textures/cake_inner.png
240
- - textures/cake_side.png
241
- - textures/cake_top.png
242
- - textures/carrots_stage_0.png
243
- - textures/carrots_stage_1.png
244
- - textures/carrots_stage_2.png
245
- - textures/carrots_stage_3.png
246
- - textures/cauldron_bottom.png
247
- - textures/cauldron_inner.png
248
- - textures/cauldron_side.png
249
- - textures/cauldron_top.png
250
- - textures/clay.png
251
- - textures/coal_block.png
252
- - textures/coal_ore.png
253
- - textures/coarse_dirt.png
254
- - textures/cobblestone.png
255
- - textures/cobblestone_mossy.png
256
- - textures/cocoa_stage_0.png
257
- - textures/cocoa_stage_1.png
258
- - textures/cocoa_stage_2.png
259
- - textures/command_block.png
260
- - textures/comparator_off.png
261
- - textures/comparator_on.png
262
- - textures/crafting_table_front.png
263
- - textures/crafting_table_side.png
264
- - textures/crafting_table_top.png
265
- - textures/daylight_detector_inverted_top.png
266
- - textures/daylight_detector_side.png
267
- - textures/daylight_detector_top.png
268
- - textures/deadbush.png
269
- - textures/destroy_stage_0.png
270
- - textures/destroy_stage_1.png
271
- - textures/destroy_stage_2.png
272
- - textures/destroy_stage_3.png
273
- - textures/destroy_stage_4.png
274
- - textures/destroy_stage_5.png
275
- - textures/destroy_stage_6.png
276
- - textures/destroy_stage_7.png
277
- - textures/destroy_stage_8.png
278
- - textures/destroy_stage_9.png
279
- - textures/diamond_block.png
280
- - textures/diamond_ore.png
281
- - textures/dirt.png
282
- - textures/dirt_podzol_side.png
283
- - textures/dirt_podzol_top.png
284
- - textures/dispenser_front_horizontal.png
285
- - textures/dispenser_front_vertical.png
286
- - textures/door_acacia_lower.png
287
- - textures/door_acacia_upper.png
288
- - textures/door_birch_lower.png
289
- - textures/door_birch_upper.png
290
- - textures/door_dark_oak_lower.png
291
- - textures/door_dark_oak_upper.png
292
- - textures/door_iron_lower.png
293
- - textures/door_iron_upper.png
294
- - textures/door_jungle_lower.png
295
- - textures/door_jungle_upper.png
296
- - textures/door_spruce_lower.png
297
- - textures/door_spruce_upper.png
298
- - textures/door_wood_lower.png
299
- - textures/door_wood_upper.png
300
- - textures/double_plant_fern_bottom.png
301
- - textures/double_plant_fern_top.png
302
- - textures/double_plant_grass_bottom.png
303
- - textures/double_plant_grass_top.png
304
- - textures/double_plant_paeonia_bottom.png
305
- - textures/double_plant_paeonia_top.png
306
- - textures/double_plant_rose_bottom.png
307
- - textures/double_plant_rose_top.png
308
- - textures/double_plant_sunflower_back.png
309
- - textures/double_plant_sunflower_bottom.png
310
- - textures/double_plant_sunflower_front.png
311
- - textures/double_plant_sunflower_top.png
312
- - textures/double_plant_syringa_bottom.png
313
- - textures/double_plant_syringa_top.png
314
- - textures/dragon_egg.png
315
- - textures/dropper_front_horizontal.png
316
- - textures/dropper_front_vertical.png
317
- - textures/emerald_block.png
318
- - textures/emerald_ore.png
319
- - textures/enchanting_table_bottom.png
320
- - textures/enchanting_table_side.png
321
- - textures/enchanting_table_top.png
322
- - textures/end_stone.png
323
- - textures/endframe_eye.png
324
- - textures/endframe_side.png
325
- - textures/endframe_top.png
326
- - textures/farmland_dry.png
327
- - textures/farmland_wet.png
328
- - textures/fern.png
329
- - textures/fire_layer_0.png
330
- - textures/fire_layer_0.png.mcmeta
331
- - textures/fire_layer_1.png
332
- - textures/fire_layer_1.png.mcmeta
333
- - textures/flower_allium.png
334
- - textures/flower_blue_orchid.png
335
- - textures/flower_dandelion.png
336
- - textures/flower_houstonia.png
337
- - textures/flower_oxeye_daisy.png
338
- - textures/flower_paeonia.png
339
- - textures/flower_pot.png
340
- - textures/flower_rose.png
341
- - textures/flower_tulip_orange.png
342
- - textures/flower_tulip_pink.png
343
- - textures/flower_tulip_red.png
344
- - textures/flower_tulip_white.png
345
- - textures/furnace_front_off.png
346
- - textures/furnace_front_on.png
347
- - textures/furnace_side.png
348
- - textures/furnace_top.png
349
- - textures/glass.png
350
- - textures/glass_black.png
351
- - textures/glass_blue.png
352
- - textures/glass_brown.png
353
- - textures/glass_cyan.png
354
- - textures/glass_gray.png
355
- - textures/glass_green.png
356
- - textures/glass_light_blue.png
357
- - textures/glass_lime.png
358
- - textures/glass_magenta.png
359
- - textures/glass_orange.png
360
- - textures/glass_pane_top.png
361
- - textures/glass_pane_top_black.png
362
- - textures/glass_pane_top_blue.png
363
- - textures/glass_pane_top_brown.png
364
- - textures/glass_pane_top_cyan.png
365
- - textures/glass_pane_top_gray.png
366
- - textures/glass_pane_top_green.png
367
- - textures/glass_pane_top_light_blue.png
368
- - textures/glass_pane_top_lime.png
369
- - textures/glass_pane_top_magenta.png
370
- - textures/glass_pane_top_orange.png
371
- - textures/glass_pane_top_pink.png
372
- - textures/glass_pane_top_purple.png
373
- - textures/glass_pane_top_red.png
374
- - textures/glass_pane_top_silver.png
375
- - textures/glass_pane_top_white.png
376
- - textures/glass_pane_top_yellow.png
377
- - textures/glass_pink.png
378
- - textures/glass_purple.png
379
- - textures/glass_red.png
380
- - textures/glass_silver.png
381
- - textures/glass_white.png
382
- - textures/glass_yellow.png
383
- - textures/glowstone.png
384
- - textures/gold_block.png
385
- - textures/gold_ore.png
386
- - textures/grass_side.png
387
- - textures/grass_side_overlay.png
388
- - textures/grass_side_snowed.png
389
- - textures/grass_top.png
390
- - textures/gravel.png
391
- - textures/hardened_clay.png
392
- - textures/hardened_clay_stained_black.png
393
- - textures/hardened_clay_stained_blue.png
394
- - textures/hardened_clay_stained_brown.png
395
- - textures/hardened_clay_stained_cyan.png
396
- - textures/hardened_clay_stained_gray.png
397
- - textures/hardened_clay_stained_green.png
398
- - textures/hardened_clay_stained_light_blue.png
399
- - textures/hardened_clay_stained_lime.png
400
- - textures/hardened_clay_stained_magenta.png
401
- - textures/hardened_clay_stained_orange.png
402
- - textures/hardened_clay_stained_pink.png
403
- - textures/hardened_clay_stained_purple.png
404
- - textures/hardened_clay_stained_red.png
405
- - textures/hardened_clay_stained_silver.png
406
- - textures/hardened_clay_stained_white.png
407
- - textures/hardened_clay_stained_yellow.png
408
- - textures/hay_block_side.png
409
- - textures/hay_block_top.png
410
- - textures/hopper_inside.png
411
- - textures/hopper_outside.png
412
- - textures/hopper_top.png
413
- - textures/ice.png
414
- - textures/ice_packed.png
415
- - textures/iron_bars.png
416
- - textures/iron_block.png
417
- - textures/iron_ore.png
418
- - textures/iron_trapdoor.png
419
- - textures/itemframe_background.png
420
- - textures/jukebox_side.png
421
- - textures/jukebox_top.png
422
- - textures/ladder.png
423
- - textures/lapis_block.png
424
- - textures/lapis_ore.png
425
- - textures/lava_flow.png
426
- - textures/lava_flow.png.mcmeta
427
- - textures/lava_still.png
428
- - textures/lava_still.png.mcmeta
429
- - textures/leaves_acacia.png
430
- - textures/leaves_big_oak.png
431
- - textures/leaves_birch.png
432
- - textures/leaves_jungle.png
433
- - textures/leaves_oak.png
434
- - textures/leaves_spruce.png
435
- - textures/lever.png
436
- - textures/log_acacia.png
437
- - textures/log_acacia_top.png
438
- - textures/log_big_oak.png
439
- - textures/log_big_oak_top.png
440
- - textures/log_birch.png
441
- - textures/log_birch_top.png
442
- - textures/log_jungle.png
443
- - textures/log_jungle_top.png
444
- - textures/log_oak.png
445
- - textures/log_oak_top.png
446
- - textures/log_spruce.png
447
- - textures/log_spruce_top.png
448
- - textures/melon_side.png
449
- - textures/melon_stem_connected.png
450
- - textures/melon_stem_disconnected.png
451
- - textures/melon_top.png
452
- - textures/mob_spawner.png
453
- - textures/mushroom_block_inside.png
454
- - textures/mushroom_block_skin_brown.png
455
- - textures/mushroom_block_skin_red.png
456
- - textures/mushroom_block_skin_stem.png
457
- - textures/mushroom_brown.png
458
- - textures/mushroom_red.png
459
- - textures/mycelium_side.png
460
- - textures/mycelium_top.png
461
- - textures/nether_brick.png
462
- - textures/nether_wart_stage_0.png
463
- - textures/nether_wart_stage_1.png
464
- - textures/nether_wart_stage_2.png
465
- - textures/netherrack.png
466
- - textures/noteblock.png
467
- - textures/obsidian.png
468
- - textures/piston_bottom.png
469
- - textures/piston_inner.png
470
- - textures/piston_side.png
471
- - textures/piston_top_normal.png
472
- - textures/piston_top_sticky.png
473
- - textures/planks_acacia.png
474
- - textures/planks_big_oak.png
475
- - textures/planks_birch.png
476
- - textures/planks_jungle.png
477
- - textures/planks_oak.png
478
- - textures/planks_spruce.png
479
- - textures/portal.png
480
- - textures/portal.png.mcmeta
481
- - textures/potatoes_stage_0.png
482
- - textures/potatoes_stage_1.png
483
- - textures/potatoes_stage_2.png
484
- - textures/potatoes_stage_3.png
485
- - textures/prismarine_bricks.png
486
- - textures/prismarine_dark.png
487
- - textures/prismarine_rough.png
488
- - textures/prismarine_rough.png.mcmeta
489
- - textures/pumpkin_face_off.png
490
- - textures/pumpkin_face_on.png
491
- - textures/pumpkin_side.png
492
- - textures/pumpkin_stem_connected.png
493
- - textures/pumpkin_stem_disconnected.png
494
- - textures/pumpkin_top.png
495
- - textures/quartz_block_bottom.png
496
- - textures/quartz_block_chiseled.png
497
- - textures/quartz_block_chiseled_top.png
498
- - textures/quartz_block_lines.png
499
- - textures/quartz_block_lines_top.png
500
- - textures/quartz_block_side.png
501
- - textures/quartz_block_top.png
502
- - textures/quartz_ore.png
503
- - textures/rail_activator.png
504
- - textures/rail_activator_powered.png
505
- - textures/rail_detector.png
506
- - textures/rail_detector_powered.png
507
- - textures/rail_golden.png
508
- - textures/rail_golden_powered.png
509
- - textures/rail_normal.png
510
- - textures/rail_normal_turned.png
511
- - textures/red_sand.png
512
- - textures/red_sandstone_bottom.png
513
- - textures/red_sandstone_carved.png
514
- - textures/red_sandstone_normal.png
515
- - textures/red_sandstone_smooth.png
516
- - textures/red_sandstone_top.png
517
- - textures/redstone_block.png
518
- - textures/redstone_dust_cross.png
519
- - textures/redstone_dust_cross_overlay.png
520
- - textures/redstone_dust_line.png
521
- - textures/redstone_dust_line_overlay.png
522
- - textures/redstone_lamp_off.png
523
- - textures/redstone_lamp_on.png
524
- - textures/redstone_ore.png
525
- - textures/redstone_torch_off.png
526
- - textures/redstone_torch_on.png
527
- - textures/reeds.png
528
- - textures/repeater_off.png
529
- - textures/repeater_on.png
530
- - textures/sand.png
531
- - textures/sandstone_bottom.png
532
- - textures/sandstone_carved.png
533
- - textures/sandstone_normal.png
534
- - textures/sandstone_smooth.png
535
- - textures/sandstone_top.png
536
- - textures/sapling_acacia.png
537
- - textures/sapling_birch.png
538
- - textures/sapling_jungle.png
539
- - textures/sapling_oak.png
540
- - textures/sapling_roofed_oak.png
541
- - textures/sapling_spruce.png
542
- - textures/sea_lantern.png
543
- - textures/sea_lantern.png.mcmeta
544
- - textures/slime.png
545
- - textures/snow.png
546
- - textures/soul_sand.png
547
- - textures/sponge.png
548
- - textures/sponge_wet.png
549
- - textures/stone.png
550
- - textures/stone_andesite.png
551
- - textures/stone_andesite_smooth.png
552
- - textures/stone_diorite.png
553
- - textures/stone_diorite_smooth.png
554
- - textures/stone_granite.png
555
- - textures/stone_granite_smooth.png
556
- - textures/stone_slab_side.png
557
- - textures/stone_slab_top.png
558
- - textures/stonebrick.png
559
- - textures/stonebrick_carved.png
560
- - textures/stonebrick_cracked.png
561
- - textures/stonebrick_mossy.png
562
- - textures/tallgrass.png
563
- - textures/tnt_bottom.png
564
- - textures/tnt_side.png
565
- - textures/tnt_top.png
566
- - textures/torch_on.png
567
- - textures/trapdoor.png
568
- - textures/trip_wire.png
569
- - textures/trip_wire_source.png
570
- - textures/vine.png
571
- - textures/water_flow.png
572
- - textures/water_flow.png.mcmeta
573
- - textures/water_still.png
574
- - textures/water_still.png.mcmeta
575
- - textures/waterlily.png
576
- - textures/web.png
577
- - textures/wheat_stage_0.png
578
- - textures/wheat_stage_1.png
579
- - textures/wheat_stage_2.png
580
- - textures/wheat_stage_3.png
581
- - textures/wheat_stage_4.png
582
- - textures/wheat_stage_5.png
583
- - textures/wheat_stage_6.png
584
- - textures/wheat_stage_7.png
585
- - textures/wool_colored_black.png
586
- - textures/wool_colored_blue.png
587
- - textures/wool_colored_brown.png
588
- - textures/wool_colored_cyan.png
589
- - textures/wool_colored_gray.png
590
- - textures/wool_colored_green.png
591
- - textures/wool_colored_light_blue.png
592
- - textures/wool_colored_lime.png
593
- - textures/wool_colored_magenta.png
594
- - textures/wool_colored_orange.png
595
- - textures/wool_colored_pink.png
596
- - textures/wool_colored_purple.png
597
- - textures/wool_colored_red.png
598
- - textures/wool_colored_silver.png
599
- - textures/wool_colored_white.png
600
- - textures/wool_colored_yellow.png
601
163
  homepage: https://github.com/Kumassy/MCDotArtMaker
602
164
  licenses:
603
165
  - MIT
Binary file