| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- timer = 0.0
- cursor = false
- world = nil
- camera = nil
- up_pressed = false
- down_pressed = false
- left_pressed = false
- right_pressed = false
- camera_size = 1.0
- ovest = -10
- east = 10
- north = 10 / 1.6
- south = -10 / 1.6
- spd_x = 0
- spd_y = 0
- footsteps = nil
- speed = 3
- function spawn_terrain(x, y, dim)
- for t = 0, dim, 2 do
- World.spawn_unit(world, "box", Vector3(x + t, math.random(-3, 6) , 0))
- end
- end
- function spawn_suns(x, y, dim)
- for t=0, dim, 7 do
- World.spawn_unit(world, "sun", Vector3(x + t, math.random(-3, 6) , 0))
- end
- end
- function update_player(world, unit, dt)
- -- 3 m/s
- speed = speed + 0.1 * dt;
- if (Keyboard.button_pressed(Keyboard.w)) then up_pressed = true end
- if (Keyboard.button_pressed(Keyboard.s)) then down_pressed = true end
- if (Keyboard.button_released(Keyboard.w)) then up_pressed = false end
- if (Keyboard.button_released(Keyboard.s)) then down_pressed = false end
- if (Touch.pointer_down(1)) then up_pressed = true end
- if (Touch.pointer_up(1)) then up_pressed = false end
- contr = Unit.controller(unit)
- if up_pressed then
- spd_y = speed * dt
- end
- spd_x = speed * dt
- Controller.move(contr, Vector3(spd_x, spd_y, 0.0))
- spd_y = spd_y - 0.5 * dt
- -- local k = 0
- -- if spd_x > 0.0 then k = -1
- -- elseif spd_x < 0.0 then k = 1 end
- -- spd_x = spd_x + k * dt
- -- if spd_x < 0.001 and spd_x > -0.001 then spd_x = 0.0 end
- end
- function update_camera(player_unit, camera_unit, camera)
- local player_pos = Unit.world_position(player_unit, 0)
- Camera.set_local_position(camera, camera_unit, Vector3(Vector3.x(player_pos), -south / 2.5, 1))
- end
- function init()
- -- -- Set the title of the main window
- Window.set_title("Hello world!")
- -- Window.show_cursor(cursor)
- -- -- Window.minimize();
- package = Device.create_resource_package("level")
- ResourcePackage.load(package)
- ResourcePackage.flush(package)
- world = Device.create_world()
- -- Spawn camera
- camera_unit = World.spawn_unit(world, "camera")
- camera = Unit.camera(camera_unit, "camera")
- -- Spawn dragon
- dragon = World.spawn_unit(world, "bounce")
- spawn_suns(15, -2, 400)
- spawn_terrain(10, -3, 400)
- Camera.set_near_clip_distance(camera, 0.01)
- Camera.set_far_clip_distance(camera, 1000)
- Camera.set_projection_type(camera, Camera.ORTHOGRAPHIC)
- Camera.set_orthographic_metrics(camera, ovest, east, south, north)
- Camera.set_viewport_metrics(camera, 0, 0, 1000, 625)
- Camera.set_local_position(camera, camera_unit, Vector3(0, 0, 1))
- end
- function frame(dt)
- Device.update_world(world, dt)
- -- Update window's viewport
- win_w, win_h = Window.get_size()
- Camera.set_viewport_metrics(camera, 0, 0, win_w, win_h)
- -- Stop the engine when the 'ESC' key is released
- if Keyboard.button_released(Keyboard.ESCAPE) then
- Device.stop()
- end
- -- -- Spawn balls when SPACE pressed
- -- if Keyboard.button_pressed(Keyboard.SPACE) then
- -- World.spawn_unit(world, "b")
- -- end
- -- Play gunshoot on left click
- if Mouse.button_pressed(Mouse.LEFT) then
- World.play_sound(world, "sounds/gunshoot")
- end
- -- Print FPS on window title bar
- timer = timer + Device.last_delta_time()
- if (timer >= 5) then
- Window.set_title(1.0 / Device.last_delta_time())
- timer = 0.0
- end
- -- Update the player
- update_player(world, dragon, dt)
- -- Update the camera
- update_camera(dragon, camera_unit, camera)
- -- Render world
- Device.render_world(world, camera)
- end
- function shutdown()
- --World.destroy_unit(world, dragon)
- --World.destroy_unit(world, button)
- --World.destroy_unit(world, camera_unit)
-
- ResourcePackage.unload(package)
- Device.destroy_resource_package(package)
- Device.destroy_world(world)
- end
|