07156aa497d86441918365df3668f39f3fd0ee64
[nit.git] / contrib / friendz / src / friendz.nit
1 # Monsterz - Chains of Friends
2 #
3 # 2010-2014 (c) Jean Privat <jean@pryen.org>
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the Do What The Fuck You Want To
7 # Public License, Version 2, as published by Sam Hocevar. See
8 # http://sam.zoy.org/projects/COPYING.WTFPL for more details.
9
10 # Full UI for the game
11 module friendz is
12 app_name("ChainZ of FriendZ")
13 app_version(0, 1, git_revision)
14 end
15
16 import app::audio
17 import mnit
18 import realtime
19 import solver
20 import mnit::tileset
21 import app::data_store
22 import md5
23
24 intrude import grid
25 intrude import level
26
27 redef class Grid
28 # Zoom level in %
29 # higher means more dense grid
30 var ratio = 100
31
32 # Various grid sizes from large to small (16x16, 12x12, 8x8, 6x6)
33 var ratios: Array[Int] = [200, 150, 100, 75]
34
35 redef fun resize(w,h)
36 do
37 super
38 for r in ratios do
39 if w*100/r <= 8 and h*100/r <= 8 then self.ratio = r
40 end
41 end
42 end
43
44 # * ENTITIES ****************************************************************
45
46 # A game entity is something that is displayed and may interact with the player.
47 abstract class Entity
48 # The associated game
49 var game: Game
50
51 # X left coordinate (in pixel).
52 var x: Int
53
54 # Y top coordinate (in pixel).
55 var y: Int
56
57 # X right coordinate (in pixel).
58 fun x2: Int do return x + width
59
60 # Y bottom coordinate (in pixel).
61 fun y2: Int do return y + height
62
63 # Width
64 var width: Int
65
66 # Height
67 var height: Int
68
69 # Tool tip text (if any)
70 var over: nullable String = null
71
72 # can the entity intercepts drag ang drop events?
73 var draggable = false
74
75 # Draw function. To implement
76 fun draw(ctx: Display) do end
77
78 # Update function. Called each loop. To implement
79 fun update do end
80
81 # Enter function. Called when the cursor enter in the element. To implement
82 fun enter(ev: Event) do end
83
84 # Click function. Called when the player click in the element.
85 # (or activate it with a shortcut).
86 fun click(ev: Event) do end
87
88 # keyboard shortcut do activate the entity, if any
89 var shortcut: nullable String = null
90
91 # Are events received?
92 var enabled = true
93
94 fun bw: Int do return game.bw
95 fun bh: Int do return game.bh
96
97 # Should the entity be redrawn
98 var dirty = true
99 end
100
101 # TEXT BUTTONS ***********************************************************/
102
103 # Button entity displayed as a simple text.
104 # if `over1` is null, then the button is a simple pasive label
105 # if `over1` is set but `over2` is null, then the button is a normal button
106 # if both `over1` and `over2` arew set, then the button is a toggleable button with two states
107 class TextButton
108 super Entity
109 var str: String
110 init(game: Game, str: String, x,y: Int, color: nullable String, over, over2: nullable String)
111 do
112 var w = 10 # TODO
113 super(game, x,y,w,24)
114 self.str = str
115 self.color = color or else "purple"
116 self.over = over
117 self.over1 = over
118 self.over2 = over2
119 self.textx = x
120 if self.toggleable then
121 self.x -= bw/2 + 4
122 end
123 end
124
125 var color: String
126
127 # The description of the button action
128 var over1: nullable String
129 # The description of the state2 button action
130 var over2: nullable String
131
132 # is the button a two-state button
133 fun toggleable: Bool do return over2 != null
134
135 # is the toggleable button in its second state?
136 var toggled = false
137
138 # ttl for highlighting
139 var ttl = 0
140
141 # position of the start of the text
142 # in a toggleable button, there is space for the mark between `x` and `textx`
143 var textx: Int
144
145 redef fun draw(ctx) do
146 if self.toggleable then
147 var w
148 if self.toggled or not self.enabled then w = 6 else w = 7
149 ctx.blit(game.img2[w,0], self.x, self.y)
150 end
151 var c
152 if self.enabled then c = self.color else c = "gray"
153 var c2= null
154 if self.ttl > 0 then c2 = "rgba(255,255,255,{self.ttl/10})"
155 ctx.textx(self.str, self.textx, self.y, self.height, c, c2)
156 self.width = ctx.measureText(self.str, self.height)
157 if self.toggleable then self.width += bw/2 + 4
158 end
159
160 redef fun update
161 do
162 if game.statusbar.over_what != self and self.ttl > 0 then
163 self.ttl-=1
164 self.dirty = true
165 end
166 end
167
168 redef fun enter(ev)
169 do
170 if over1 == null then return
171 if not self.enabled then return
172 game.snd_click.play
173 self.ttl = 10
174 self.dirty = true
175 self.enter2
176 end
177
178 # Called by `enter` do perform additionnal work if the button is active
179 # Specific button should implement this instead of `enter`
180 fun enter2 do end
181
182 redef fun click(ev)
183 do
184 if not self.enabled then
185 game.snd_bing.play
186 else
187 if self.toggleable then
188 self.toggled = not self.toggled
189 if self.toggled then self.over = self.over2 else self.over = self.over1
190 game.statusbar.over_txt = self.over
191 end
192 game.snd_whip.play
193 end
194 self.click2(ev)
195 end
196
197 # Called by `click` do perform additionnal work if the button is active
198 # Specific button should implement this instead of `click`
199 fun click2(ev: Event) do end
200
201 end
202
203 # LEVEL BUTTONS ***********************************************************/
204
205 # button to play a level in the menu screen
206 class LevelButton
207 super Entity
208
209 # The associated level to play
210 var level: Level
211
212 init(l: Level)
213 do
214 self.level = l
215 var i = l.number
216 super(l.game, (i%5)*56 + 54, (i/5)*56 + 55, l.game.bw, l.game.bh)
217
218 self.over = self.level.fullname
219 if self.level.get_state >= l.l_won then
220 if game.levels[9].get_state >= l.l_won then self.over += " --- {self.level.score}/{self.level.gold}"
221 else if self.level.get_state >= l.l_open then
222 if game.levels[9].get_state >= l.l_open then self.over += " --- ?/{self.level.gold}"
223 end
224 #self.enabled = l.get_state >= l.l_open
225 end
226
227 redef fun draw(ctx)
228 do
229 var l = level
230 var s = self.level.get_state
231 var ix = 5 + l.number % 2
232 var iy = 0
233 if s == l.l_disabled then
234 ix = 3
235 iy = 3
236 else if s == l.l_open then
237 ix = 1
238 iy = 1
239 ctx.blit(game.img[ix,iy], self.x, self.y)
240 ix = 0
241 iy = 0
242 end
243 ctx.blit(game.img[ix,iy], self.x, self.y)
244
245 if s == l.l_gold then
246 ctx.blit(game.img2[7,0], self.x + bw*5/8, self.y-bh*1/8)
247 end
248 ctx.textx(self.level.name, self.x+5, self.y+5, 24, null, null)
249 end
250
251 redef fun click(ev)
252 do
253 if self.enabled then
254 game.snd_whip.play
255 game.play(self.level)
256 else
257 game.snd_bing.play
258 game.statusbar.set_tmp("Locked level", "red")
259 end
260 end
261
262 end
263
264 # ACHIEVEMENTS ************************************************************/
265
266 # Achievement (monster-like) button in the menu screen
267 class Achievement
268 super Button
269
270 # The number of the achievement (0 is first)
271 var number: Int
272
273 # The name of the achievement
274 var name: String
275
276 init(game: Game, i: Int, name: String)
277 do
278 super(game, 5*56 + 54, i*56 + 55, game.bw, game.bh)
279 self.over = name
280 self.number = i
281 self.name = name
282 var l = game.levels[number*5+4]
283 enabled = l.get_state >= l.l_won
284 if self.enabled then self.over = name + " (unlocked)" else self.over = name + " (locked)"
285 end
286
287 redef fun draw(ctx)
288 do
289 var w
290 if self.enabled then w = 5 else w = 3
291 ctx.blit(game.img[w,self.number+5], self.x, self.y)
292 end
293
294 redef fun click(ev)
295 do
296 if not self.enabled then
297 game.snd_bing.play
298 game.statusbar.set_tmp("Locked achievement!", "red")
299 else
300 game.snd_whip.play
301 self.click2(ev)
302 end
303 end
304
305 fun click2(ev: Event) do
306 # TODO
307 end
308 end
309
310
311 # BOARD (THE GRID) *******************************************************/
312
313 # The board game element.
314 class Board
315 super Entity
316 init(game: Game)
317 do
318 super(game, game.xpad, game.ypad, 8*game.bw, 8*game.bh)
319 draggable = true
320 end
321
322 redef fun draw(ctx)
323 do
324 var grid = game.grid
325 var bwr = bw*100/grid.ratio
326 var bhr = bh*100/grid.ratio
327 var w = grid.width
328 var h = grid.height
329 if game.selected_button == game.button_size then
330 bwr = bw/2
331 bhr = bh/2
332 w = game.gw
333 h = game.gh
334 end
335 self.x = game.xpad+(48*8/2)-w*bwr/2
336 self.y = game.ypad+(48*8/2)-h*bhr/2
337 self.width = w*bwr
338 self.height = h*bhr
339 for i in [0..w[ do
340 for j in [0..h[ do
341 var t = grid.grid[i][j]
342 var dx = i * bwr + self.x
343 var dy = j * bhr + self.y
344 if (i+j)%2 == 0 then
345 ctx.blit_scaled(game.img[5,0], dx, dy, bwr, bhr)
346 else
347 ctx.blit_scaled(game.img[6,0], dx, dy, bwr, bhr)
348 end
349 if t.fixed then
350 if t.shape != null and not game.editing then
351 #ctx.drawImage(game.img, t.shape.x*bw, (2+t.shape.y)*bh, bw, bh, i * bwr + self.x, j * bhr + self.y, bwr, bhr)
352 ctx.blit_scaled(game.img[3,3], dx, dy, bwr, bhr)
353 else
354 ctx.blit_scaled(game.img[3,3], dx, dy, bwr, bhr)
355 end
356 end
357 if t.kind>0 then
358 var m = grid.monsters[t.kind]
359 var s = 0
360 if t.blink > 0 then s = 1
361 if t.nexts > 2 then s = 3
362 if t.nexts == 0 then s = 6
363 if m.chain then s = 5
364 if t.shocked>0 then s = 2
365 ctx.blit_scaled(game.img[s,(4+t.kind)], dx, dy, bwr, bhr)
366 end
367 #ctx.textx(t.chain_mark.to_s, dx, dy, 20, "", null)
368 end
369 end
370 if game.selected_button == game.button_size then
371 var x0 = self.x
372 var x1 = (grid.width) * bwr - bwr/2 + self.x
373 var y0 = self.y
374 var y1 = (grid.height) * bhr - bhr/2 + self.y
375 ctx.blit_scaled(game.img2[0,0], x0, y0, bwr/2, bhr/2)
376 ctx.blit_scaled(game.img2[1,0], x1, y0, bwr/2, bhr/2)
377 ctx.blit_scaled(game.img2[1,1], x1, y1, bwr/2, bhr/2)
378 ctx.blit_scaled(game.img2[0,1], x0, y1, bwr/2, bhr/2)
379 ctx.textx("{grid.width}x{grid.height}",self.x + grid.width*bwr/2,self.y+grid.height*bhr/2,20,"orange",null)
380 end
381 end
382
383 redef fun update
384 do
385 var grid = game.grid
386 for i in [0..grid.width[ do
387 for j in [0..grid.height[ do
388 var t = grid.grid[i][j]
389 if t.kind == 0 then continue
390 if t.blink > 0 then
391 t.blink-=1
392 self.dirty=true
393 end
394 if t.shocked > 0 then
395 t.shocked-=1
396 self.dirty=true
397 else if 100.rand == 0 then
398 t.blink = 5
399 self.dirty=true
400 end
401 end
402 end
403 end
404
405 # Last clicked tile
406 # Uded to filter drag events
407 private var last: nullable Tile = null
408
409 redef fun click(ev)
410 do
411 var grid = game.grid
412 var r = grid.ratio
413 if game.selected_button == game.button_size then r = 200
414 var x = ev.game_x * r / bw / 100
415 var y = ev.game_y * r / bh / 100
416 var t = grid.grid[x][y]
417
418 if ev.drag and last == t then return
419 last = t
420
421 if game.selected_button != game.button_size and (x>=grid.width or y>=grid.height) then return
422
423 # print "{ev.game_x},{ev.game_y},{ev.drag} -> {x},{y}:{t}"
424
425 if game.selected_button != null then
426 game.selected_button.click_board(ev, t)
427 end
428 end
429 end
430
431 # BUTTONS *****************************************************************/
432
433 # A in-game selectable button for monsters or tools
434 class Button
435 super Entity
436
437 # The x tile
438 var imgx: Int = 0
439
440 # The y tile
441 var imgy: Int = 0
442
443 # The associated monster tile
444 # >0 for monsters, <=0 for tools
445 var kind = 0
446
447 redef fun draw(ctx)
448 do
449 ctx.blit(game.img[self.imgx, self.imgy], self.x, self.y)
450 if game.selected_button == self then ctx.blit(game.img[0, 0], self.x, self.y)
451 end
452
453 redef fun click(ev)
454 do
455 var sel = game.selected_button
456 if game.selected_button == game.button_size then game.board.dirty=true
457 if sel != null then sel.dirty=true
458 game.selected_button = self
459 game.snd_click.play
460 end
461
462 # Current inputed chain
463 # Used for drag
464 private var chain = new Array[Tile]
465
466 # Board click. Called when the player click on the board with the button selected.
467 fun click_board(ev: Event, t: Tile)
468 do
469 game.score.dirty = true
470 if ev.drag and self.kind>0 and not chain.is_empty then
471 if self.chain.length >= 2 and self.chain[1] == t then
472 var t2 = self.chain.shift
473 game.snd_click.play
474 if t2.fixed and not game.editing then return
475 t2.update(0)
476 return
477 end
478 if t.fixed and t.kind == self.kind then
479 self.chain.unshift(t)
480 game.snd_click.play
481 return
482 end
483 if (self.chain[0].x - t.x).abs + (self.chain[0].y - t.y).abs != 1 then return
484 if t.fixed and not game.editing then
485 game.snd_bing.play
486 return
487 end
488 if t.kind != 0 and t.kind != self.kind then
489 t.shocked = 5
490 game.snd_duh.play
491 return
492 end
493 self.chain.unshift(t)
494 if t.kind == self.kind then return
495 game.snd_click.play
496 t.update(self.kind)
497 return
498 end
499
500 if t.fixed and not game.editing then
501 if t.kind == 0 then
502 game.snd_bing.play
503 return
504 end
505 if t.kind != self.kind and not ev.drag then
506 game.buttons[t.kind].click(ev)
507 game.buttons[t.kind].chain = [t]
508 else
509 self.chain = [t]
510 game.snd_bing.play
511 end
512 return
513 end
514 if t.fixed and game.editing and self == game.button_erase and t.kind == 0 then
515 t.fixed = false
516 game.snd_click.play
517 return
518 end
519
520 var nkind = 0 # the new kind
521 if ev.drag then
522 # Here we clean
523 if t.kind == 0 then return
524 if self.kind != 0 and t.kind != self.kind then
525 t.shocked = 5
526 game.snd_duh.play
527 return
528 end
529 nkind = 0
530 else if t.kind != self.kind then
531 nkind = self.kind
532 self.chain = [t]
533 else if t.kind != 0 then
534 nkind = 0
535 self.chain.clear
536 end
537 if nkind == t.kind then return
538 game.snd_click.play
539 t.update(nkind)
540 end
541 end
542
543 # A monster button
544 class MonsterButton
545 super Button
546
547 # TTL for the monster being angry
548 var angries = 0
549 # TTL for the monster being happy
550 var happy = 0
551 # TTL for the monster being shocked
552 var shocked = 0
553 # TTL for the monster blinking
554 var blink = 0
555
556 init(game: Game, i: Int)
557 do
558 self.game = game
559 var x = 440 + 58 * ((i-1).abs%3)
560 var y = 150 + (bh+5) * ((i-1)/3)
561 super(game, x, y, game.bw, game.bh)
562 if i == 0 then return
563 kind = i
564 imgx = 0
565 imgy = (4+i)
566 over = game.colors[i] + " monster ({i})"
567 shortcut = i.to_s # code for 1 trough 9
568 end
569
570 redef fun click(ev)
571 do
572 super
573 self.shocked = 5
574 end
575
576 redef fun update
577 do
578 if self.happy > 0 then
579 self.happy-=1
580 self.dirty=true
581 end
582 if self.shocked > 0 then
583 self.shocked-=1
584 self.dirty=true
585 end
586 if self.blink > 0 then
587 self.blink-=1
588 self.dirty=true
589 else if 100.rand == 0 then
590 self.blink = 5
591 self.dirty=true
592 end
593 end
594
595 redef fun draw(ctx)
596 do
597 var s = self.imgx
598 if self.angries>0 then
599 s += 3
600 else if self.happy > 5 then
601 s += 5
602 else if self.shocked > 0 then
603 s += 5
604 else if self.blink > 0 then
605 s += 1
606 end
607 ctx.blit(game.img[s, self.imgy], self.x, self.y)
608 if game.selected_button == self then ctx.blit(game.img[0, 0], self.x, self.y)
609 end
610 end
611
612 # Erase button.
613 class EraseButton
614 super Button
615 init(game: Game) do
616 super(game, 440, 92, game.bh, 22+game.bh)
617 imgx = 4
618 imgy = 13
619 kind = 0
620 over = "Eraser (0)"
621 shortcut = "0"
622 end
623 end
624
625 # Metal (fixed) button.
626 class MetalButton
627 super Button
628 init(game: Game)
629 do
630 super(game, 498, 92, game.bh, 20+game.bh)
631 imgx = 3
632 imgy = 3
633 kind = -1
634 over = "Metal block (q)"
635 shortcut = "q"
636 end
637
638 private var fixed = false
639
640 redef fun click_board(ev,t)
641 do
642 if not ev.drag then self.fixed = not t.fixed
643 if t.fixed == self.fixed then return
644 t.fixed = self.fixed
645 game.snd_click.play
646 end
647 end
648
649 # Resize button.
650 class ResizeButton
651 super Button
652
653 init(game: Game)
654 do
655 super(game,556, 92, game.bh, 20+game.bh)
656 kind = -2
657 over = "Resize the grid"
658 end
659
660 redef fun draw(ctx)
661 do
662 for i in [0..3[ do
663 for j in [0..3[ do
664 var x = self.x + i*bw/3
665 var y = self.y + j*bh/3
666 ctx.blit_scaled(game.img[5+(i+j)%2,0], x, y, bw/3, bh/3)
667 end
668 end
669 if game.selected_button == self then ctx.blit(game.img[0, 0], self.x, self.y)
670 end
671
672 redef fun click(ev)
673 do
674 if game.selected_button != game.button_size then
675 super
676 else
677 game.selected_button = null
678 game.board.dirty=true
679 end
680 end
681
682 redef fun click_board(evt, t)
683 do
684 var grid = t.grid
685 var w = t.x+1
686 var h = t.y+1
687 if w < 3 or h < 3 then
688 game.snd_bing.play
689 game.statusbar.set_tmp("Too small!", "red")
690 return
691 end
692 var aborts = false
693 for i in [0..grid.width[ do
694 for j in [0..grid.height[ do
695 if i>=w or j>=h then
696 var t2 = grid.grid[i][j]
697 if t2.kind > 0 then
698 aborts = true
699 t2.shocked = 5
700 end
701 end
702 end
703 end
704 if aborts then
705 game.snd_duh.play
706 game.statusbar.set_tmp("Monsters on the way!", "red")
707 return
708 end
709 game.snd_click.play
710 grid.resize(w,h)
711 end
712 end
713
714 # Inactive area used to display the score
715 class Score
716 super Entity
717 init(game: Game)
718 do
719 super(game,440,310,199,62)
720 end
721 redef fun draw(ctx)
722 do
723 ctx.textx("MONSTERS: {game.grid.number}",self.x,self.y+1,21,"cyan",null)
724 var level = game.level
725 if level == null then return
726 if level.get_state >= level.l_won then
727 ctx.textx("BEST: {level.score}",self.x,self.y+22,21,"pink", null)
728 else
729 ctx.textx("BEST: -",self.x,self.y+22,21,"pink", null)
730 end
731 if game.levels[9].get_state >= level.l_won then
732 if level.is_challenge then
733 ctx.textx("GOAL: {level.gold}",self.x,self.y+44,21,"yellow",null)
734 else
735 ctx.textx("GOLD: {level.gold}",self.x,self.y+44,21,"yellow",null)
736 end
737 end
738 end
739 end
740
741 # Status bar element.
742 class StatusBar
743 super Entity
744 init(game: Game)
745 do
746 super(game,24, 440, 418-24, 30)
747 end
748
749 # Permanant text, if any
750 var main_txt: nullable String = null
751
752 # Text to display when the cursor if over an entity (`over_what`), if any
753 var over_txt: nullable String = null
754
755 # What is the entity for `over_txt`
756 var over_what: nullable Entity
757
758 # Text to temporally display, for some game event, if any
759 var tmp_txt: nullable String = null
760
761 # time-to-live for the `tmp_txt`
762 var tmp_txt_ttl = 0
763
764 # Color used to display `tmp_txt`
765 var tmp_txt_color: nullable String = null
766
767 # reset the status
768 fun clear do
769 self.main_txt = null
770 self.over_txt = null
771 self.tmp_txt = null
772 self.over = null
773 end
774
775 # set a temporary text
776 fun set_tmp(txt, color: String)
777 do
778 print "***STATUS** {txt}"
779 self.tmp_txt = txt
780 self.tmp_txt_ttl = 20
781 self.tmp_txt_color = color
782 end
783
784 redef fun draw(ctx)
785 do
786 var tmp_txt = self.tmp_txt
787 var over_txt = self.over_txt
788 var main_txt = self.main_txt
789 if tmp_txt != null and self.tmp_txt_ttl>0 then
790 ctx.textx(tmp_txt,24,442,24,self.tmp_txt_color,null)
791 else if over_txt != null then
792 ctx.textx(over_txt,24,442,24,"yellow",null)
793 else if main_txt != null then
794 ctx.textx(main_txt,24,442,24,"white",null)
795 end
796 end
797
798 redef fun update
799 do
800 if self.tmp_txt_ttl>0 then
801 self.tmp_txt_ttl-=1
802 self.dirty=true
803 end
804 end
805 end
806
807 # ************************************************************************/
808
809 redef class Display
810 # Display a text
811 fun textx(str: String, x, y, height: Int, color, color2: nullable String)
812 do
813 #var w = measureText(str, height)
814 #rect(x,y,w,height)
815 text(str.to_upper, app.game.font, x, y)
816 end
817
818 # give the width for a giver text
819 fun measureText(str: String, height: Int): Int
820 do
821 var font = app.game.font
822 return str.length * (font.width + font.hspace.to_i)
823 end
824
825 # displays a debug rectangle
826 fun rect(x,y,w,h:Int)
827 do
828 var image = once app.load_image("hitbox.png")
829 blit_scaled(image, x, y, w, h)
830 end
831 end
832
833 # Simple basic class for event
834 class Event
835 # Is a drag event?
836 var drag = false
837 # screen x
838 var offset_x: Int
839 # screen y
840 var offset_y: Int
841 # entity x
842 var game_x = 0
843 # entity y
844 var game_y = 0
845 # key pressed
846 var char_code: String
847 end
848
849 redef class Game
850 # width of a tile, used for most width reference in the game
851 var bw = 48
852 # height a tile, used for most width reference in the game
853 var bh = 48
854 # x-coordinate of the board (padding)
855 var xpad = 24
856 # y-coordinate of the board (padding)
857 var ypad = 24
858
859 # Load tiles
860
861 # Basic tileset
862 var img = new TileSet(app.load_image("tiles2.png"),48,48)
863
864 # Sub tileset (for marks or other)
865 var img2 = new TileSet(app.load_image("tiles2.png"),24,24)
866
867 # background image
868 var back: Image = app.load_image("background.png")
869
870 # Logo image
871 var logo: Image = app.load_image("logo.png")
872
873 # Font
874 var font = new TileSetFont(app.load_image("deltaforce_font.png"), 16, 17, "ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789.:;!?\"'() -,/")
875
876 var xxx = """
877 fun save_cookie(name, val:String) do
878 var days = 365
879 var date = new Date()
880 date.setTime(date.getTime()+(days*24*60*60*1000))
881 document.cookie = name+"="+val+"; expires="+date.toGMTString()+"; path=/"
882 end
883
884 fun read_cookie(name:String):String do
885 var key = name + "="
886 var ca = document.cookie.split(';')
887 for(var i=0; i<ca.length; i++) do
888 var c = ca[i]
889 while (c[0]==' ') c = c.substring(1, c.length)
890 if (c.indexOf(key) == 0) return c.substring(key.length)
891 end
892 return null
893 end
894 """
895
896 # DISPLAY *****************************************************************
897
898 # Is the game in editing mode
899 var editing = false
900
901 # The selected button, if any
902 var selected_button: nullable Button = null
903
904 # SOUND
905
906 # Is the music muted?
907 var music_muted: Bool = false #read_cookie("music_muted")
908
909 # Is the sound effects muted?
910 var sfx_muted: Bool = false #read_cookie("sfx_muted")
911
912 # The background music resource. */
913 var music = new Music("music.ogg")
914
915 # Click sound
916 var snd_click = new Sound("click.wav")
917
918 # Wining soulf
919 var snd_win = new Sound("level.wav")
920
921 # Shocked sound
922 var snd_duh = new Sound("duh.wav")
923
924 # metal sound
925 var snd_bing = new Sound("bing.wav")
926
927 # transition sound
928 var snd_whip = new Sound("whip.wav")
929
930
931 # INPUT ******************************************************************
932
933 # Current grid edited (if any).
934 var grid_edit: nullable Grid = null
935
936 # Sequence of current entities
937 var entities = new Array[Entity]
938
939 # The current statusbar
940 var statusbar = new StatusBar(self)
941
942 # The grid board
943 var board = new Board(self)
944
945 # The current score board
946 var score = new Score(self)
947
948 # Monster button game elements.
949 var buttons = new Array[MonsterButton]
950
951 # MetalButton
952 var button_wall = new MetalButton(self)
953
954 # EraseButton
955 var button_erase = new EraseButton(self)
956
957 # ResizeButton
958 var button_size = new ResizeButton(self)
959
960 init
961 do
962 load_levels
963 init_buttons
964 entities.clear
965 title
966 end
967
968 # fill `buttons`
969 fun init_buttons
970 do
971 for i in [0..9] do
972 buttons[i] = new MonsterButton(self, i)
973 end
974 end
975
976 # Play a level in player mode.
977 fun play(l: Level)
978 do
979 level = l
980 grid.load(level.str)
981 init_play_menu(false)
982 if level.status != "" then
983 statusbar.main_txt = level.status
984 else
985 statusbar.main_txt = level.fullname
986 end
987 var t = new NextLevelButton(self)
988 entities.push(t)
989 run
990 end
991
992 # Play the next level.
993 fun play_next
994 do
995 play(levels[level.number+1])
996 end
997
998
999 # Helper function to initialize all states.
1000 # Set up buttons for music and SFX.
1001 fun init_game
1002 do
1003 editing = false
1004 solver = null
1005 entities.clear
1006 entities.push(new MusicButton(self))
1007 entities.push(new SFXButton(self))
1008 entities.push(new MenuButton(self))
1009 statusbar.clear
1010 entities.push(statusbar)
1011 end
1012
1013 # Helper function to initialize monster menu entries.
1014 fun init_play_menu(full: Bool)
1015 do
1016 init_game
1017 entities.push(board)
1018 entities.push(new ResetButton(self))
1019 entities.push(button_erase)
1020 # Push monster buttons and determine the selected one
1021 var sel: nullable Button = null
1022 for i in [1..monsters] do
1023 if grid.monsters[i].number > 0 or full then
1024 if selected_button == buttons[i] or sel == null then
1025 sel = buttons[i]
1026 end
1027 entities.push(buttons[i])
1028 end
1029 end
1030 selected_button = sel
1031 entities.push(score)
1032 end
1033
1034 # Play a arbitrary grid in try mode.
1035 fun play_grid(g: Grid)
1036 do
1037 grid = g
1038 init_play_menu(false)
1039 statusbar.main_txt = "User level"
1040 if grid_edit != null then
1041 entities.push(new EditButton(self))
1042 end
1043 entities.push(new WonButton(self))
1044 run
1045 end
1046
1047 # Launch the editor starting with a grid.
1048 fun edit_grid(g: Grid)
1049 do
1050 grid = g
1051 init_play_menu(true)
1052 editing = true
1053 statusbar.main_txt = "Level editor"
1054 if level != null then statusbar.main_txt += ": level "+level.name
1055 entities.push(button_wall)
1056 entities.push(button_size)
1057 entities.push(new TestButton(self))
1058 entities.push(new SaveButton(self))
1059 entities.push(new LoadButton(self))
1060 run
1061 end
1062
1063 # Launch the title screen
1064 fun title
1065 do
1066 init_menu
1067 entities.push(new Splash(self))
1068 run
1069 end
1070
1071 # Helper function to initialize the menu (and tile) screen
1072 fun init_menu
1073 do
1074 init_game
1075 level = null
1076 var i = levels.first
1077 for l in levels do
1078 i = l
1079 if l.get_state == l.l_open then break
1080 end
1081 entities.push(new StartButton(self, i))
1082 end
1083
1084 # Launch the menu.
1085 fun menu
1086 do
1087 init_menu
1088 var t
1089 t = new TextButton(self,"LEVEL SELECT", 120, ypad, "white", null, null)
1090 entities.push(t)
1091 for i in [0..levels.length[ do
1092 var b = new LevelButton(levels[i])
1093 entities.push(b)
1094 end
1095 t = new Achievement(self, 0, "Training")
1096 entities.push(t)
1097 t = new Achievement(self, 1, "Gold")
1098 entities.push(t)
1099 t = new Achievement(self, 2, "Editor")
1100 entities.push(t)
1101 t = new Achievement(self, 3, "Challenge")
1102 entities.push(t)
1103 t = new Achievement(self, 4, "Congraturation")
1104 entities.push(t)
1105 t = new Achievement(self, 5, "Awesome")
1106 entities.push(t)
1107 run
1108 end
1109
1110 # Last function called when the lauch state is ready
1111 fun run do
1112 dirty_all = true
1113 end
1114
1115 # Should all entity redrawn?
1116 var dirty_all = true
1117
1118 # Draw all game entities.
1119 fun draw(display: Display) do
1120 dirty_all = true
1121 if dirty_all then display.blit(back, 0, 0)
1122 for g in entities do
1123 if g.dirty or dirty_all then
1124 g.dirty = false
1125 #if g.x2-g.x>0 and g.y2-g.y>0 then ctx.drawImage(back, g.x, g.y, g.x2-g.x, g.y2-g.y, g.x, g.y, g.x2-g.x, g.y2-g.y)
1126 g.draw(display)
1127 #ctx.rect(g.x, g.y, g.width, g.height)
1128 end
1129 end
1130 var ev = lastev
1131 if ev isa Event then
1132 # Cursor, kept for debugging
1133 #display.blit(img[4,0],ev.offset_x-42,ev.offset_y-6)
1134 end
1135 dirty_all = false
1136 end
1137
1138 # Update all game entities.
1139 fun step do
1140 if solver != null and not solver_pause then
1141 if solver.run_steps(solver_steps) != null then solver_pause = true
1142 print solver.to_s
1143 if not solver.is_running then solver = null
1144 end
1145 for g in entities do
1146 g.update
1147 end
1148 end
1149
1150 # Return the game entity located at a mouse event.
1151 fun get_game_element(ev: Event): nullable Entity
1152 do
1153 var x = ev.offset_x
1154 var y = ev.offset_y
1155 for g in entities do
1156 if x>=g.x and x<g.x2 and y>g.y and y<g.y2 then
1157 ev.game_x = x-g.x
1158 ev.game_y = y-g.y
1159 #print "get {g}"
1160 return g
1161 end
1162 end
1163 return null
1164 end
1165
1166 # The game entlty the mouse went down on
1167 var drag: nullable Entity = null
1168
1169 # Last mouse event. Used to dray the cursor
1170 var lastev: nullable Event = null
1171
1172 # Callback when the mouse is pressed
1173 fun onMouseDown(ev: Event) do
1174 lastev = ev
1175 var g = get_game_element(ev)
1176 if g != null then
1177 g.click(ev)
1178 g.dirty = true
1179 end
1180 drag = g
1181 end
1182
1183 # Callback when the mouse is releassed
1184 fun onMouseUp(ev: Event) do
1185 drag = null
1186 end
1187
1188 # Callback when the mouse if moved while pressed
1189 fun onMouseMove(ev: Event) do
1190 lastev = ev
1191 var g = get_game_element(ev)
1192 if g == null then
1193 statusbar.dirty = true
1194 statusbar.over_txt = null
1195 statusbar.over_what = null
1196 return
1197 end
1198 if statusbar.over_what != g then
1199 statusbar.dirty = true
1200 var go = g.over
1201 statusbar.over_txt = go
1202 statusbar.over_what = g
1203 g.enter(ev)
1204 if go != null then print "***OVER*** {go}"
1205 end
1206 # We moved abode a element that accepts drag event
1207 if drag == g and g.draggable then
1208 # print "DRAG {g}"
1209 ev.drag = true
1210 g.click(ev)
1211 g.dirty = true
1212 end
1213 end
1214
1215 # Current solver, if any
1216 var solver: nullable BacktrackSolver[Grid, Action] = null
1217
1218 # Is the solver paused?
1219 var solver_pause = false
1220
1221 # Number of solver steps played in a single game `update`
1222 var solver_steps = 20000
1223
1224 # Callback when a keyboard event is recieved
1225 fun onKeyDown(ev: Event) do
1226 var kc = ev.char_code
1227 if kc == "e" then
1228 grid_edit = grid.copy(true)
1229 edit_grid(grid)
1230 else if kc == "s" then
1231 if solver == null then
1232 solver = (new FriendzProblem(grid)).solve
1233 solver_pause = false
1234 else
1235 solver_pause = not solver_pause
1236 end
1237 #solver.step
1238 else if kc == "d" then
1239 if solver == null then
1240 solver = (new FriendzProblem(grid)).solve
1241 solver_pause = true
1242 else
1243 solver.run_steps(1)
1244 end
1245 else if kc == "+" then
1246 solver_steps += 100
1247 print solver_steps
1248 else if kc == "-" then
1249 solver_steps -= 100
1250 print solver_steps
1251 else for g in entities do
1252 if kc == g.shortcut then
1253 g.click(ev)
1254 g.dirty = true
1255 end
1256 end
1257 end
1258
1259 redef fun load_levels
1260 do
1261 super
1262
1263 for level in levels do
1264 var score = app.data_store["s{level.str.md5}"]
1265 if score isa Int then
1266 level.score = score
1267 end
1268 end
1269 end
1270 end
1271
1272 # The spash title image
1273 class Splash
1274 super Entity
1275 init(game: Game)
1276 do
1277 super(game,game.xpad,game.ypad,380,350)
1278 end
1279 redef fun draw(ctx)
1280 do
1281 ctx.blit(game.logo, game.xpad, game.ypad)
1282 end
1283 redef fun click(ev)
1284 do
1285 game.snd_whip.play
1286 game.menu
1287 end
1288 end
1289
1290 class NextLevelButton
1291 super TextButton
1292 init(game: Game)
1293 do
1294 super(game, "NEXT LEVEL", 440, 24, "cyan", "Play next level", null)
1295 enabled = false
1296 end
1297
1298 redef fun update
1299 do
1300 var w = game.level.check_won(game.grid)
1301 if self.enabled != w then
1302 self.dirty = true
1303 self.enabled = w
1304 if w then
1305 game.snd_win.play
1306 game.statusbar.set_tmp("Level solved!", "cyan")
1307 end
1308 end
1309 end
1310
1311 redef fun click(ev)
1312 do
1313 if not self.enabled then
1314 game.snd_duh.play
1315 var grid = game.grid
1316 var monsters = grid.monsters
1317 var angry = new Array[Tile]
1318 var lonely = new Array[Tile]
1319 var edges = new Array[Tile]
1320 for i in [0..grid.width[ do
1321 for j in [0..grid.height[ do
1322 var t = grid.grid[i][j]
1323 if t.kind == 0 then continue
1324 if t.nexts == 0 then lonely.push(t)
1325 if t.nexts == 1 and not monsters[t.kind].chain then edges.push(t)
1326 if t.nexts > 2 then angry.push(t)
1327 end
1328 end
1329
1330 var l
1331 if angry.length>0 then
1332 l = angry
1333 else if lonely.length>0 then
1334 l = lonely
1335 else
1336 l = edges
1337 end
1338 for i in l do i.shocked=5
1339
1340 if angry.length>0 then
1341 game.statusbar.set_tmp("Angry monsters!", "red")
1342 else if lonely.length>0 then
1343 game.statusbar.set_tmp("Lonely monsters!", "red")
1344 else if not grid.won then
1345 game.statusbar.set_tmp("Unconnected monsters!", "red")
1346 else
1347 game.statusbar.set_tmp("Not enough monsters!", "red")
1348 end
1349 return
1350 end
1351
1352 game.snd_whip.play
1353 game.play_next
1354 end
1355 end
1356
1357 class MusicButton
1358 super TextButton
1359 init(game: Game)
1360 do
1361 super(game, "MUSIC", 470, 412, "purple", "Mute the music", "Unmute the music")
1362 end
1363 redef fun click2(ev)
1364 do
1365 game.music_muted = self.toggled
1366 if game.music_muted then game.music.pause else game.music.play
1367 #game.save_cookie("music_muted",music_muted?"true":"")
1368 end
1369 end
1370
1371 class SFXButton
1372 super TextButton
1373 init(game: Game)
1374 do
1375 super(game, "SOUND FX", 470, 382, "purple", "Mute the sound effects", "Unmute the sound effects")
1376 end
1377
1378 redef fun click2(ev)
1379 do
1380 game.sfx_muted = self.toggled
1381 if not game.sfx_muted then game.snd_whip.play # Because the automatic one was muted
1382 #save_cookie("sfx_muted",sfx_muted?"true":"")
1383 end
1384 end
1385
1386 class MenuButton
1387 super TextButton
1388 init(game: Game)
1389 do
1390 super(game, "MENU", 470, 442, "purple", "Exit to the main menu", null)
1391 shortcut = "back"
1392 end
1393
1394 redef fun click2(ev)
1395 do
1396 game.menu
1397 end
1398 end
1399
1400 class ResetButton
1401 super TextButton
1402 init(game: Game)
1403 do
1404 super(game,"RESET", 440, 61, "purple", "Clear the grid",null)
1405 end
1406
1407 var count = 0
1408
1409 redef fun click2(ev)
1410 do
1411 self.count += 1
1412 if self.count==1 then
1413 game.statusbar.set_tmp("Click again to reset","white")
1414 else if self.count==2 then
1415 game.grid.reset(false)
1416 if game.editing then
1417 game.statusbar.set_tmp("Click again to clear all","white")
1418 end
1419 else if game.editing then
1420 game.grid.reset(true)
1421 end
1422 game.dirty_all = true
1423 end
1424
1425 redef fun enter2
1426 do
1427 self.count = 0
1428 end
1429 end
1430
1431 class EditButton
1432 super TextButton
1433 init(game: Game)
1434 do
1435 super(game,"EDIT", 540, 24, "purple", "Return to the editor",null)
1436 end
1437
1438 redef fun click2(ev)
1439 do
1440 var ge = game.grid_edit
1441 assert ge != null
1442 game.edit_grid(ge)
1443 end
1444 end
1445
1446 class WonButton
1447 super TextButton
1448 init(game: Game)
1449 do
1450 super(game,"WON", 440, 24, "cyan", "", null)
1451 enabled = false
1452 end
1453 redef fun click2(ev)
1454 do
1455 var ge = game.grid_edit
1456 if not self.enabled then
1457 game.statusbar.set_tmp("Solve the level first!", "red")
1458 else if ge != null then
1459 game.snd_whip.play
1460 game.edit_grid(ge)
1461 else
1462 game.snd_whip.play
1463 game.menu
1464 end
1465 end
1466
1467 redef fun update
1468 do
1469 var w = game.grid.won
1470 if self.enabled != w then
1471 self.dirty = true
1472 self.enabled = w
1473 if w then
1474 game.snd_win.play
1475 game.statusbar.set_tmp("Level solved!", "cyan")
1476 end
1477 end
1478 end
1479 end
1480
1481 class TestButton
1482 super TextButton
1483 init(game: Game)
1484 do
1485 super(game,"TEST", 440, 24, "cyan", "Try to play the level", null)
1486 end
1487
1488 redef fun click2(ev)
1489 do
1490 game.grid_edit = game.grid
1491 game.play_grid(game.grid.copy(false))
1492 end
1493 end
1494
1495 class SaveButton
1496 super TextButton
1497 init(game: Game)
1498 do
1499 super(game, "SAVE", 540, 24, "purple", "Save the level", null)
1500 end
1501
1502 redef fun click2(ev)
1503 do
1504 var res = game.grid.save
1505 print "SAVE: {res}"
1506 end
1507 end
1508
1509 class LoadButton
1510 super TextButton
1511 init(game: Game)
1512 do
1513 super(game,"LOAD", 540, 61, "purple", "Load an user level", null)
1514 end
1515
1516 redef fun click2(ev)
1517 do
1518 var grid2 = new Grid(game.gw,game.gh,game.monsters)
1519 if grid2.load("") then
1520 game.grid = grid2
1521 end
1522 game.dirty_all = true
1523 end
1524 end
1525
1526 class ContinueButton
1527 super TextButton
1528 init(game: Game)
1529 do
1530 super(game,"CONTINUE", 440, 24, "purple", "Continue playing", null)
1531 end
1532
1533 redef fun click2(ev)
1534 do
1535 game.play_next
1536 end
1537 end
1538
1539 class StartButton
1540 super TextButton
1541 var level: Level
1542 init(game: Game, level: Level)
1543 do
1544 self.level = level
1545 if level.number == 0 then
1546 super(game,"START", 440, 24, "purple", "Play the first level", null)
1547 else
1548 super(game,"CONTINUE", 440, 24, "purple", "Continue from level "+level.name, null)
1549 end
1550 end
1551
1552 redef fun click2(ev)
1553 do
1554 game.play(level)
1555 end
1556 end
1557
1558 #
1559
1560 redef class App
1561
1562 # The game
1563 var game: Game
1564
1565 # Wanted screen width
1566 var screen_width = 640
1567
1568 # Wanted screen height
1569 var screen_height = 480
1570
1571 redef fun on_create
1572 do
1573 super
1574 game = new Game
1575 game.font.hspace = -2
1576 if args.length > 0 then
1577 game.play(game.levels[args.first.to_i])
1578 end
1579 # img loading?
1580 end
1581
1582 # Maximum wanted frame per second
1583 var max_fps = 30
1584
1585 # clock used to track FPS
1586 private var clock = new Clock
1587
1588 redef fun frame_core(display)
1589 do
1590 game.step
1591 game.draw(display)
1592 var dt = clock.lapse
1593 var target_dt = 1000000000 / max_fps
1594 if dt.sec == 0 and dt.nanosec < target_dt then
1595 var sleep_t = target_dt - dt.nanosec
1596 sys.nanosleep(0, sleep_t)
1597 end
1598 end
1599
1600 redef fun input(input_event)
1601 do
1602 #print input_event
1603 if input_event isa QuitEvent then # close window button
1604 quit = true # orders system to quit
1605 else if input_event isa PointerEvent then
1606 var ev = new Event(input_event.x.to_i, input_event.y.to_i, "")
1607 if input_event.is_motion then
1608 game.onMouseMove(ev)
1609 else if input_event.pressed then
1610 game.onMouseDown(ev)
1611 else
1612 game.onMouseUp(ev)
1613 end
1614 return true
1615 else if input_event isa KeyEvent and input_event.is_down then
1616 var ev = new Event(0, 0, input_event.key_name)
1617 game.onKeyDown(ev)
1618 return true
1619 end
1620
1621 return false
1622 end
1623 end
1624
1625 redef class PointerEvent
1626 fun is_motion: Bool do return false
1627 end
1628
1629 redef class KeyEvent
1630 fun key_name: String
1631 do
1632 var c = to_c
1633 if c != null then return c.to_s
1634 return "unknown"
1635 end
1636 end
1637
1638 redef class Level
1639 redef fun save
1640 do
1641 app.data_store["s{str.md5}"] = if score > 0 then score else null
1642 end
1643 end