Advertisement
keybounce

Dynamic maps configuration that fails

Feb 17th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 60.14 KB | None | 0 0
  1. # This is a shell archive.  Save it in a file, remove anything before
  2. # this line, and then unpack it by entering "sh file".  Note, it may
  3. # create directories; files and directories will be owned by you and
  4. # have default permissions.
  5. #
  6. # This archive contains:
  7. #
  8. #   worlds.txt
  9. #   custom-lightings.txt
  10. #   custom-perspectives.txt
  11. #   custom-shaders.txt
  12. #   templates/custom-nether-lowres.txt
  13. #   templates/custom-nether-vlowres.txt
  14. #   templates/custom-normal-lowres.txt
  15. #   templates/custom-normal-vlowres.txt
  16. #   templates/custom-twilight-lowres.txt
  17. #
  18. echo x - worlds.txt
  19. sed 's/^X//' >worlds.txt << 'END-of-worlds.txt'
  20. X# These are examples of world-specific settings - customize your content as you see fit
  21. X#
  22. X# NOTES:
  23. X#  All lines here are commented with the # symbol - delete the # symbol on copied lines you wish to enable
  24. X#  Definitions of a world made here will superecede any world definition with the same name in configuration.txt
  25. X#  Deleting this file will result in a fresh copy being produced by dynmap.jar on the next startup.
  26. X#
  27. Xworlds:
  28. X  # Worlds can be handled by templates, based on world type
  29. X  # You can override the properties of the template by specifying them in this section
  30. X  #    for example 'Title: "My Awesome World"'
  31. X  #- name: world
  32. X  #  title: "World"
  33. X  #   Use 'enabled: false' to disable a certain world.
  34. X  #  enabled: false
  35. X  #   Use sendposition: false to prevent player positions from showing when on this world (if sendposition is globally enabled)
  36. X  #  sendposition: false
  37. X  #   Use sendhealth: false ot prevent player health from showing when on this world (if sendhealth is globally enabled)
  38. X  #  sendhealth: false
  39. X  #  # If world isn't contiguous chunks (due to teleporting, for example), fullrender needs to be given other locations to scan for tiles on each patch of chunks
  40. X  #  fullrenderlocations:
  41. X  #    - x: 10000
  42. X  #      y: 64
  43. X  #      z: 20000
  44. X  #    - x: -15000
  45. X  #      y: 64
  46. X  #      z: -5000
  47. X  #  # Use visibilitylimits to restrict which areas of maps on your world to render (zero or more rectangles can be defined)
  48. X  #  visibilitylimits:
  49. X  #    - x0: -1000
  50. X  #      z0: -1000
  51. X  #      x1: 1000
  52. X  #      z1: 1000
  53. X  #    - x0: -2000
  54. X  #      z0: -1000
  55. X  #      x1: -1000
  56. X  #      z1: -500
  57. X  #  # Use hiddenlimits to specifically hide portions of your world (the opposite of visibilitylimits)
  58. X  #  hiddenlimits:
  59. X  #    - x0: 100
  60. X  #      z0: 0
  61. X  #      x1: 200
  62. X  #      z1: 0
  63. X  #  # Use hidestyle to control how hidden-but-existing chunks are to be rendered (air=empty air (same as ungenerated), stone=a flat stone plain, ocean=a flat ocean)
  64. X  #  hidestyle: stone
  65. X  #  # Use 'autogenerate-to-visibilitylimits: true' to choose to force the generation of ungenerated chunks while rendering maps on this world, for any chunks within the defined
  66. X  #  # visibilitylimits (limits must be set).  The three options here are: none (default - no autogenerate), map-only (temporarily generate chunks for map, but don't save them (no world change),
  67. X  #  # permanent (generate and save chunks - this permanently adds the chunks to the world, as if a player had visited them - BE SURE THIS IS WHAT YOU WANT)
  68. X  #  autogenerate-to-visibilitylimits: map-only
  69. X  #   Use 'template: mycustomtemplate' to use the properties specified in the template 'mycustomtemplate' to this world. Default it is set to the environment-name (normal or nether).
  70. X  #  template: mycustomtemplate
  71. X  #   Rest of comes from template - uncomment to tailor for world specifically
  72. X  #  # World center - default is spawn point
  73. X  #  center:
  74. X  #    x: 0
  75. X  #    y: 64
  76. X  #    z: 0
  77. X  #  # If bigworld set to true, use alternate directory layout better suited to large worlds
  78. X  #  bigworld: true
  79. X  #  # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  80. X  #  extrazoomout: 3
  81. X  #  # Default delay on processing of updated tiles, in seconds.  This can reduce potentially expensive re-rendering
  82. X  #  # of frequently updated tiles (such as due to machines, pistons, quarries or other automation).  Value can also be set on
  83. X  #  # individual maps.
  84. X  #  tileupdatedelay: 30
  85. X  #  maps:
  86. X  #    - class: org.dynmap.hdmap.HDMap
  87. X  #      name: flat
  88. X  #      title: "Flat"
  89. X  #      prefix: flat
  90. X  #      perspective: iso_S_90_lowres
  91. X  #      shader: stdtexture
  92. X  #      lighting: shadows
  93. X  #      mapzoomin: 1
  94. X  #    - class: org.dynmap.hdmap.HDMap
  95. X  #      name: surface
  96. X  #      title: "Surface"
  97. X  #      prefix: t
  98. X  #      perspective: iso_SE_30_hires
  99. X  #      shader: stdtexture
  100. X  #      lighting: shadows
  101. X  #      mapzoomin: 1
  102. X  #    - class: org.dynmap.hdmap.HDMap
  103. X  #      name: cave
  104. X  #      title: "Cave"
  105. X  #      prefix: ct
  106. X  #      perspective: iso_SE_60_lowres
  107. X  #      shader: cave
  108. X  #      lighting: default
  109. X  #      mapzoomin: 3
  110. X  #
  111. X  # To just label world, and inherit rest from template, just provide name and title
  112. X  #- name: world2
  113. X  #  title: "Second World"
  114. X  #
  115. X  #- name: nether
  116. X  #  title: "Nether"
  117. X  #  center:
  118. X  #    x: 0
  119. X  #    y: 64
  120. X  #    z: 0
  121. X  #  # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  122. X  #  extrazoomout: 3
  123. X  #  maps:
  124. X  #    - class: org.dynmap.hdmap.HDMap
  125. X  #      name: flat
  126. X  #      title: "Flat"
  127. X  #      prefix: flat
  128. X  #      perspective: iso_S_90_lowres
  129. X  #      shader: stdtexture
  130. X  #      lighting: nethershadows
  131. X  #      # Map background color (day or night)
  132. X  #      background: "#300806"
  133. X  #      mapzoomin: 1
  134. X  #    - class: org.dynmap.hdmap.HDMap
  135. X  #      name: nether
  136. X  #      title: "Surface"
  137. X  #      prefix: nt
  138. X  #      perspective: iso_SE_30_hires
  139. X  #      shader: stdtexture
  140. X  #      lighting: nethershadows
  141. X  #      # Map background color (day or night)
  142. X  #      background: "#300806"
  143. X  #      mapzoomin: 1
  144. X  - name: world123
  145. X    template: normal
  146. X  - name: world123_7
  147. X    template: twilight
  148. END-of-worlds.txt
  149. echo x - custom-lightings.txt
  150. sed 's/^X//' >custom-lightings.txt << 'END-of-custom-lightings.txt'
  151. X# The user is free to add new and custom lightings here, including replacements for standard ones
  152. X# Dynmap's install will not overwrite it
  153. X#
  154. X# Shadow strength 0.4 is too strong.
  155. X# Shadow strength 0.2 is too weak for normal, but looks good for "bright" worlds
  156. X# 0.25 is too weak for normal
  157. X# "best" seems to be between .3 and .35.
  158. X# Or not -- 0.35 makes light 0 just a little too bright
  159. X# And ... it's neither. Looks like I was looking at buggy display before.
  160. X# So: Shadow 0.5 is too weak (light 0 is visible). Shadow 0.6 may be too strong (light 4 looks too dark).
  161. X# Caves ... need a way to deal with "Some roof" near the entrances.
  162. X# Looks like "best" is in the .54 to .58 range -- day shadow and night.
  163. X# ... and I think .54 is too strong. Make it .52.
  164. X
  165. Xlightings:
  166. X
  167. X    # Shadows enabled day mode
  168. X    - class: org.dynmap.hdmap.ShadowHDLighting
  169. X      name: shadows
  170. X      shadowstrength: 0.52
  171. X
  172. X    # Shadows enabled day mode
  173. X    - class: org.dynmap.hdmap.ShadowHDLighting
  174. X      name: twilightshadows
  175. X      shadowstrength: 0.52
  176. X      ambientlight: 13
  177. X
  178. X    # Shadows enabled day mode
  179. X    - class: org.dynmap.hdmap.ShadowHDLighting
  180. X      name: duskshadows
  181. X      shadowstrength: 0.52
  182. X      ambientlight: 10
  183. X
  184. X    # Shadows enabled night
  185. X    # Good for night view of main world
  186. X    - class: org.dynmap.hdmap.ShadowHDLighting
  187. X      name: night
  188. X      shadowstrength: 0.52
  189. X      ambientlight: 4
  190. X
  191. X    # Cave lighting ... fades to "too dark"
  192. X    # Works well. Definitely too dark.
  193. X    - class: org.dynmap.hdmap.ShadowHDLighting
  194. X      name: cave
  195. X      shadowstrength: 0.54
  196. X      ambientlight: 4
  197. X
  198. X    # A 'bright' night view (easier to see unlit landscape dimly)
  199. X    - class: org.dynmap.hdmap.ShadowHDLighting
  200. X      name: brightnight
  201. X      shadowstrength: 0.4
  202. X      ambientlight: 4
  203. X
  204. X    # A 'bright' world view
  205. X    # "perfect" for bright worlds like the nether
  206. X    - class: org.dynmap.hdmap.ShadowHDLighting
  207. X      name: nethershadows
  208. X      shadowstrength: 0.2
  209. X      ambientlight: 4
  210. X
  211. X    - class: org.dynmap.hdmap.ShadowHDLighting
  212. X      name: l_normShadow_15
  213. X      shadowstrength: 0.52
  214. X      ambientlight: 15
  215. X
  216. X    - class: org.dynmap.hdmap.ShadowHDLighting
  217. X      name: l_normShadow_13
  218. X      shadowstrength: 0.52
  219. X      ambientlight: 13
  220. X
  221. X    - class: org.dynmap.hdmap.ShadowHDLighting
  222. X      name: l_normShadow_10
  223. X      shadowstrength: 0.52
  224. X      ambientlight: 10
  225. X
  226. END-of-custom-lightings.txt
  227. echo x - custom-perspectives.txt
  228. sed 's/^X//' >custom-perspectives.txt << 'END-of-custom-perspectives.txt'
  229. X# The user is free to add new and custom perspectives here, including replacements for standard ones
  230. X# Dynmap's install will not overwrite it
  231. Xperspectives:
  232. X
  233. X  - class: org.dynmap.hdmap.IsoHDPerspective
  234. X    name: iso_170_20_lowres
  235. X    azimuth: 170
  236. X    inclination: 20
  237. X    scale: 4
  238. X
  239. X  - class: org.dynmap.hdmap.IsoHDPerspective
  240. X    name: iso_170_60_lowres
  241. X    azimuth: 170
  242. X    inclination: 60
  243. X    scale: 4
  244. X
  245. X# 1 to 16
  246. X  - class: org.dynmap.hdmap.IsoHDPerspective
  247. X    name: iso_SE_60_lowres_1to16
  248. X    # Catch floor 11-16 (primary 12-14)
  249. X    azimuth: 135
  250. X    inclination: 60
  251. X    scale: 4
  252. X    minimumheight: 1
  253. X    maximumheight: 16
  254. X
  255. X# 15 to 24
  256. X  - class: org.dynmap.hdmap.IsoHDPerspective
  257. X    name: iso_SE_60_lowres_15to25
  258. X    # Catch floor 18-22 (primary 19-21)
  259. X    azimuth: 135
  260. X    inclination: 60
  261. X    scale: 4
  262. X    minimumheight: 15
  263. X    maximumheight: 24
  264. X
  265. X# 22 to 28
  266. X  - class: org.dynmap.hdmap.IsoHDPerspective
  267. X    name: iso_SE_60_lowres_22to28
  268. X    # Catch floor 23-28 (primary 24-26)
  269. X    azimuth: 135
  270. X    inclination: 60
  271. X    scale: 4
  272. X    minimumheight: 22
  273. X    maximumheight: 28
  274. X
  275. X# 26 to 34
  276. X  - class: org.dynmap.hdmap.IsoHDPerspective
  277. X    name: iso_SE_60_lowres_26to34
  278. X    azimuth: 135
  279. X    inclination: 60
  280. X    scale: 4
  281. X    minimumheight: 26
  282. X    maximumheight: 34
  283. X
  284. X# 32 to 39 catches upper tunnel
  285. X  - class: org.dynmap.hdmap.IsoHDPerspective
  286. X    name: iso_SE_60_lowres_32to39
  287. X    azimuth: 135
  288. X    inclination: 60
  289. X    scale: 4
  290. X    minimumheight: 32
  291. X    maximumheight: 39
  292. X
  293. X# 36 to 49 catches uppper tree farm/base
  294. X  - class: org.dynmap.hdmap.IsoHDPerspective
  295. X    name: iso_SE_60_lowres_36to49
  296. X    azimuth: 135
  297. X    inclination: 60
  298. X    scale: 4
  299. X    minimumheight: 36
  300. X    maximumheight: 49
  301. X
  302. X# 44 to 52
  303. X  - class: org.dynmap.hdmap.IsoHDPerspective
  304. X    name: iso_SE_60_lowres_44to52
  305. X    azimuth: 135
  306. X    inclination: 60
  307. X    scale: 4
  308. X    minimumheight: 44
  309. X    maximumheight: 52
  310. X
  311. X# 49 to 59
  312. X  - class: org.dynmap.hdmap.IsoHDPerspective
  313. X    name: iso_SE_60_lowres_49to59
  314. X    azimuth: 135
  315. X    inclination: 60
  316. X    scale: 4
  317. X    minimumheight: 49
  318. X    maximumheight: 59
  319. X
  320. X# 55 to 66
  321. X  - class: org.dynmap.hdmap.IsoHDPerspective
  322. X    name: iso_SE_60_lowres_55to66
  323. X    azimuth: 135
  324. X    inclination: 60
  325. X    scale: 4
  326. X    minimumheight: 55
  327. X    maximumheight: 66
  328. X
  329. X# 63 to 73
  330. X  - class: org.dynmap.hdmap.IsoHDPerspective
  331. X    name: iso_SE_60_lowres_63to73
  332. X    azimuth: 135
  333. X    inclination: 60
  334. X    scale: 4
  335. X    minimumheight: 63
  336. X    maximumheight: 73
  337. X
  338. X# 71 to 77
  339. X  - class: org.dynmap.hdmap.IsoHDPerspective
  340. X    name: iso_SE_60_lowres_71to77
  341. X    azimuth: 135
  342. X    inclination: 60
  343. X    scale: 4
  344. X    minimumheight: 71
  345. X    maximumheight: 77
  346. X
  347. X# 76 to 81
  348. X  - class: org.dynmap.hdmap.IsoHDPerspective
  349. X    name: iso_SE_60_lowres_76to81
  350. X    azimuth: 135
  351. X    inclination: 60
  352. X    scale: 4
  353. X    minimumheight: 76
  354. X    maximumheight: 81
  355. X
  356. X
  357. X# 22-26 is both mineshaft and reasonable cave
  358. X# 26-32 is mineshaft and "b4" basement
  359. X# 32 to 37, or 32 to 41, are 2 floors of mineshafts
  360. X# 41 to 49 seems to cover the rest of mineshaft, and mushroom tunnel, and B3
  361. X# 49 to 59, and/or 55 to 62, for B2, hidden floor, and some tunnels
  362. X# 59 to 66
  363. X# 63 to 73
  364. X# 76 to 81
  365. X# Missing: ~72 to ~76.
  366. X#
  367. X# Other cave system:
  368. X# 56 and up
  369. X# 52 and up
  370. X# Floor at 46
  371. X# floor at 34
  372. X# 37 to 42 catches ravine area, some floor down to 33
  373. X# 1 to 16
  374. X# 15 to 24
  375. X# 22 to 28
  376. X# 26 to 34
  377. X
  378. X  - class: org.dynmap.hdmap.IsoHDPerspective
  379. X    name: iso_0_30_lowres_1to16
  380. X    azimuth: 0
  381. X    inclination: 30
  382. X    scale: 4
  383. X    minimumheight: 1
  384. X    maximumheight: 16
  385. X  - class: org.dynmap.hdmap.IsoHDPerspective
  386. X    name: iso_0_30_lowres_15to22
  387. X    azimuth: 0
  388. X    inclination: 30
  389. X    scale: 4
  390. X    minimumheight: 15
  391. X    maximumheight: 22
  392. X  - class: org.dynmap.hdmap.IsoHDPerspective
  393. X    name: iso_0_30_lowres_21to28
  394. X    azimuth: 0
  395. X    inclination: 30
  396. X    scale: 4
  397. X    minimumheight: 21
  398. X    maximumheight: 28
  399. X  - class: org.dynmap.hdmap.IsoHDPerspective
  400. X    name: iso_0_30_lowres_27to34
  401. X    azimuth: 0
  402. X    inclination: 30
  403. X    scale: 4
  404. X    minimumheight: 27
  405. X    maximumheight: 34
  406. X  - class: org.dynmap.hdmap.IsoHDPerspective
  407. X    name: iso_0_30_lowres_33to40
  408. X    azimuth: 0
  409. X    inclination: 30
  410. X    scale: 4
  411. X    minimumheight: 33
  412. X    maximumheight: 40
  413. X  - class: org.dynmap.hdmap.IsoHDPerspective
  414. X    name: iso_0_30_lowres_39to46
  415. X    azimuth: 0
  416. X    inclination: 30
  417. X    scale: 4
  418. X    minimumheight: 39
  419. X    maximumheight: 46
  420. X  - class: org.dynmap.hdmap.IsoHDPerspective
  421. X    name: iso_0_30_lowres_45to52
  422. X    azimuth: 0
  423. X    inclination: 30
  424. X    scale: 4
  425. X    minimumheight: 45
  426. X    maximumheight: 52
  427. X  - class: org.dynmap.hdmap.IsoHDPerspective
  428. X    name: iso_0_30_lowres_51to58
  429. X    azimuth: 0
  430. X    inclination: 30
  431. X    scale: 4
  432. X    minimumheight: 51
  433. X    maximumheight: 58
  434. X  - class: org.dynmap.hdmap.IsoHDPerspective
  435. X    name: iso_0_30_lowres_57to63
  436. X    azimuth: 0
  437. X    inclination: 30
  438. X    scale: 4
  439. X    minimumheight: 57
  440. X    maximumheight: 63
  441. X  - class: org.dynmap.hdmap.IsoHDPerspective
  442. X    name: iso_180_30_lowres_1to16
  443. X    azimuth: 180
  444. X    inclination: 30
  445. X    scale: 4
  446. X    minimumheight: 1
  447. X    maximumheight: 16
  448. X  - class: org.dynmap.hdmap.IsoHDPerspective
  449. X    name: iso_180_30_lowres_15to22
  450. X    azimuth: 180
  451. X    inclination: 30
  452. X    scale: 4
  453. X    minimumheight: 15
  454. X    maximumheight: 22
  455. X  - class: org.dynmap.hdmap.IsoHDPerspective
  456. X    name: iso_180_30_lowres_21to28
  457. X    azimuth: 180
  458. X    inclination: 30
  459. X    scale: 4
  460. X    minimumheight: 21
  461. X    maximumheight: 28
  462. X  - class: org.dynmap.hdmap.IsoHDPerspective
  463. X    name: iso_180_30_lowres_27to34
  464. X    azimuth: 180
  465. X    inclination: 30
  466. X    scale: 4
  467. X    minimumheight: 27
  468. X    maximumheight: 34
  469. X  - class: org.dynmap.hdmap.IsoHDPerspective
  470. X    name: iso_180_30_lowres_33to40
  471. X    azimuth: 180
  472. X    inclination: 30
  473. X    scale: 4
  474. X    minimumheight: 33
  475. X    maximumheight: 40
  476. X  - class: org.dynmap.hdmap.IsoHDPerspective
  477. X    name: iso_180_30_lowres_39to46
  478. X    azimuth: 180
  479. X    inclination: 30
  480. X    scale: 4
  481. X    minimumheight: 39
  482. X    maximumheight: 46
  483. X  - class: org.dynmap.hdmap.IsoHDPerspective
  484. X    name: iso_180_30_lowres_45to52
  485. X    azimuth: 180
  486. X    inclination: 30
  487. X    scale: 4
  488. X    minimumheight: 45
  489. X    maximumheight: 52
  490. X  - class: org.dynmap.hdmap.IsoHDPerspective
  491. X    name: iso_180_30_lowres_51to58
  492. X    azimuth: 180
  493. X    inclination: 30
  494. X    scale: 4
  495. X    minimumheight: 51
  496. X    maximumheight: 58
  497. X  - class: org.dynmap.hdmap.IsoHDPerspective
  498. X    name: iso_180_30_lowres_57to63
  499. X    azimuth: 180
  500. X    inclination: 30
  501. X    scale: 4
  502. X    minimumheight: 57
  503. X    maximumheight: 63
  504. X  - class: org.dynmap.hdmap.IsoHDPerspective
  505. X    name: iso_180_30_lowres_63to73
  506. X    azimuth: 180
  507. X    inclination: 30
  508. X    scale: 4
  509. X    minimumheight: 63
  510. X    maximumheight: 73
  511. X  - class: org.dynmap.hdmap.IsoHDPerspective
  512. X    name: iso_180_30_lowres_71to77
  513. X    azimuth: 180
  514. X    inclination: 30
  515. X    scale: 4
  516. X    minimumheight: 71
  517. X    maximumheight: 77
  518. X  - class: org.dynmap.hdmap.IsoHDPerspective
  519. X    name: iso_180_30_lowres_76to81
  520. X    azimuth: 180
  521. X    inclination: 30
  522. X    scale: 4
  523. X    minimumheight: 76
  524. X    maximumheight: 81
  525. X  - class: org.dynmap.hdmap.IsoHDPerspective
  526. X    name: iso_180_90_lowres_1to16
  527. X    azimuth: 180
  528. X    inclination: 90
  529. X    scale: 4
  530. X    minimumheight: 1
  531. X    maximumheight: 16
  532. X  - class: org.dynmap.hdmap.IsoHDPerspective
  533. X    name: iso_180_90_lowres_15to22
  534. X    azimuth: 180
  535. X    inclination: 90
  536. X    scale: 4
  537. X    minimumheight: 15
  538. X    maximumheight: 22
  539. X  - class: org.dynmap.hdmap.IsoHDPerspective
  540. X    name: iso_180_90_lowres_21to28
  541. X    azimuth: 180
  542. X    inclination: 90
  543. X    scale: 4
  544. X    minimumheight: 21
  545. X    maximumheight: 28
  546. X  - class: org.dynmap.hdmap.IsoHDPerspective
  547. X    name: iso_180_90_lowres_27to34
  548. X    azimuth: 180
  549. X    inclination: 90
  550. X    scale: 4
  551. X    minimumheight: 27
  552. X    maximumheight: 34
  553. X  - class: org.dynmap.hdmap.IsoHDPerspective
  554. X    name: iso_180_90_lowres_33to40
  555. X    azimuth: 180
  556. X    inclination: 90
  557. X    scale: 4
  558. X    minimumheight: 33
  559. X    maximumheight: 40
  560. X  - class: org.dynmap.hdmap.IsoHDPerspective
  561. X    name: iso_180_90_lowres_39to46
  562. X    azimuth: 180
  563. X    inclination: 90
  564. X    scale: 4
  565. X    minimumheight: 39
  566. X    maximumheight: 46
  567. X  - class: org.dynmap.hdmap.IsoHDPerspective
  568. X    name: iso_180_90_lowres_45to52
  569. X    azimuth: 180
  570. X    inclination: 90
  571. X    scale: 4
  572. X    minimumheight: 45
  573. X    maximumheight: 52
  574. X  - class: org.dynmap.hdmap.IsoHDPerspective
  575. X    name: iso_180_90_lowres_51to58
  576. X    azimuth: 180
  577. X    inclination: 90
  578. X    scale: 4
  579. X    minimumheight: 51
  580. X    maximumheight: 58
  581. X  - class: org.dynmap.hdmap.IsoHDPerspective
  582. X    name: iso_180_90_lowres_57to63
  583. X    azimuth: 180
  584. X    inclination: 90
  585. X    scale: 4
  586. X    minimumheight: 57
  587. X    maximumheight: 63
  588. X  - class: org.dynmap.hdmap.IsoHDPerspective
  589. X    name: iso_180_90_lowres_63to73
  590. X    azimuth: 180
  591. X    inclination: 90
  592. X    scale: 4
  593. X    minimumheight: 63
  594. X    maximumheight: 73
  595. X  - class: org.dynmap.hdmap.IsoHDPerspective
  596. X    name: iso_180_90_lowres_71to77
  597. X    azimuth: 180
  598. X    inclination: 90
  599. X    scale: 4
  600. X    minimumheight: 71
  601. X    maximumheight: 77
  602. X  - class: org.dynmap.hdmap.IsoHDPerspective
  603. X    name: iso_180_90_lowres_76to81
  604. X    azimuth: 180
  605. X    inclination: 90
  606. X    scale: 4
  607. X    minimumheight: 76
  608. X    maximumheight: 81
  609. X  - class: org.dynmap.hdmap.IsoHDPerspective
  610. X    name: iso_180_90_lowres_80to87
  611. X    azimuth: 180
  612. X    inclination: 90
  613. X    scale: 4
  614. X    minimumheight: 80
  615. X    maximumheight: 87
  616. X  - class: org.dynmap.hdmap.IsoHDPerspective
  617. X    name: iso_180_90_lowres_76to83
  618. X    azimuth: 180
  619. X    inclination: 90
  620. X    scale: 4
  621. X    minimumheight: 76
  622. X    maximumheight: 83
  623. X  - class: org.dynmap.hdmap.IsoHDPerspective
  624. X    name: iso_180_90_lowres_72to79
  625. X    azimuth: 180
  626. X    inclination: 90
  627. X    scale: 4
  628. X    minimumheight: 72
  629. X    maximumheight: 79
  630. X  - class: org.dynmap.hdmap.IsoHDPerspective
  631. X    name: iso_180_90_lowres_68to75
  632. X    azimuth: 180
  633. X    inclination: 90
  634. X    scale: 4
  635. X    minimumheight: 68
  636. X    maximumheight: 75
  637. X  - class: org.dynmap.hdmap.IsoHDPerspective
  638. X    name: iso_180_90_lowres_64to71
  639. X    azimuth: 180
  640. X    inclination: 90
  641. X    scale: 4
  642. X    minimumheight: 64
  643. X    maximumheight: 71
  644. X  - class: org.dynmap.hdmap.IsoHDPerspective
  645. X    name: iso_180_90_lowres_60to67
  646. X    azimuth: 180
  647. X    inclination: 90
  648. X    scale: 4
  649. X    minimumheight: 60
  650. X    maximumheight: 67
  651. X  - class: org.dynmap.hdmap.IsoHDPerspective
  652. X    name: iso_180_90_lowres_56to63
  653. X    azimuth: 180
  654. X    inclination: 90
  655. X    scale: 4
  656. X    minimumheight: 56
  657. X    maximumheight: 63
  658. X  - class: org.dynmap.hdmap.IsoHDPerspective
  659. X    name: iso_180_90_lowres_52to59
  660. X    azimuth: 180
  661. X    inclination: 90
  662. X    scale: 4
  663. X    minimumheight: 52
  664. X    maximumheight: 59
  665. X  - class: org.dynmap.hdmap.IsoHDPerspective
  666. X    name: iso_180_90_lowres_48to53
  667. X    azimuth: 180
  668. X    inclination: 90
  669. X    scale: 4
  670. X    minimumheight: 48
  671. X    maximumheight: 53
  672. X  - class: org.dynmap.hdmap.IsoHDPerspective
  673. X    name: iso_180_90_lowres_44to49
  674. X    azimuth: 180
  675. X    inclination: 90
  676. X    scale: 4
  677. X    minimumheight: 44
  678. X    maximumheight: 49
  679. X  - class: org.dynmap.hdmap.IsoHDPerspective
  680. X    name: iso_180_90_lowres_40to47
  681. X    azimuth: 180
  682. X    inclination: 90
  683. X    scale: 4
  684. X    minimumheight: 40
  685. X    maximumheight: 47
  686. X  - class: org.dynmap.hdmap.IsoHDPerspective
  687. X    name: iso_180_90_lowres_36to43
  688. X    azimuth: 180
  689. X    inclination: 90
  690. X    scale: 4
  691. X    minimumheight: 36
  692. X    maximumheight: 43
  693. X  - class: org.dynmap.hdmap.IsoHDPerspective
  694. X    name: iso_180_90_lowres_32to39
  695. X    azimuth: 180
  696. X    inclination: 90
  697. X    scale: 4
  698. X    minimumheight: 32
  699. X    maximumheight: 39
  700. X  - class: org.dynmap.hdmap.IsoHDPerspective
  701. X    name: iso_180_90_lowres_28to35
  702. X    azimuth: 180
  703. X    inclination: 90
  704. X    scale: 4
  705. X    minimumheight: 28
  706. X    maximumheight: 35
  707. X  - class: org.dynmap.hdmap.IsoHDPerspective
  708. X    name: iso_180_90_lowres_24to31
  709. X    azimuth: 180
  710. X    inclination: 90
  711. X    scale: 4
  712. X    minimumheight: 24
  713. X    maximumheight: 31
  714. X  - class: org.dynmap.hdmap.IsoHDPerspective
  715. X    name: iso_180_90_lowres_20to27
  716. X    azimuth: 180
  717. X    inclination: 90
  718. X    scale: 4
  719. X    minimumheight: 20
  720. X    maximumheight: 27
  721. X  - class: org.dynmap.hdmap.IsoHDPerspective
  722. X    name: iso_180_90_lowres_16to23
  723. X    azimuth: 180
  724. X    inclination: 90
  725. X    scale: 4
  726. X    minimumheight: 16
  727. X    maximumheight: 23
  728. X  - class: org.dynmap.hdmap.IsoHDPerspective
  729. X    name: iso_180_90_lowres_12to19
  730. X    azimuth: 180
  731. X    inclination: 90
  732. X    scale: 4
  733. X    minimumheight: 12
  734. X    maximumheight: 19
  735. X  - class: org.dynmap.hdmap.IsoHDPerspective
  736. X    name: iso_180_90_lowres_8to15
  737. X    azimuth: 180
  738. X    inclination: 90
  739. X    scale: 4
  740. X    minimumheight: 8
  741. X    maximumheight: 15
  742. X  - class: org.dynmap.hdmap.IsoHDPerspective
  743. X    name: iso_180_90_lowres_4to11
  744. X    azimuth: 180
  745. X    inclination: 90
  746. X    scale: 4
  747. X    minimumheight: 4
  748. X    maximumheight: 11
  749. X  - class: org.dynmap.hdmap.IsoHDPerspective
  750. X    name: iso_180_90_lowres_1to7
  751. X    azimuth: 180
  752. X    inclination: 90
  753. X    scale: 4
  754. X    minimumheight: 1
  755. X    maximumheight: 7
  756. X  - class: org.dynmap.hdmap.IsoHDPerspective
  757. X    name: iso_170_20_lowres_80to87
  758. X    azimuth: 170
  759. X    inclination: 20
  760. X    scale: 4
  761. X    minimumheight: 80
  762. X    maximumheight: 87
  763. X  - class: org.dynmap.hdmap.IsoHDPerspective
  764. X    name: iso_170_20_lowres_1to7
  765. X    azimuth: 170
  766. X    inclination: 20
  767. X    scale: 4
  768. X    minimumheight: 1
  769. X    maximumheight: 7
  770. X  - class: org.dynmap.hdmap.IsoHDPerspective
  771. X    name: iso_170_20_lowres_76to83
  772. X    azimuth: 170
  773. X    inclination: 20
  774. X    scale: 4
  775. X    minimumheight: 76
  776. X    maximumheight: 83
  777. X  - class: org.dynmap.hdmap.IsoHDPerspective
  778. X    name: iso_170_20_lowres_72to79
  779. X    azimuth: 170
  780. X    inclination: 20
  781. X    scale: 4
  782. X    minimumheight: 72
  783. X    maximumheight: 79
  784. X  - class: org.dynmap.hdmap.IsoHDPerspective
  785. X    name: iso_170_20_lowres_68to75
  786. X    azimuth: 170
  787. X    inclination: 20
  788. X    scale: 4
  789. X    minimumheight: 68
  790. X    maximumheight: 75
  791. X  - class: org.dynmap.hdmap.IsoHDPerspective
  792. X    name: iso_170_20_lowres_64to71
  793. X    azimuth: 170
  794. X    inclination: 20
  795. X    scale: 4
  796. X    minimumheight: 64
  797. X    maximumheight: 71
  798. X  - class: org.dynmap.hdmap.IsoHDPerspective
  799. X    name: iso_170_20_lowres_60to67
  800. X    azimuth: 170
  801. X    inclination: 20
  802. X    scale: 4
  803. X    minimumheight: 60
  804. X    maximumheight: 67
  805. X  - class: org.dynmap.hdmap.IsoHDPerspective
  806. X    name: iso_170_20_lowres_56to63
  807. X    azimuth: 170
  808. X    inclination: 20
  809. X    scale: 4
  810. X    minimumheight: 56
  811. X    maximumheight: 63
  812. X  - class: org.dynmap.hdmap.IsoHDPerspective
  813. X    name: iso_170_20_lowres_52to59
  814. X    azimuth: 170
  815. X    inclination: 20
  816. X    scale: 4
  817. X    minimumheight: 52
  818. X    maximumheight: 59
  819. X  - class: org.dynmap.hdmap.IsoHDPerspective
  820. X    name: iso_170_20_lowres_48to53
  821. X    azimuth: 170
  822. X    inclination: 20
  823. X    scale: 4
  824. X    minimumheight: 48
  825. X    maximumheight: 53
  826. X  - class: org.dynmap.hdmap.IsoHDPerspective
  827. X    name: iso_170_20_lowres_44to49
  828. X    azimuth: 170
  829. X    inclination: 20
  830. X    scale: 4
  831. X    minimumheight: 44
  832. X    maximumheight: 49
  833. X  - class: org.dynmap.hdmap.IsoHDPerspective
  834. X    name: iso_170_20_lowres_40to47
  835. X    azimuth: 170
  836. X    inclination: 20
  837. X    scale: 4
  838. X    minimumheight: 40
  839. X    maximumheight: 47
  840. X  - class: org.dynmap.hdmap.IsoHDPerspective
  841. X    name: iso_170_20_lowres_36to43
  842. X    azimuth: 170
  843. X    inclination: 20
  844. X    scale: 4
  845. X    minimumheight: 36
  846. X    maximumheight: 43
  847. X  - class: org.dynmap.hdmap.IsoHDPerspective
  848. X    name: iso_170_20_lowres_32to39
  849. X    azimuth: 170
  850. X    inclination: 20
  851. X    scale: 4
  852. X    minimumheight: 32
  853. X    maximumheight: 39
  854. X  - class: org.dynmap.hdmap.IsoHDPerspective
  855. X    name: iso_170_20_lowres_28to35
  856. X    azimuth: 170
  857. X    inclination: 20
  858. X    scale: 4
  859. X    minimumheight: 28
  860. X    maximumheight: 35
  861. X  - class: org.dynmap.hdmap.IsoHDPerspective
  862. X    name: iso_170_20_lowres_24to31
  863. X    azimuth: 170
  864. X    inclination: 20
  865. X    scale: 4
  866. X    minimumheight: 24
  867. X    maximumheight: 31
  868. X  - class: org.dynmap.hdmap.IsoHDPerspective
  869. X    name: iso_170_20_lowres_20to27
  870. X    azimuth: 170
  871. X    inclination: 20
  872. X    scale: 4
  873. X    minimumheight: 20
  874. X    maximumheight: 27
  875. X  - class: org.dynmap.hdmap.IsoHDPerspective
  876. X    name: iso_170_20_lowres_16to23
  877. X    azimuth: 170
  878. X    inclination: 20
  879. X    scale: 4
  880. X    minimumheight: 16
  881. X    maximumheight: 23
  882. X  - class: org.dynmap.hdmap.IsoHDPerspective
  883. X    name: iso_170_20_lowres_12to19
  884. X    azimuth: 170
  885. X    inclination: 20
  886. X    scale: 4
  887. X    minimumheight: 12
  888. X    maximumheight: 19
  889. X  - class: org.dynmap.hdmap.IsoHDPerspective
  890. X    name: iso_170_20_lowres_8to15
  891. X    azimuth: 170
  892. X    inclination: 20
  893. X    scale: 4
  894. X    minimumheight: 8
  895. X    maximumheight: 15
  896. X  - class: org.dynmap.hdmap.IsoHDPerspective
  897. X    name: iso_170_20_lowres_4to11
  898. X    azimuth: 170
  899. X    inclination: 20
  900. X    scale: 4
  901. X    minimumheight: 4
  902. X    maximumheight: 11
  903. X  - class: org.dynmap.hdmap.IsoHDPerspective
  904. X    name: iso_170_20_lowres_1to7
  905. X    azimuth: 170
  906. X    inclination: 20
  907. X    scale: 4
  908. X    minimumheight: 1
  909. X    maximumheight: 7
  910. X  - class: org.dynmap.hdmap.IsoHDPerspective
  911. X    name: iso_170_60_lowres_80to87
  912. X    azimuth: 170
  913. X    inclination: 60
  914. X    scale: 4
  915. X    minimumheight: 80
  916. X    maximumheight: 87
  917. X  - class: org.dynmap.hdmap.IsoHDPerspective
  918. X    name: iso_170_60_lowres_76to83
  919. X    azimuth: 170
  920. X    inclination: 60
  921. X    scale: 4
  922. X    minimumheight: 76
  923. X    maximumheight: 83
  924. X  - class: org.dynmap.hdmap.IsoHDPerspective
  925. X    name: iso_170_60_lowres_72to79
  926. X    azimuth: 170
  927. X    inclination: 60
  928. X    scale: 4
  929. X    minimumheight: 72
  930. X    maximumheight: 79
  931. X  - class: org.dynmap.hdmap.IsoHDPerspective
  932. X    name: iso_170_60_lowres_68to75
  933. X    azimuth: 170
  934. X    inclination: 60
  935. X    scale: 4
  936. X    minimumheight: 68
  937. X    maximumheight: 75
  938. X  - class: org.dynmap.hdmap.IsoHDPerspective
  939. X    name: iso_170_60_lowres_64to71
  940. X    azimuth: 170
  941. X    inclination: 60
  942. X    scale: 4
  943. X    minimumheight: 64
  944. X    maximumheight: 71
  945. X  - class: org.dynmap.hdmap.IsoHDPerspective
  946. X    name: iso_170_60_lowres_60to67
  947. X    azimuth: 170
  948. X    inclination: 60
  949. X    scale: 4
  950. X    minimumheight: 60
  951. X    maximumheight: 67
  952. X  - class: org.dynmap.hdmap.IsoHDPerspective
  953. X    name: iso_170_60_lowres_56to63
  954. X    azimuth: 170
  955. X    inclination: 60
  956. X    scale: 4
  957. X    minimumheight: 56
  958. X    maximumheight: 63
  959. X  - class: org.dynmap.hdmap.IsoHDPerspective
  960. X    name: iso_170_60_lowres_52to59
  961. X    azimuth: 170
  962. X    inclination: 60
  963. X    scale: 4
  964. X    minimumheight: 52
  965. X    maximumheight: 59
  966. X  - class: org.dynmap.hdmap.IsoHDPerspective
  967. X    name: iso_170_60_lowres_48to53
  968. X    azimuth: 170
  969. X    inclination: 60
  970. X    scale: 4
  971. X    minimumheight: 48
  972. X    maximumheight: 53
  973. X  - class: org.dynmap.hdmap.IsoHDPerspective
  974. X    name: iso_170_60_lowres_44to49
  975. X    azimuth: 170
  976. X    inclination: 60
  977. X    scale: 4
  978. X    minimumheight: 44
  979. X    maximumheight: 49
  980. X  - class: org.dynmap.hdmap.IsoHDPerspective
  981. X    name: iso_170_60_lowres_40to47
  982. X    azimuth: 170
  983. X    inclination: 60
  984. X    scale: 4
  985. X    minimumheight: 40
  986. X    maximumheight: 47
  987. X  - class: org.dynmap.hdmap.IsoHDPerspective
  988. X    name: iso_170_60_lowres_36to43
  989. X    azimuth: 170
  990. X    inclination: 60
  991. X    scale: 4
  992. X    minimumheight: 36
  993. X    maximumheight: 43
  994. X  - class: org.dynmap.hdmap.IsoHDPerspective
  995. X    name: iso_170_60_lowres_32to39
  996. X    azimuth: 170
  997. X    inclination: 60
  998. X    scale: 4
  999. X    minimumheight: 32
  1000. X    maximumheight: 39
  1001. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1002. X    name: iso_170_60_lowres_28to35
  1003. X    azimuth: 170
  1004. X    inclination: 60
  1005. X    scale: 4
  1006. X    minimumheight: 28
  1007. X    maximumheight: 35
  1008. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1009. X    name: iso_170_60_lowres_24to31
  1010. X    azimuth: 170
  1011. X    inclination: 60
  1012. X    scale: 4
  1013. X    minimumheight: 24
  1014. X    maximumheight: 31
  1015. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1016. X    name: iso_170_60_lowres_20to27
  1017. X    azimuth: 170
  1018. X    inclination: 60
  1019. X    scale: 4
  1020. X    minimumheight: 20
  1021. X    maximumheight: 27
  1022. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1023. X    name: iso_170_60_lowres_16to23
  1024. X    azimuth: 170
  1025. X    inclination: 60
  1026. X    scale: 4
  1027. X    minimumheight: 16
  1028. X    maximumheight: 23
  1029. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1030. X    name: iso_170_60_lowres_12to19
  1031. X    azimuth: 170
  1032. X    inclination: 60
  1033. X    scale: 4
  1034. X    minimumheight: 12
  1035. X    maximumheight: 19
  1036. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1037. X    name: iso_170_60_lowres_8to15
  1038. X    azimuth: 170
  1039. X    inclination: 60
  1040. X    scale: 4
  1041. X    minimumheight: 8
  1042. X    maximumheight: 15
  1043. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1044. X    name: iso_170_60_lowres_4to11
  1045. X    azimuth: 170
  1046. X    inclination: 60
  1047. X    scale: 4
  1048. X    minimumheight: 4
  1049. X    maximumheight: 11
  1050. X  - class: org.dynmap.hdmap.IsoHDPerspective
  1051. X    name: iso_170_60_lowres_1to7
  1052. X    azimuth: 170
  1053. X    inclination: 60
  1054. X    scale: 4
  1055. X    minimumheight: 1
  1056. X    maximumheight: 7
  1057. END-of-custom-perspectives.txt
  1058. echo x - custom-shaders.txt
  1059. sed 's/^X//' >custom-shaders.txt << 'END-of-custom-shaders.txt'
  1060. X# The user is free to add new and custom shaders here, including replacements for standard ones
  1061. X# Dynmap's install will not overwrite it
  1062. Xshaders:
  1063. X
  1064. X  # Modified Standard texture cave view shader
  1065. X  - class: org.dynmap.hdmap.TexturePackHDCaveShader
  1066. X    name: newtexture-cave
  1067. X    texturepack: standard
  1068. X  # max-sky-light: 14
  1069. X  # min-emitted-light: 1
  1070. END-of-custom-shaders.txt
  1071. echo x - templates/custom-nether-lowres.txt
  1072. sed 's/^X//' >templates/custom-nether-lowres.txt << 'END-of-templates/custom-nether-lowres.txt'
  1073. Xversion: 0.24
  1074. X#
  1075. X# Default template for "Nether" environment worlds (deftemplatesuffix="lowres")
  1076. X# Uses the HDMap renderer with view from the SE with the "lowres" resolution (4 pixels per block edge)
  1077. X#
  1078. X#  This file MAY need to be replaced during an upgrade - rename file to 'custom-nether-lowres.txt' if you wish to customize it
  1079. X#
  1080. Xtemplates:
  1081. X  # Nether world template (HDMap lowres)
  1082. X  nether-lowres:
  1083. X    enabled: true
  1084. X    # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  1085. X    extrazoomout: 2
  1086. X    #center:
  1087. X    #  x: 0
  1088. X    #  y: 64
  1089. X    #  z: 0
  1090. X    maps:
  1091. X      - class: org.dynmap.hdmap.HDMap
  1092. X        name: flat
  1093. X        title: "Flat"
  1094. X        prefix: flat
  1095. X        perspective: iso_S_90_lowres
  1096. X        shader: stdtexture
  1097. X        lighting: nethershadows
  1098. X        # Map background color (day or night)
  1099. X        background: "#300806"
  1100. X        # Adjust extra zoom in levels - default is 2
  1101. X        mapzoomin: 2
  1102. X      - class: org.dynmap.hdmap.HDMap
  1103. X        name: nether
  1104. X        title: "Surface"
  1105. X        prefix: nt
  1106. X        perspective: iso_SE_60_lowres
  1107. X        shader: stdtexture
  1108. X        lighting: nethershadows
  1109. X        # Map background color (day or night)
  1110. X        background: "#300806"
  1111. X        # Adjust extra zoom in levels - default is 2
  1112. X        mapzoomin: 2
  1113. X      - class: org.dynmap.hdmap.HDMap
  1114. X        name: netherLit
  1115. X        title: "Lit Surface"
  1116. X        prefix: nlt
  1117. X        perspective: iso_SE_60_lowres
  1118. X        shader: lit-cave
  1119. X        lighting: brightnight
  1120. X        # Map background color (day or night)
  1121. X        background: "#300806"
  1122. X        # Adjust extra zoom in levels - default is 2
  1123. X        mapzoomin: 2
  1124. END-of-templates/custom-nether-lowres.txt
  1125. echo x - templates/custom-nether-vlowres.txt
  1126. sed 's/^X//' >templates/custom-nether-vlowres.txt << 'END-of-templates/custom-nether-vlowres.txt'
  1127. Xversion: 0.24
  1128. X#
  1129. X# Default template for "Nether" environment worlds (deftemplatesuffix="vlowres")
  1130. X# Uses the HDMap renderer with view from the SE with the "vlowres" resolution (2 pixels per block edge)
  1131. X#
  1132. X#  This file MAY need to be replaced during an upgrade - rename file to 'custom-nether-vlowres.txt' if you wish to customize it
  1133. X#
  1134. Xtemplates:
  1135. X  # Nether world template (HDMap vlowres)
  1136. X  nether-vlowres:
  1137. X    enabled: true
  1138. X    # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  1139. X    extrazoomout: 2
  1140. X    #center:
  1141. X    #  x: 0
  1142. X    #  y: 64
  1143. X    #  z: 0
  1144. X    maps:
  1145. X      - class: org.dynmap.hdmap.HDMap
  1146. X        name: flat
  1147. X        title: "Flat"
  1148. X        prefix: flat
  1149. X        perspective: iso_S_90_vlowres
  1150. X        shader: stdtexture
  1151. X        lighting: nethershadows
  1152. X        # Map background color (day or night)
  1153. X        background: "#300806"
  1154. X        # Adjust extra zoom in levels - default is 2
  1155. X        mapzoomin: 2
  1156. X      - class: org.dynmap.hdmap.HDMap
  1157. X        name: nether
  1158. X        title: "Surface"
  1159. X        prefix: nt
  1160. X        perspective: iso_SE_60_vlowres
  1161. X        shader: stdtexture
  1162. X        lighting: nethershadows
  1163. X        # Map background color (day or night)
  1164. X        background: "#300806"
  1165. X        # Adjust extra zoom in levels - default is 2
  1166. X        mapzoomin: 2
  1167. X      - class: org.dynmap.hdmap.HDMap
  1168. X        name: netherLit
  1169. X        title: "Lit Surface"
  1170. X        prefix: nlt
  1171. X        perspective: iso_SE_60_vlowres
  1172. X        shader: lit-cave
  1173. X        lighting: brightnight
  1174. X        # Map background color (day or night)
  1175. X        background: "#300806"
  1176. X        # Adjust extra zoom in levels - default is 2
  1177. X        mapzoomin: 2
  1178. END-of-templates/custom-nether-vlowres.txt
  1179. echo x - templates/custom-normal-lowres.txt
  1180. sed 's/^X//' >templates/custom-normal-lowres.txt << 'END-of-templates/custom-normal-lowres.txt'
  1181. Xversion: 0.24
  1182. X#
  1183. X# Default template for "Normal" environment worlds (deftemplatesuffix="lowres")
  1184. X# Uses the HDMap renderer with view from the SE with the "lowres" resolution (4 pixels per block edge)
  1185. X#
  1186. X#  This file MAY need to be replaced during an upgrade - rename file to 'custom-normal-lowres.txt' if you wish to customize it
  1187. X#
  1188. Xtemplates:
  1189. X  # Template for normal world (HDMap lowres)
  1190. X  normal-lowres:
  1191. X    enabled: true
  1192. X    # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  1193. X    extrazoomout: 2
  1194. X    #center:
  1195. X    #  x: 0
  1196. X    #  y: 64
  1197. X    #  z: 0
  1198. 's/^X//' >templates/custom-normal-vlowres.txt << 'END-of-templates/custom-normal-vlowres.txt'
  1199. Xversion: 0.24
  1200. X#
  1201. X# Default template for "Normal" environment worlds (deftemplatesuffix="vlowres")
  1202. X# Uses the HDMap renderer with view from the SE with the "vlowres" resolution (2 pixels per block edge)
  1203. X#
  1204. X#  This file MAY need to be replaced during an upgrade - rename file to 'custom-normal-vlowres.txt' if you wish to customize it
  1205. X#
  1206. Xtemplates:
  1207. X  # Template for normal world (HDMap vlowres)
  1208. X  normal-vlowres:
  1209. X    enabled: true
  1210. X    # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  1211. X    extrazoomout: 2
  1212. X    #center:
  1213. X    #  x: 0
  1214. X    #  y: 64
  1215. X    #  z: 0
  1216. X    maps:
  1217. X      - class: org.dynmap.hdmap.HDMap
  1218. X        name: flat
  1219. X        title: "Flat"
  1220. X        prefix: flat
  1221. X        perspective: iso_S_90_vlowres
  1222. X        shader: stdtexture
  1223. X        lighting: shadows
  1224. X        # Adjust extra zoom in levels - default is 2
  1225. X        mapzoomin: 2
  1226. X      - class: org.dynmap.hdmap.HDMap
  1227. X        name: surface
  1228. X        title: "Surface"
  1229. X        prefix: t
  1230. X        perspective: iso_SE_30_vlowres
  1231. X        shader: stdtexture
  1232. X        lighting: shadows
  1233. X        # Adjust extra zoom in levels - default is 2
  1234. X        mapzoomin: 2
  1235. X      - class: org.dynmap.hdmap.HDMap
  1236. X        name: cave
  1237. X        title: "Cave"
  1238. X        prefix: ct
  1239. X        perspective: iso_SE_30_vlowres
  1240. X        shader: cave-noplants
  1241. X        lighting: default
  1242. X        # Adjust extra zoom in levels - default is 2
  1243. X        mapzoomin: 2
  1244. X      - class: org.dynmap.hdmap.HDMap
  1245. X        name: litcave
  1246. X        title: "Lit Cave"
  1247. X        prefix: lct
  1248. X        perspective: iso_SE_30_vlowres
  1249. X        shader: newtexture-cave
  1250. X        lighting: nethershadows
  1251. X        # Adjust extra zoom in levels - default is 2
  1252. X        mapzoomin: 2
  1253. END-of-templates/custom-normal-vlowres.txt
  1254. echo x - templates/custom-twilight-lowres.txt
  1255. sed 's/^X//' >templates/custom-twilight-lowres.txt << 'END-of-templates/custom-twilight-lowres.txt'
  1256. Xversion: 0.24
  1257. X#
  1258. X# Default template for "Normal" environment worlds (deftemplatesuffix="lowres")
  1259. X# Uses the HDMap renderer with view from the SE with the "lowres" resolution (4 pixels per block edge)
  1260. X#
  1261. X#  This file MAY need to be replaced during an upgrade - rename file to 'custom-normal-lowres.txt' if you wish to customize it
  1262. X#
  1263. Xtemplates:
  1264. X  # Template for normal world (HDMap lowres)
  1265. X  twilight-lowres:
  1266. X    enabled: true
  1267. X    # Number of extra zoom-out levels for world (each level is twice as big as the previous one)
  1268. X    extrazoomout: 2
  1269. X    #center:
  1270. X    #  x: 0
  1271. X    #  y: 64
  1272. X    #  z: 0
  1273. X    maps:
  1274. X    -   class: org.dynmap.hdmap.HDMap
  1275. X        name: Nsurface
  1276. X        title: North Surface - day shadows
  1277. X        prefix: nat
  1278. X        perspective: iso_170_60_lowres
  1279. X        shader: stdtexture
  1280. X        lighting: twilightshadows
  1281. X        mapzoomin: 3
  1282. X    -   class: org.dynmap.hdmap.HDMap
  1283. X        name: flat
  1284. X        title: Flat - dark night
  1285. X        prefix: flat
  1286. X        perspective: iso_S_90_lowres
  1287. X        shader: stdtexture
  1288. X        lighting: brightnight
  1289. X        mapzoomin: 3
  1290. X    -   class: org.dynmap.hdmap.HDMap
  1291. X        name: surface
  1292. X        title: Surface - day shadows
  1293. X        prefix: t
  1294. X        perspective: iso_SE_60_lowres
  1295. X        shader: stdtexture
  1296. X        lighting: twilightshadows
  1297. X        mapzoomin: 3
  1298. X    -   class: org.dynmap.hdmap.HDMap
  1299. X        name: night
  1300. X        title: Surface - night
  1301. X        prefix: nt
  1302. X        perspective: iso_SE_60_lowres
  1303. X        shader: stdtexture
  1304. X        lighting: night
  1305. X        mapzoomin: 3
  1306. X    -   class: org.dynmap.hdmap.HDMap
  1307. X        name: cave
  1308. X        title: Cave, default
  1309. X        prefix: ct
  1310. X        perspective: iso_170_20_lowres
  1311. X        shader: cave-noplants
  1312. X        lighting: default
  1313. X        mapzoomin: 3
  1314. X    -   class: org.dynmap.hdmap.HDMap
  1315. X        name: Litcaves
  1316. X        title: Lit caves - cave
  1317. X        prefix: lct
  1318. X        perspective: iso_170_20_lowres
  1319. X        shader: newtexture-cave
  1320. X        lighting: cave
  1321. X        mapzoomin: 3
  1322. X    -   class: org.dynmap.hdmap.HDMap
  1323. X        name: m_170_60_15_44_49
  1324. X        title: Lit caves - m_170_60_15_44_49
  1325. X        prefix: m_170_60_15_44_49
  1326. X        perspective: iso_170_60_lowres_44to49
  1327. X        shader: newtexture-cave
  1328. X        lighting: l_normShadow_13
  1329. X        mapzoomin: 3
  1330. X    -   class: org.dynmap.hdmap.HDMap
  1331. X        name: m_170_60_15_40_47
  1332. X        title: Lit caves - m_170_60_15_40_47
  1333. X        prefix: m_170_60_15_40_47
  1334. X        perspective: iso_170_60_lowres_40to47
  1335. X        shader: newtexture-cave
  1336. X        lighting: l_normShadow_13
  1337. X        mapzoomin: 3
  1338. X    -   class: org.dynmap.hdmap.HDMap
  1339. X        name: m_170_60_15_36_43
  1340. X        title: Lit caves - m_170_60_15_36_43
  1341. X        prefix: m_170_60_15_36_43
  1342. X        perspective: iso_170_60_lowres_36to43
  1343. X        shader: newtexture-cave
  1344. X        lighting: l_normShadow_13
  1345. X        mapzoomin: 3
  1346. X    -   class: org.dynmap.hdmap.HDMap
  1347. X        name: m_170_60_15_32_39
  1348. X        title: Lit caves - m_170_60_15_32_39
  1349. X        prefix: m_170_60_15_32_39
  1350. X        perspective: iso_170_60_lowres_32to39
  1351. X        shader: newtexture-cave
  1352. X        lighting: l_normShadow_13
  1353. X        mapzoomin: 3
  1354. X    -   class: org.dynmap.hdmap.HDMap
  1355. X        name: m_170_60_15_28_35
  1356. X        title: Lit caves - m_170_60_15_28_35
  1357. X        prefix: m_170_60_15_28_35
  1358. X        perspective: iso_170_60_lowres_28to35
  1359. X        shader: newtexture-cave
  1360. X        lighting: l_normShadow_13
  1361. X        mapzoomin: 3
  1362. X    -   class: org.dynmap.hdmap.HDMap
  1363. X        name: m_170_60_15_24_31
  1364. X        title: Lit caves - m_170_60_15_24_31
  1365. X        prefix: m_170_60_15_24_31
  1366. X        perspective: iso_170_60_lowres_24to31
  1367. X        shader: newtexture-cave
  1368. X        lighting: l_normShadow_13
  1369. X        mapzoomin: 3
  1370. X    -   class: org.dynmap.hdmap.HDMap
  1371. X        name: m_170_60_15_20_27
  1372. X        title: Lit caves - m_170_60_15_20_27
  1373. X        prefix: m_170_60_15_20_27
  1374. X        perspective: iso_170_60_lowres_20to27
  1375. X        shader: newtexture-cave
  1376. X        lighting: l_normShadow_13
  1377. X        mapzoomin: 3
  1378. X    -   class: org.dynmap.hdmap.HDMap
  1379. X        name: m_170_60_15_16_23
  1380. X        title: Lit caves - m_170_60_15_16_23
  1381. X        prefix: m_170_60_15_16_23
  1382. X        perspective: iso_170_60_lowres_16to23
  1383. X        shader: newtexture-cave
  1384. X        lighting: l_normShadow_13
  1385. X        mapzoomin: 3
  1386. X    -   class: org.dynmap.hdmap.HDMap
  1387. X        name: m_170_60_15_12_19
  1388. X        title: Lit caves - m_170_60_15_12_19
  1389. X        prefix: m_170_60_15_12_19
  1390. X        perspective: iso_170_60_lowres_12to19
  1391. X        shader: newtexture-cave
  1392. X        lighting: l_normShadow_13
  1393. X        mapzoomin: 3
  1394. X    -   class: org.dynmap.hdmap.HDMap
  1395. X        name: m_170_60_15_8_15
  1396. X        title: Lit caves - m_170_60_15_8_15
  1397. X        prefix: m_170_60_15_8_15
  1398. X        perspective: iso_170_60_lowres_8to15
  1399. X        shader: newtexture-cave
  1400. X        lighting: l_normShadow_13
  1401. X        mapzoomin: 3
  1402. X    -   class: org.dynmap.hdmap.HDMap
  1403. X        name: m_170_60_15_4_11
  1404. X        title: Lit caves - m_170_60_15_4_11
  1405. X        prefix: m_170_60_15_4_11
  1406. X        perspective: iso_170_60_lowres_4to11
  1407. X        shader: newtexture-cave
  1408. X        lighting: l_normShadow_13
  1409. X        mapzoomin: 3
  1410. X    -   class: org.dynmap.hdmap.HDMap
  1411. X        name: m_170_60_15_1_7
  1412. X        title: Lit caves - m_170_60_15_1_7
  1413. X        prefix: m_170_60_15_1_7
  1414. X        perspective: iso_170_60_lowres_1to7
  1415. X        shader: newtexture-cave
  1416. X        lighting: l_normShadow_13
  1417. X        mapzoomin: 3
  1418. X    -   class: org.dynmap.hdmap.HDMap
  1419. X        name: m_170_20_15_44_49
  1420. X        title: Lit caves - m_170_20_15_44_49
  1421. X        prefix: m_170_20_15_44_49
  1422. X        perspective: iso_170_20_lowres_44to49
  1423. X        shader: newtexture-cave
  1424. X        lighting: l_normShadow_13
  1425. X        mapzoomin: 3
  1426. X    -   class: org.dynmap.hdmap.HDMap
  1427. X        name: m_170_20_15_40_47
  1428. X        title: Lit caves - m_170_20_15_40_47
  1429. X        prefix: m_170_20_15_40_47
  1430. X        perspective: iso_170_20_lowres_40to47
  1431. X        shader: newtexture-cave
  1432. X        lighting: l_normShadow_13
  1433. X        mapzoomin: 3
  1434. X    -   class: org.dynmap.hdmap.HDMap
  1435. X        name: m_170_20_15_36_43
  1436. X        title: Lit caves - m_170_20_15_36_43
  1437. X        prefix: m_170_20_15_36_43
  1438. X        perspective: iso_170_20_lowres_36to43
  1439. X        shader: newtexture-cave
  1440. X        lighting: l_normShadow_13
  1441. X        mapzoomin: 3
  1442. X    -   class: org.dynmap.hdmap.HDMap
  1443. X        name: m_170_20_15_32_39
  1444. X        title: Lit caves - m_170_20_15_32_39
  1445. X        prefix: m_170_20_15_32_39
  1446. X        perspective: iso_170_20_lowres_32to39
  1447. X        shader: newtexture-cave
  1448. X        lighting: l_normShadow_13
  1449. X        mapzoomin: 3
  1450. X    -   class: org.dynmap.hdmap.HDMap
  1451. X        name: m_170_20_15_28_35
  1452. X        title: Lit caves - m_170_20_15_28_35
  1453. X        prefix: m_170_20_15_28_35
  1454. X        perspective: iso_170_20_lowres_28to35
  1455. X        shader: newtexture-cave
  1456. X        lighting: l_normShadow_13
  1457. X        mapzoomin: 3
  1458. X    -   class: org.dynmap.hdmap.HDMap
  1459. X        name: m_170_20_15_24_31
  1460. X        title: Lit caves - m_170_20_15_24_31
  1461. X        prefix: m_170_20_15_24_31
  1462. X        perspective: iso_170_20_lowres_24to31
  1463. X        shader: newtexture-cave
  1464. X        lighting: l_normShadow_13
  1465. X        mapzoomin: 3
  1466. X    -   class: org.dynmap.hdmap.HDMap
  1467. X        name: m_170_20_15_20_27
  1468. X        title: Lit caves - m_170_20_15_20_27
  1469. X        prefix: m_170_20_15_20_27
  1470. X        perspective: iso_170_20_lowres_20to27
  1471. X        shader: newtexture-cave
  1472. X        lighting: l_normShadow_13
  1473. X        mapzoomin: 3
  1474. X    -   class: org.dynmap.hdmap.HDMap
  1475. X        name: m_170_20_15_16_23
  1476. X        title: Lit caves - m_170_20_15_16_23
  1477. X        prefix: m_170_20_15_16_23
  1478. X        perspective: iso_170_20_lowres_16to23
  1479. X        shader: newtexture-cave
  1480. X        lighting: l_normShadow_13
  1481. X        mapzoomin: 3
  1482. X    -   class: org.dynmap.hdmap.HDMap
  1483. X        name: m_170_20_15_12_19
  1484. X        title: Lit caves - m_170_20_15_12_19
  1485. X        prefix: m_170_20_15_12_19
  1486. X        perspective: iso_170_20_lowres_12to19
  1487. X        shader: newtexture-cave
  1488. X        lighting: l_normShadow_13
  1489. X        mapzoomin: 3
  1490. X    -   class: org.dynmap.hdmap.HDMap
  1491. X        name: m_170_20_15_8_15
  1492. X        title: Lit caves - m_170_20_15_8_15
  1493. X        prefix: m_170_20_15_8_15
  1494. X        perspective: iso_170_20_lowres_8to15
  1495. X        shader: newtexture-cave
  1496. X        lighting: l_normShadow_13
  1497. X        mapzoomin: 3
  1498. X    -   class: org.dynmap.hdmap.HDMap
  1499. X        name: m_170_20_15_4_11
  1500. X        title: Lit caves - m_170_20_15_4_11
  1501. X        prefix: m_170_20_15_4_11
  1502. X        perspective: iso_170_20_lowres_4to11
  1503. X        shader: newtexture-cave
  1504. X        lighting: l_normShadow_13
  1505. X        mapzoomin: 3
  1506. X    -   class: org.dynmap.hdmap.HDMap
  1507. X        name: m_170_20_15_1_7
  1508. X        title: Lit caves - m_170_20_15_1_7
  1509. X        prefix: m_170_20_15_1_7
  1510. X        perspective: iso_170_20_lowres_1to7
  1511. X        shader: newtexture-cave
  1512. X        lighting: l_normShadow_13
  1513. X        mapzoomin: 3
  1514. END-of-templates/custom-twilight-lowres.txt
  1515. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement