v/examples/hot_reload/bounce.v

90 lines
1.4 KiB
V
Raw Normal View History

2019-07-07 21:46:21 +02:00
// Build this example with
// v -live bounce.v
2019-07-07 21:46:21 +02:00
module main
import gx
import gl
import gg
import glfw
import time
struct Game {
mut:
2019-09-04 14:10:18 +02:00
gg &gg.GG
2019-07-07 21:46:21 +02:00
x int
y int
dy int
dx int
height int
width int
2019-09-04 14:10:18 +02:00
main_wnd &glfw.Window
2019-07-07 21:46:21 +02:00
draw_fn voidptr
}
fn main() {
glfw.init_glfw()
2019-07-07 21:46:21 +02:00
width := 600
height := 300
mut game := &Game{
gg: 0
dx: 2
dy: 2
height: height
width: width
2019-07-07 21:46:21 +02:00
}
window := glfw.create_window(glfw.WinCfg {
width: width
height: height
borderless: false
2019-07-07 21:46:21 +02:00
title: 'Hot code reloading demo'
ptr: game
always_on_top: true
})
2019-07-07 21:46:21 +02:00
//window.onkeydown(key_down)
game.main_wnd = window
2019-07-07 21:46:21 +02:00
window.make_context_current()
gg.init_gg()
2019-07-17 02:55:18 +02:00
game.gg = gg.new_context(gg.Cfg {
2019-07-07 21:46:21 +02:00
width: width
height: height
font_size: 20
use_ortho: true
})
2019-07-17 02:55:18 +02:00
println('Starting the game loop...')
2019-07-07 21:46:21 +02:00
go game.run()
for {
gl.clear()
gl.clear_color(255, 255, 255, 255)
game.draw()
window.swap_buffers()
glfw.wait_events()
}
}
const (
2019-10-20 09:19:37 +02:00
width = 50
2019-07-07 21:46:21 +02:00
)
[live]
2019-07-17 02:55:18 +02:00
fn (game &Game) draw() {
game.gg.draw_rect(game.x, game.y, width, width, gx.rgb(255, 0, 0))
2019-07-07 21:46:21 +02:00
}
2019-07-17 02:55:18 +02:00
fn (game mut Game) run() {
2019-07-07 21:46:21 +02:00
for {
2019-07-17 02:55:18 +02:00
game.x += game.dx
game.y += game.dy
2019-10-20 09:19:37 +02:00
if game.y >= game.height - width || game.y <= 0 {
2019-07-17 02:55:18 +02:00
game.dy = - game.dy
2019-07-07 21:46:21 +02:00
}
2019-10-20 09:19:37 +02:00
if game.x >= game.width - width || game.x <= 0 {
2019-07-17 02:55:18 +02:00
game.dx = - game.dx
2019-07-07 21:46:21 +02:00
}
// Refresh
2019-07-15 18:33:11 +02:00
time.sleep_ms(17)
2019-07-07 21:46:21 +02:00
glfw.post_empty_event()
}
}