2020-01-23 21:04:46 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-06-23 04:21:30 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
2019-08-09 07:28:37 +02:00
|
|
|
// that can be found in the LICENSE file.
|
2019-09-20 18:05:14 +02:00
|
|
|
module main
|
|
|
|
|
2020-06-03 22:08:55 +02:00
|
|
|
import os
|
2019-06-22 20:20:28 +02:00
|
|
|
import rand
|
|
|
|
import time
|
2019-08-09 07:28:37 +02:00
|
|
|
import gx
|
2020-06-04 16:05:12 +02:00
|
|
|
import gg
|
2020-06-01 12:57:04 +02:00
|
|
|
import sokol.sapp
|
2019-06-22 20:20:28 +02:00
|
|
|
|
|
|
|
const (
|
2020-10-18 08:48:13 +02:00
|
|
|
block_size = 20 // pixels
|
|
|
|
field_height = 20 // # of blocks
|
|
|
|
field_width = 10
|
|
|
|
tetro_size = 4
|
|
|
|
win_width = block_size * field_width
|
|
|
|
win_height = block_size * field_height
|
|
|
|
timer_period = 250 // ms
|
|
|
|
text_size = 24
|
2020-05-22 17:36:09 +02:00
|
|
|
limit_thickness = 3
|
2019-06-22 20:20:28 +02:00
|
|
|
)
|
|
|
|
|
2019-08-17 01:56:09 +02:00
|
|
|
const (
|
2019-08-09 17:53:34 +02:00
|
|
|
text_cfg = gx.TextCfg{
|
2020-10-18 08:48:13 +02:00
|
|
|
align: .left
|
|
|
|
size: text_size
|
|
|
|
color: gx.rgb(0, 0, 0)
|
2019-08-09 17:53:34 +02:00
|
|
|
}
|
2019-10-27 08:24:28 +01:00
|
|
|
over_cfg = gx.TextCfg{
|
2020-10-18 08:48:13 +02:00
|
|
|
align: .left
|
|
|
|
size: text_size
|
|
|
|
color: gx.white
|
2019-10-27 08:24:28 +01:00
|
|
|
}
|
2019-08-17 01:56:09 +02:00
|
|
|
)
|
2019-08-09 17:53:34 +02:00
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
const (
|
|
|
|
// Tetros' 4 possible states are encoded in binaries
|
2020-10-14 21:51:16 +02:00
|
|
|
// 0000 0 0000 0 0000 0 0000 0 0000 0 0000 0
|
|
|
|
// 0000 0 0000 0 0000 0 0000 0 0011 3 0011 3
|
|
|
|
// 0110 6 0010 2 0011 3 0110 6 0001 1 0010 2
|
|
|
|
// 0110 6 0111 7 0110 6 0011 3 0001 1 0010 2
|
|
|
|
// There is a special case 1111, since 15 can't be used.
|
2020-10-18 08:48:13 +02:00
|
|
|
b_tetros = [
|
2019-06-22 20:20:28 +02:00
|
|
|
[66, 66, 66, 66],
|
|
|
|
[27, 131, 72, 232],
|
|
|
|
[36, 231, 36, 231],
|
|
|
|
[63, 132, 63, 132],
|
|
|
|
[311, 17, 223, 74],
|
|
|
|
[322, 71, 113, 47],
|
|
|
|
[1111, 9, 1111, 9],
|
|
|
|
]
|
|
|
|
// Each tetro has its unique color
|
2020-10-18 08:48:13 +02:00
|
|
|
colors = [
|
|
|
|
gx.rgb(0, 0, 0), // unused ?
|
|
|
|
gx.rgb(255, 242, 0), // yellow quad
|
|
|
|
gx.rgb(174, 0, 255), // purple triple
|
|
|
|
gx.rgb(60, 255, 0), // green short topright
|
|
|
|
gx.rgb(255, 0, 0), // red short topleft
|
|
|
|
gx.rgb(255, 180, 31), // orange long topleft
|
|
|
|
gx.rgb(33, 66, 255), // blue long topright
|
|
|
|
gx.rgb(74, 198, 255), // lightblue longest
|
|
|
|
gx.rgb(0, 170, 170), // unused ?
|
2019-06-22 20:20:28 +02:00
|
|
|
]
|
2020-05-22 19:00:46 +02:00
|
|
|
background_color = gx.white
|
2020-10-18 08:48:13 +02:00
|
|
|
ui_color = gx.rgba(255, 0, 0, 210)
|
2019-06-22 20:20:28 +02:00
|
|
|
)
|
|
|
|
|
2020-04-01 23:49:11 +02:00
|
|
|
// TODO: type Tetro [tetro_size]struct{ x, y int }
|
2019-06-22 20:20:28 +02:00
|
|
|
struct Block {
|
2020-10-18 08:48:13 +02:00
|
|
|
mut:
|
2019-06-22 20:20:28 +02:00
|
|
|
x int
|
|
|
|
y int
|
|
|
|
}
|
|
|
|
|
2019-08-17 01:56:09 +02:00
|
|
|
enum GameState {
|
2020-10-18 08:48:13 +02:00
|
|
|
paused
|
|
|
|
running
|
|
|
|
gameover
|
2019-08-17 01:56:09 +02:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
struct Game {
|
2020-10-18 08:48:13 +02:00
|
|
|
mut:
|
2019-08-09 07:28:37 +02:00
|
|
|
// Score of the current game
|
2020-10-18 08:48:13 +02:00
|
|
|
score int
|
2020-10-02 15:42:05 +02:00
|
|
|
// Lines of the current game
|
2020-10-18 08:48:13 +02:00
|
|
|
lines int
|
2019-08-17 01:56:09 +02:00
|
|
|
// State of the current game
|
2020-10-18 08:48:13 +02:00
|
|
|
state GameState
|
2019-06-22 20:20:28 +02:00
|
|
|
// Position of the current tetro
|
2020-10-18 08:48:13 +02:00
|
|
|
pos_x int
|
|
|
|
pos_y int
|
2019-06-22 20:20:28 +02:00
|
|
|
// field[y][x] contains the color of the block with (x,y) coordinates
|
|
|
|
// "-1" border is to avoid bounds checking.
|
|
|
|
// -1 -1 -1 -1
|
|
|
|
// -1 0 0 -1
|
|
|
|
// -1 0 0 -1
|
|
|
|
// -1 -1 -1 -1
|
2020-10-18 08:48:13 +02:00
|
|
|
field [][]int
|
2019-06-22 20:20:28 +02:00
|
|
|
// TODO: tetro Tetro
|
2020-10-18 08:48:13 +02:00
|
|
|
tetro []Block
|
2019-06-26 16:39:40 +02:00
|
|
|
// TODO: tetros_cache []Tetro
|
2020-10-18 08:48:13 +02:00
|
|
|
tetros_cache []Block
|
2019-06-22 20:20:28 +02:00
|
|
|
// Index of the current tetro. Refers to its color.
|
2020-10-18 08:48:13 +02:00
|
|
|
tetro_idx int
|
2020-10-02 15:37:00 +02:00
|
|
|
// Idem for the next tetro
|
2020-10-18 08:48:13 +02:00
|
|
|
next_tetro_idx int
|
2019-06-22 20:20:28 +02:00
|
|
|
// Index of the rotation (0-3)
|
2020-10-18 08:48:13 +02:00
|
|
|
rotation_idx int
|
2019-06-22 20:20:28 +02:00
|
|
|
// gg context for drawing
|
2020-10-18 08:48:13 +02:00
|
|
|
gg &gg.Context = voidptr(0)
|
|
|
|
font_loaded bool
|
|
|
|
show_ghost bool
|
2020-06-03 18:52:44 +02:00
|
|
|
// frame/time counters:
|
2020-10-18 08:48:13 +02:00
|
|
|
frame int
|
|
|
|
frame_old int
|
|
|
|
frame_sw time.StopWatch = time.new_stopwatch({})
|
|
|
|
second_sw time.StopWatch = time.new_stopwatch({})
|
2020-06-03 15:45:26 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
const (
|
|
|
|
fpath = os.resource_abs_path('../assets/fonts/RobotoMono-Regular.ttf')
|
|
|
|
)
|
2020-06-03 22:08:55 +02:00
|
|
|
|
2020-06-03 15:45:26 +02:00
|
|
|
[if showfps]
|
2020-07-24 12:29:47 +02:00
|
|
|
fn (mut game Game) showfps() {
|
2020-06-03 15:45:26 +02:00
|
|
|
game.frame++
|
2020-10-18 08:48:13 +02:00
|
|
|
last_frame_ms := f64(game.frame_sw.elapsed().microseconds()) / 1000.0
|
|
|
|
ticks := f64(game.second_sw.elapsed().microseconds()) / 1000.0
|
2020-06-03 18:52:44 +02:00
|
|
|
if ticks > 999.0 {
|
2020-10-18 08:48:13 +02:00
|
|
|
fps := f64(game.frame - game.frame_old) * ticks / 1000.0
|
2020-09-21 02:42:28 +02:00
|
|
|
$if debug {
|
|
|
|
eprintln('fps: ${fps:5.1f} | last frame took: ${last_frame_ms:6.3f}ms | frame: ${game.frame:6} ')
|
|
|
|
}
|
2020-06-03 15:45:26 +02:00
|
|
|
game.second_sw.restart()
|
|
|
|
game.frame_old = game.frame
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-07-24 12:29:47 +02:00
|
|
|
fn frame(mut game Game) {
|
2020-06-03 15:45:26 +02:00
|
|
|
game.frame_sw.restart()
|
2020-06-01 12:57:04 +02:00
|
|
|
game.gg.begin()
|
|
|
|
game.draw_scene()
|
2020-06-03 15:45:26 +02:00
|
|
|
game.showfps()
|
2020-06-03 18:52:44 +02:00
|
|
|
game.gg.end()
|
2020-06-01 12:57:04 +02:00
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
fn main() {
|
2020-06-02 15:35:37 +02:00
|
|
|
mut game := &Game{
|
2020-06-03 15:45:26 +02:00
|
|
|
gg: 0
|
2020-06-02 15:35:37 +02:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
game.gg = gg.new_context({
|
2020-06-01 12:57:04 +02:00
|
|
|
bg_color: gx.white
|
|
|
|
width: win_width
|
|
|
|
height: win_height
|
|
|
|
use_ortho: true // This is needed for 2D drawing
|
|
|
|
create_window: true
|
2020-10-18 08:48:13 +02:00
|
|
|
window_title: 'V Tetris' //
|
2020-06-01 12:57:04 +02:00
|
|
|
user_data: game
|
2020-06-03 22:08:55 +02:00
|
|
|
frame_fn: frame
|
2020-06-04 08:48:49 +02:00
|
|
|
event_fn: on_event
|
2020-10-18 08:48:13 +02:00
|
|
|
font_path: fpath // wait_events: true
|
|
|
|
})
|
2019-06-22 20:20:28 +02:00
|
|
|
game.init_game()
|
|
|
|
go game.run() // Run the game loop in a new thread
|
2020-06-01 12:57:04 +02:00
|
|
|
game.gg.run() // Run the render loop in the main thread
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) init_game() {
|
2019-07-19 13:27:44 +02:00
|
|
|
g.parse_tetros()
|
2020-10-18 08:48:13 +02:00
|
|
|
g.next_tetro_idx = rand.intn(b_tetros.len) // generate initial "next"
|
2019-06-22 20:20:28 +02:00
|
|
|
g.generate_tetro()
|
2020-06-04 16:53:19 +02:00
|
|
|
g.field = []
|
2019-06-22 20:20:28 +02:00
|
|
|
// Generate the field, fill it with 0's, add -1's on each edge
|
2020-10-18 08:48:13 +02:00
|
|
|
for _ in 0 .. field_height + 2 {
|
2020-05-22 17:36:09 +02:00
|
|
|
mut row := [0].repeat(field_width + 2)
|
2020-10-18 08:48:13 +02:00
|
|
|
row[0] = -1
|
|
|
|
row[field_width + 1] = -1
|
2020-11-27 20:41:17 +01:00
|
|
|
g.field << row.clone()
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
for j in 0 .. field_width + 2 {
|
2020-11-24 18:14:44 +01:00
|
|
|
g.field[0][j] = -1
|
|
|
|
g.field[field_height + 1][j] = -1
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-08-09 07:28:37 +02:00
|
|
|
g.score = 0
|
2020-10-02 15:42:05 +02:00
|
|
|
g.lines = 0
|
2019-08-17 01:56:09 +02:00
|
|
|
g.state = .running
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) parse_tetros() {
|
2020-04-01 23:49:11 +02:00
|
|
|
for b_tetros0 in b_tetros {
|
|
|
|
for b_tetro in b_tetros0 {
|
2019-06-26 16:39:40 +02:00
|
|
|
for t in parse_binary_tetro(b_tetro) {
|
2019-06-22 20:20:28 +02:00
|
|
|
g.tetros_cache << t
|
2019-06-26 16:39:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) run() {
|
2019-06-22 20:20:28 +02:00
|
|
|
for {
|
2019-08-17 01:56:09 +02:00
|
|
|
if g.state == .running {
|
|
|
|
g.move_tetro()
|
|
|
|
g.delete_completed_lines()
|
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
// glfw.post_empty_event() // force window redraw
|
2020-05-22 17:36:09 +02:00
|
|
|
time.sleep_ms(timer_period)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 09:30:15 +02:00
|
|
|
fn (g &Game) draw_ghost() {
|
|
|
|
if g.state != .gameover && g.show_ghost {
|
|
|
|
pos_y := g.move_ghost()
|
2020-10-18 08:48:13 +02:00
|
|
|
for i in 0 .. tetro_size {
|
2020-10-02 09:30:15 +02:00
|
|
|
tetro := g.tetro[i]
|
2020-10-02 15:37:00 +02:00
|
|
|
g.draw_block_color(pos_y + tetro.y, g.pos_x + tetro.x, gx.gray)
|
2020-10-02 09:30:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (g Game) move_ghost() int {
|
|
|
|
mut pos_y := g.pos_y
|
|
|
|
mut end := false
|
|
|
|
for !end {
|
|
|
|
for block in g.tetro {
|
|
|
|
y := block.y + pos_y + 1
|
|
|
|
x := block.x + g.pos_x
|
|
|
|
if g.field[y][x] != 0 {
|
|
|
|
end = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pos_y++
|
|
|
|
}
|
|
|
|
return pos_y - 1
|
|
|
|
}
|
|
|
|
|
2020-06-03 15:45:26 +02:00
|
|
|
fn (mut g Game) move_tetro() bool {
|
2019-06-22 20:20:28 +02:00
|
|
|
// Check each block in current tetro
|
|
|
|
for block in g.tetro {
|
|
|
|
y := block.y + g.pos_y + 1
|
|
|
|
x := block.x + g.pos_x
|
|
|
|
// Reached the bottom of the screen or another block?
|
2020-06-04 16:53:19 +02:00
|
|
|
if g.field[y][x] != 0 {
|
2019-06-22 20:20:28 +02:00
|
|
|
// The new tetro has no space to drop => end of the game
|
|
|
|
if g.pos_y < 2 {
|
2019-08-17 01:56:09 +02:00
|
|
|
g.state = .gameover
|
2020-06-03 15:45:26 +02:00
|
|
|
return false
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
// Drop it and generate a new one
|
|
|
|
g.drop_tetro()
|
|
|
|
g.generate_tetro()
|
2020-06-03 15:45:26 +02:00
|
|
|
return false
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
g.pos_y++
|
2020-06-03 15:45:26 +02:00
|
|
|
return true
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) move_right(dx int) bool {
|
2019-06-26 16:39:40 +02:00
|
|
|
// Reached left/right edge or another tetro?
|
2020-10-18 08:48:13 +02:00
|
|
|
for i in 0 .. tetro_size {
|
2019-06-22 20:20:28 +02:00
|
|
|
tetro := g.tetro[i]
|
|
|
|
y := tetro.y + g.pos_y
|
|
|
|
x := tetro.x + g.pos_x + dx
|
2020-11-27 20:41:17 +01:00
|
|
|
if g.field[y][x] != 0 {
|
2019-06-22 20:20:28 +02:00
|
|
|
// Do not move
|
2019-08-09 07:28:37 +02:00
|
|
|
return false
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
g.pos_x += dx
|
2019-08-09 07:28:37 +02:00
|
|
|
return true
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) delete_completed_lines() {
|
2020-05-22 17:36:09 +02:00
|
|
|
for y := field_height; y >= 1; y-- {
|
2019-06-22 20:20:28 +02:00
|
|
|
g.delete_completed_line(y)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) delete_completed_line(y int) {
|
2020-05-22 17:36:09 +02:00
|
|
|
for x := 1; x <= field_width; x++ {
|
2020-11-24 18:14:44 +01:00
|
|
|
if g.field[y][x] == 0 {
|
2019-06-22 20:20:28 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-08-09 07:28:37 +02:00
|
|
|
g.score += 10
|
2020-10-02 15:42:05 +02:00
|
|
|
g.lines++
|
2019-06-22 20:20:28 +02:00
|
|
|
// Move everything down by 1 position
|
|
|
|
for yy := y - 1; yy >= 1; yy-- {
|
2020-05-22 17:36:09 +02:00
|
|
|
for x := 1; x <= field_width; x++ {
|
2020-11-24 18:14:44 +01:00
|
|
|
g.field[yy + 1][x] = g.field[yy][x]
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Place a new tetro on top
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) generate_tetro() {
|
2019-06-22 20:20:28 +02:00
|
|
|
g.pos_y = 0
|
2020-05-22 17:36:09 +02:00
|
|
|
g.pos_x = field_width / 2 - tetro_size / 2
|
2020-10-02 15:37:00 +02:00
|
|
|
g.tetro_idx = g.next_tetro_idx
|
|
|
|
g.next_tetro_idx = rand.intn(b_tetros.len)
|
2019-06-26 16:39:40 +02:00
|
|
|
g.rotation_idx = 0
|
|
|
|
g.get_tetro()
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-26 16:39:40 +02:00
|
|
|
// Get the right tetro from cache
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) get_tetro() {
|
2020-04-01 23:49:11 +02:00
|
|
|
idx := g.tetro_idx * tetro_size * tetro_size + g.rotation_idx * tetro_size
|
2020-10-18 08:48:13 +02:00
|
|
|
g.tetro = g.tetros_cache[idx..idx + tetro_size]
|
2019-06-26 16:39:40 +02:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2019-09-17 12:37:25 +02:00
|
|
|
// TODO mut
|
2020-07-24 12:29:47 +02:00
|
|
|
fn (mut g Game) drop_tetro() {
|
2020-10-18 08:48:13 +02:00
|
|
|
for i in 0 .. tetro_size {
|
2019-06-22 20:20:28 +02:00
|
|
|
tetro := g.tetro[i]
|
|
|
|
x := tetro.x + g.pos_x
|
|
|
|
y := tetro.y + g.pos_y
|
|
|
|
// Remember the color of each block
|
2020-06-04 16:53:19 +02:00
|
|
|
g.field[y][x] = g.tetro_idx + 1
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (g &Game) draw_tetro() {
|
2020-10-18 08:48:13 +02:00
|
|
|
for i in 0 .. tetro_size {
|
2019-06-22 20:20:28 +02:00
|
|
|
tetro := g.tetro[i]
|
|
|
|
g.draw_block(g.pos_y + tetro.y, g.pos_x + tetro.x, g.tetro_idx + 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 15:37:00 +02:00
|
|
|
fn (g &Game) draw_next_tetro() {
|
|
|
|
if g.state != .gameover {
|
|
|
|
idx := g.next_tetro_idx * tetro_size * tetro_size
|
2020-11-26 18:40:31 +01:00
|
|
|
next_tetro := g.tetros_cache[idx..idx + tetro_size].clone()
|
2020-10-02 15:37:00 +02:00
|
|
|
pos_y := 0
|
|
|
|
pos_x := field_width / 2 - tetro_size / 2
|
2020-10-18 08:48:13 +02:00
|
|
|
for i in 0 .. tetro_size {
|
2020-10-02 15:37:00 +02:00
|
|
|
block := next_tetro[i]
|
|
|
|
g.draw_block_color(pos_y + block.y, pos_x + block.x, gx.rgb(220, 220, 220))
|
|
|
|
}
|
|
|
|
}
|
2020-10-02 09:30:15 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
fn (g &Game) draw_block_color(i int, j int, color gx.Color) {
|
|
|
|
g.gg.draw_rect(f32((j - 1) * block_size), f32((i - 1) * block_size), f32(block_size - 1),
|
|
|
|
f32(block_size - 1), color)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 08:48:13 +02:00
|
|
|
fn (g &Game) draw_block(i int, j int, color_idx int) {
|
2020-10-02 09:30:15 +02:00
|
|
|
color := if g.state == .gameover { gx.gray } else { colors[color_idx] }
|
|
|
|
g.draw_block_color(i, j, color)
|
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
fn (g &Game) draw_field() {
|
2020-05-22 17:36:09 +02:00
|
|
|
for i := 1; i < field_height + 1; i++ {
|
|
|
|
for j := 1; j < field_width + 1; j++ {
|
2020-11-24 18:14:44 +01:00
|
|
|
if g.field[i][j] > 0 {
|
|
|
|
g.draw_block(i, j, g.field[i][j])
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) draw_ui() {
|
2020-07-06 19:45:00 +02:00
|
|
|
g.gg.draw_text(1, 3, g.score.str(), text_cfg)
|
2020-10-02 15:42:05 +02:00
|
|
|
lines := g.lines.str()
|
|
|
|
g.gg.draw_text(win_width - lines.len * text_size, 3, lines, text_cfg)
|
2020-07-06 19:45:00 +02:00
|
|
|
if g.state == .gameover {
|
2020-10-18 08:48:13 +02:00
|
|
|
g.gg.draw_rect(0, win_height / 2 - text_size, win_width, 5 * text_size, ui_color)
|
2020-07-06 19:45:00 +02:00
|
|
|
g.gg.draw_text(1, win_height / 2 + 0 * text_size, 'Game Over', over_cfg)
|
|
|
|
g.gg.draw_text(1, win_height / 2 + 2 * text_size, 'Space to restart', over_cfg)
|
|
|
|
} else if g.state == .paused {
|
2020-10-18 08:48:13 +02:00
|
|
|
g.gg.draw_rect(0, win_height / 2 - text_size, win_width, 5 * text_size, ui_color)
|
2020-07-06 19:45:00 +02:00
|
|
|
g.gg.draw_text(1, win_height / 2 + 0 * text_size, 'Game Paused', text_cfg)
|
|
|
|
g.gg.draw_text(1, win_height / 2 + 2 * text_size, 'SPACE to resume', text_cfg)
|
2019-08-09 07:28:37 +02:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
// g.gg.draw_rect(0, block_size, win_width, limit_thickness, ui_color)
|
2019-08-09 07:28:37 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut g Game) draw_scene() {
|
2020-10-02 09:30:15 +02:00
|
|
|
g.draw_ghost()
|
2020-10-02 15:37:00 +02:00
|
|
|
g.draw_next_tetro()
|
2019-06-22 20:20:28 +02:00
|
|
|
g.draw_tetro()
|
|
|
|
g.draw_field()
|
2019-10-23 15:19:05 +02:00
|
|
|
g.draw_ui()
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 14:16:10 +02:00
|
|
|
fn parse_binary_tetro(t_ int) []Block {
|
2019-08-09 07:28:37 +02:00
|
|
|
mut t := t_
|
2020-06-04 16:53:19 +02:00
|
|
|
mut res := [Block{}].repeat(4)
|
2019-06-22 20:20:28 +02:00
|
|
|
mut cnt := 0
|
2020-10-18 08:48:13 +02:00
|
|
|
horizontal := t == 9 // special case for the horizontal line
|
|
|
|
ten_powers := [1000, 100, 10, 1]
|
2019-06-22 20:20:28 +02:00
|
|
|
for i := 0; i <= 3; i++ {
|
|
|
|
// Get ith digit of t
|
2020-06-03 15:45:26 +02:00
|
|
|
p := ten_powers[i]
|
2019-12-07 23:39:27 +01:00
|
|
|
mut digit := t / p
|
2019-06-22 20:20:28 +02:00
|
|
|
t %= p
|
|
|
|
// Convert the digit to binary
|
|
|
|
for j := 3; j >= 0; j-- {
|
|
|
|
bin := digit % 2
|
|
|
|
digit /= 2
|
2020-04-01 23:49:11 +02:00
|
|
|
if bin == 1 || (horizontal && i == tetro_size - 1) {
|
2020-06-04 16:53:19 +02:00
|
|
|
res[cnt].x = j
|
|
|
|
res[cnt].y = i
|
2019-06-22 20:20:28 +02:00
|
|
|
cnt++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2020-06-04 10:35:40 +02:00
|
|
|
fn on_event(e &sapp.Event, mut game Game) {
|
2020-10-18 08:48:13 +02:00
|
|
|
// println('code=$e.char_code')
|
2020-06-01 12:57:04 +02:00
|
|
|
if e.typ == .key_down {
|
|
|
|
game.key_down(e.key_code)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2020-06-01 12:57:04 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 13:04:46 +02:00
|
|
|
fn (mut game Game) key_down(key sapp.KeyCode) {
|
2019-08-17 01:56:09 +02:00
|
|
|
// global keys
|
2019-10-27 08:13:40 +01:00
|
|
|
match key {
|
2020-06-01 12:57:04 +02:00
|
|
|
.escape {
|
|
|
|
exit(0)
|
2019-10-27 08:13:40 +01:00
|
|
|
}
|
2020-06-01 12:57:04 +02:00
|
|
|
.space {
|
2019-10-27 08:13:40 +01:00
|
|
|
if game.state == .running {
|
|
|
|
game.state = .paused
|
|
|
|
} else if game.state == .paused {
|
|
|
|
game.state = .running
|
|
|
|
} else if game.state == .gameover {
|
|
|
|
game.init_game()
|
|
|
|
game.state = .running
|
|
|
|
}
|
2019-08-17 01:56:09 +02:00
|
|
|
}
|
2019-12-07 15:13:25 +01:00
|
|
|
else {}
|
2019-08-17 01:56:09 +02:00
|
|
|
}
|
|
|
|
if game.state != .running {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// keys while game is running
|
2019-10-27 08:13:40 +01:00
|
|
|
match key {
|
2020-06-01 12:57:04 +02:00
|
|
|
.up {
|
2020-04-16 12:30:33 +02:00
|
|
|
// Rotate the tetro
|
|
|
|
old_rotation_idx := game.rotation_idx
|
|
|
|
game.rotation_idx++
|
|
|
|
if game.rotation_idx == tetro_size {
|
|
|
|
game.rotation_idx = 0
|
|
|
|
}
|
2019-07-23 03:29:11 +02:00
|
|
|
game.get_tetro()
|
2020-04-16 12:30:33 +02:00
|
|
|
if !game.move_right(0) {
|
|
|
|
game.rotation_idx = old_rotation_idx
|
|
|
|
game.get_tetro()
|
|
|
|
}
|
|
|
|
if game.pos_x < 0 {
|
2020-10-18 08:48:13 +02:00
|
|
|
// game.pos_x = 1
|
2020-04-16 12:30:33 +02:00
|
|
|
}
|
2019-08-09 07:28:37 +02:00
|
|
|
}
|
2020-06-01 12:57:04 +02:00
|
|
|
.left {
|
2020-04-16 12:30:33 +02:00
|
|
|
game.move_right(-1)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2020-06-01 12:57:04 +02:00
|
|
|
.right {
|
2020-04-16 12:30:33 +02:00
|
|
|
game.move_right(1)
|
|
|
|
}
|
2020-06-01 12:57:04 +02:00
|
|
|
.down {
|
2020-04-16 12:30:33 +02:00
|
|
|
game.move_tetro() // drop faster when the player presses <down>
|
|
|
|
}
|
2020-06-03 15:45:26 +02:00
|
|
|
.d {
|
2020-10-18 08:48:13 +02:00
|
|
|
for game.move_tetro() {
|
|
|
|
}
|
2020-06-03 15:45:26 +02:00
|
|
|
}
|
2020-10-02 09:30:15 +02:00
|
|
|
.g {
|
|
|
|
game.show_ghost = !game.show_ghost
|
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
else {}
|
2019-10-27 08:13:40 +01:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|