summaryrefslogtreecommitdiff
path: root/game/init.lua
blob: bdd6609be718caff8295b7d39ac85a43c63ae21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
local evloop = require "evloop"
local playfield = require "game.playfield"
local tetrominoes = require "game.tetrominoes"
local heav_optimal_shapes = require "game.heav_optimal_shapes"
local gfx = require "game.gfx"
local sfx = require "game.sfx"
local bag = require "game.bag"

local M = {}
M.__index = M

local pieces = {
	tetrominoes.i,
	tetrominoes.j,
	tetrominoes.l,
	tetrominoes.o,
	tetrominoes.s,
	tetrominoes.t,
	tetrominoes.z,
}

function M.new(assets, params)
	local new = setmetatable({}, M)
	new.assets = assets
	new.params = params
	new.field = playfield.new(params.lines or 20, params.columns or 10)
	new.hold = false
	new.can_hold = true
	new.t_spun = false
	new.combo = -1
	new.stats = {pieces=0, lines=0}
	new.gfx = gfx.new(assets, new)
	new.sfx = sfx.new(assets)
	new.gravity_delay = 0.5
	new.lock_delay = params.lock_delay or 0.8
	new.infinity = params.infinity or false
	new.bag = bag.new(pieces, {seed = os.time(), randomly_add = {
		[heav_optimal_shapes.heav] = {inverse_chance = 5000},
		[heav_optimal_shapes.spite_shape] = {inverse_chance = 10000},
		[heav_optimal_shapes.amongus] = {inverse_chance = 13500},
	}})
	return new
end

function M:input_loop()
	for e, key in evloop.events("keypressed", "keyreleased") do
		-- TODO: interface with a remappable input system (it should generate
		-- its own events)
		if not self.piece then
			goto continue
		end

		if e == "keypressed" then
			local moved
			if key == "left" then
				moved = self.piece:move(0, -1)
			elseif key == "right" then
				moved = self.piece:move(0, 1)
			elseif key == "down" then
				moved = self.piece:move(-1, 0)
				while self.piece:move(-1, 0) do end
			elseif key == "up" then
				moved = self.piece:rotate()
				if moved then self:on_rotated() end
			elseif key == "lctrl" then
				moved = self.piece:rotate(true)
				if moved then self:on_rotated() end
			elseif key == "space" then
				local dropped = false
				while self.piece:move(-1, 0) do
					dropped = true
				end
				self:place_piece()
				if dropped then self.sfx:play("harddrop") end
			elseif key == "c" then
				if not self.can_hold then goto bypass end
				if not self.hold then
					self.hold = self.piece.poly
					self:next_piece()
				else
					local tmp = self.hold
					self.hold = self.piece.poly
					self.piece = tmp:drop(self.field)
					self.loop:queue "game.lock_cancel"
				end
				self.can_hold = false
				::bypass::
			end

			if moved then
				if self.infinity then
					self.loop:queue "game.lock_cancel"
				elseif not self.piece:can_move(-1, 0) then
					self.loop:queue "game.lock"
				end
			end
		end

		::continue::
	end
end

function M:on_rotated()
	if self.piece.t_spun then
		if self.piece.last_kick_id == 5 then
			self.sfx:play("tspinkick5")
		else
			self.sfx: play("tspin")
		end
	end
end

function M:place_piece()
	if not self.piece:can_move(-1, 0) then
		self.piece:place()
		self.stats.pieces = self.stats.pieces + 1
		self.loop:queue "game.lock_cancel"
		local cleared = self.field:remove_cleared()
		if cleared > 0 then
			self.combo = self.combo + 1
			self.stats.lines = self.stats.lines + cleared
			if self.piece.t_spun then
				local sound = ({"tspinsingle","tspindouble","tspintriple"})[cleared]
				self.sfx:play(sound)
			end
			self.loop:queue "game.line_clear"
		else
			self.combo = -1
		end
		self.loop:queue "game.piece_placed"
		self:next_piece()
		return true
	else
		return false
	end
end

function M:next_piece()
	self.can_hold = true
	self.piece = self.bag:next_piece():drop(self.field)
	return self.piece and true or false
end

function M:lock_loop()
	for _ in evloop.events "game.lock" do
		local e = evloop.poll(self.lock_delay, "game.lock_cancel")
		if not e then
			self:place_piece()
		end
	end
end

function M:gravity_loop()
	for _ in evloop.events(self.gravity_delay) do
		if self.piece and not self.piece:move(-1, 0) then
			self.loop:queue "game.lock"
		end
		if not self.piece then
			self.loop:quit()
		end
	end
end

function M:run()
	self:next_piece()
	self.loop = evloop.new(
		function() self:input_loop() end,
		function() self:gravity_loop() end,
		function() self:lock_loop() end,
		function() self.gfx:run() end
	)
	return self.loop:run()
end

return M