hexyz is tower defense game, and a lua library for dealing with hexagonal grids
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

296 lines
8.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
5 years ago
3 years ago
4 years ago
5 years ago
  1. -- all 4:3 aspect ratio
  2. local RESOLUTION_OPTIONS = {
  3. { width = 1440, height = 1080 },
  4. { width = 1400, height = 1050 }, -- seems like a good default one
  5. { width = 1280, height = 960 },
  6. { width = 1152, height = 864 },
  7. { width = 1024, height = 768 },
  8. { width = 960, height = 720 },
  9. { width = 832, height = 624 },
  10. { width = 800, height = 600 },
  11. }
  12. local DEFAULT_RESOLUTION = RESOLUTION_OPTIONS[2]
  13. SETTINGS = am.load_state("settings", "json") or {
  14. fullscreen = false,
  15. window_width = DEFAULT_RESOLUTION.width,
  16. window_height = DEFAULT_RESOLUTION.height,
  17. music_volume = 0.2,
  18. sfx_volume = 0.1,
  19. sound_on = true
  20. }
  21. win = am.window{
  22. width = SETTINGS.window_width,
  23. height = SETTINGS.window_height,
  24. title = "",
  25. mode = SETTINGS.fullscreen and "fullscreen" or "windowed",
  26. resizable = false,
  27. highdpi = true,
  28. letterbox = true,
  29. show_cursor = true,
  30. clear_color = vec4(0),
  31. }
  32. -- top right display types
  33. -- different scenes overlay different content in the top right of the screen
  34. -- f1 toggles what is displayed in the top right of the screen in some scenes
  35. TRDTS = {
  36. NOTHING = 0,
  37. CENTERED_EVENQ = 1,
  38. EVENQ = 2,
  39. HEX = 3,
  40. PLATFORM = 4,
  41. PERF = 5,
  42. SEED = 6,
  43. TILE = 7,
  44. }
  45. function make_top_right_display_node()
  46. return am.translate(win.right - 10, win.top - 15)
  47. ^ am.text("", "right", "top"):tag"top_right_display"
  48. end
  49. require "conf"
  50. -- library/standard code (ours)
  51. require "lib/random"
  52. require "lib/extra"
  53. require "lib/memory"
  54. require "lib/geometry"
  55. require "lib/gui"
  56. require "lib/color"
  57. require "lib/sound"
  58. require "lib/texture"
  59. -- other internal dependencies
  60. require "src/hexyz"
  61. require "src/grid"
  62. require "src/game"
  63. require "src/tower"
  64. require "src/mob"
  65. require "src/map-editor"
  66. require "src/entity"
  67. require "src/projectile"
  68. function main_action(self)
  69. if win:key_pressed("escape") then
  70. if game then
  71. unpause(self)
  72. else
  73. --win:close()
  74. end
  75. elseif win:key_pressed("f4") then
  76. win:close()
  77. elseif win:key_pressed("m") then
  78. toggle_mute()
  79. end
  80. if self"hex_backdrop" then
  81. self"hex_backdrop""rotate".angle = math.wrapf(self"hex_backdrop""rotate".angle - 0.005 * am.delta_time, math.pi*2)
  82. end
  83. end
  84. function main_scene(do_backdrop, do_logo)
  85. local group = am.group()
  86. if do_backdrop then
  87. local map = hex_hexagonal_map(30)
  88. local hex_backdrop = (am.rotate(0) ^ am.group()):tag"hex_backdrop"
  89. for i,_ in pairs(map) do
  90. for j,n in pairs(map[i]) do
  91. local color = map_elevation_to_color(n)
  92. color = color{a=color.a - 0.1}
  93. local node = am.translate(hex_to_pixel(vec2(i, j), vec2(HEX_SIZE)))
  94. ^ am.circle(vec2(0), HEX_SIZE, vec4(0), 6)
  95. node"circle":action(am.tween(0.6, { color = color }))
  96. hex_backdrop:append(node)
  97. end
  98. end
  99. group:append(hex_backdrop)
  100. else
  101. group:append(
  102. pack_texture_into_sprite(TEXTURES.CURTAIN, win.width, win.height)
  103. )
  104. end
  105. -- version/author info
  106. group:append(
  107. am.translate(win.right - 10, win.bottom + 10)
  108. ^ am.text(string.format("v%s, by %s", version, author), COLORS.WHITE, "right", "bottom")
  109. )
  110. if do_logo then
  111. local position = vec2(0, win.top - 20 - TEXTURES.LOGO.height/2)
  112. local logo =
  113. am.translate(position)
  114. ^ pack_texture_into_sprite(TEXTURES.LOGO, TEXTURES.LOGO.width, TEXTURES.LOGO.height)
  115. local selected = false
  116. logo:action(function(self)
  117. local mouse = win:mouse_position()
  118. if math.distance(mouse, position) < TEXTURES.LOGO.height/2 then
  119. selected = true
  120. self"sprite".color = vec4(1)
  121. if win:mouse_pressed("left") then
  122. vplay_sfx(math.random(1000000000))
  123. end
  124. else
  125. selected = false
  126. self"sprite".color = vec4(0.95)
  127. end
  128. end)
  129. group:append(logo)
  130. end
  131. local seed_textfield, get_seed_textfield_value = gui_make_textfield{
  132. position = vec2(win.left + 150, 50),
  133. dimensions = vec2(200, 40),
  134. max = 9,
  135. validate = function(string)
  136. return not string.match(string, "%D")
  137. end,
  138. }
  139. group:append(
  140. seed_textfield
  141. )
  142. local main_scene_options = {
  143. false,
  144. {
  145. texture = TEXTURES.NEW_GAME_HEX,
  146. action = function()
  147. game_init(nil, tonumber(get_seed_textfield_value()))
  148. end
  149. },
  150. false,
  151. false,
  152. false,
  153. {
  154. texture = TEXTURES.LOAD_GAME_HEX,
  155. action = function()
  156. local save = am.load_state("save", "json")
  157. if save then
  158. game_init(save)
  159. else
  160. gui_alert("no saved games")
  161. end
  162. end
  163. },
  164. {
  165. texture = TEXTURES.MAP_EDITOR_HEX,
  166. action = function()
  167. map_editor_init()
  168. end
  169. },
  170. false,
  171. {
  172. texture = TEXTURES.SETTINGS_HEX,
  173. action = function()
  174. gui_alert("not yet :)")
  175. end
  176. },
  177. {
  178. texture = TEXTURES.QUIT_HEX,
  179. action = function()
  180. win:close()
  181. end
  182. },
  183. false
  184. }
  185. group:append(make_scene_menu(main_scene_options, "main_menu"))
  186. group:action(main_action)
  187. return group
  188. end
  189. function make_scene_menu(scene_options, tag)
  190. -- calculate the dimensions of the whole grid
  191. local spacing = 150
  192. local grid_width = 6
  193. local grid_height = 2
  194. local hhs = hex_horizontal_spacing(spacing)
  195. local hvs = hex_vertical_spacing(spacing)
  196. local grid_pixel_width = grid_width * hhs
  197. local grid_pixel_height = grid_height * hvs
  198. local pixel_offset = vec2(-grid_pixel_width/2, win.bottom + hex_height(spacing)/2 + 20)
  199. -- generate a map of hexagons (the menu is made up of two rows of hexes) and populate their locations with buttons from the provided options
  200. local map = hex_rectangular_map(grid_width, grid_height, HEX_ORIENTATION.POINTY)
  201. local group = am.group():tag(tag or "menu")
  202. local option_index = 1
  203. for i,_ in pairs(map) do
  204. for j,_ in pairs(map[i]) do
  205. local hex = vec2(i, j)
  206. local position = hex_to_pixel(hex, vec2(spacing), HEX_ORIENTATION.POINTY)
  207. local option = scene_options[option_index]
  208. local texture = option and option.texture or TEXTURES.SHADED_HEX
  209. local color = option and COLORS.TRANSPARENT3 or vec4(0.3)
  210. local node = am.translate(position)
  211. ^ pack_texture_into_sprite(texture, texture.width, texture.height, color)
  212. hex_map_set(map, i, j, {
  213. node = node,
  214. option = option
  215. })
  216. local tile = hex_map_get(map, i, j)
  217. local selected = false
  218. node:action(function(self)
  219. local mouse = win:mouse_position()
  220. local hex_ = pixel_to_hex(mouse - pixel_offset, vec2(spacing), HEX_ORIENTATION.POINTY)
  221. if tile.option then
  222. if hex == hex_ then
  223. if not selected then
  224. play_sfx(SOUNDS.SELECT1)
  225. end
  226. selected = true
  227. tile.node"sprite".color = vec4(1)
  228. if win:mouse_pressed("left") then
  229. tile.option.action()
  230. end
  231. else
  232. selected = false
  233. tile.node"sprite".color = COLORS.TRANSPARENT3
  234. end
  235. end
  236. end)
  237. group:append(node)
  238. option_index = option_index + 1
  239. end
  240. end
  241. return am.translate(pixel_offset) ^ group
  242. end
  243. function switch_context(scene, action)
  244. win.scene:remove("menu")
  245. if action then
  246. win.scene:replace("context", scene:action(action):tag"context")
  247. else
  248. win.scene:replace("context", scene:tag"context")
  249. end
  250. end
  251. function init()
  252. init_entity_specs()
  253. switch_context(main_scene(true, true))
  254. end
  255. win.scene = am.group(am.group():tag"context")
  256. init()
  257. noglobals()