-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckers.wat
138 lines (138 loc) · 3.28 KB
/
checkers.wat
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
(module
(memory $mem 1)
;; Globals (Game)
(global $BLACK i32 (i32.const 1))
(global $WHITE i32 (i32.const 2))
(global $CROWN i32 (i32.const 4))
;; Globals (Helpers)
(global $FOURBYTES i32 (i32.const 4))
(global $LINEARIZE i32 (i32.const 8))
;; Returns the index for a given position
(func $indexForPosition (param $x i32) (param $y i32) (result i32)
(i32.add
(i32.mul
(get_global $LINEARIZE)
(get_local $y)
)
(get_local $x)
)
)
;; Offset = (x + y * 8) * 4
(func $offsetForPosition (param $x i32) (param $y i32) (result i32)
(i32.mul
(call $indexForPosition
(get_local $x)
(get_local $y)
)
(get_global $FOURBYTES)
)
)
;; Determine if a piece is white
(func $isWhite (param $piece i32) (result i32)
(i32.eq
(i32.and
(get_local $piece)
(get_global $WHITE)
)
(get_global $WHITE)
)
)
;; Determine if a piece is black
(func $isBlack (param $piece i32) (result i32)
(i32.eq
(i32.and
(get_local $piece)
(get_global $BLACK)
)
(get_global $BLACK)
)
)
;; Determine if a piece has been crowned
(func $isCrowned (param $piece i32) (result i32)
(i32.eq
(i32.and
(get_local $piece)
(get_global $CROWN)
)
(get_global $CROWN)
)
)
;; Add crown to a given piece (no mutation)
(func $addCrown (param $piece i32) (result i32)
(i32.or
(get_local $piece)
(get_global $CROWN)
)
)
;; Remove crown from a given piece (no mutation)
(func $removeCrown (param $piece i32) (result i32)
(i32.and
(get_local $piece)
(i32.const 3)
)
)
;; Detect if values are within range (high- and low inclusive)
(func $inRange (param $low i32) (param $high i32) (param $value i32) (result i32)
(i32.and
(i32.ge_s
(get_local $value)
(get_local $low)
)
(i32.le_s
(get_local $value)
(get_local $high)
)
)
)
;; Sets a piece on the board
(func $setPiece (param $x i32) (param $y i32) (param $piece i32)
(i32.store
(call $offsetForPosition
(get_local $x)
(get_local $y)
)
(get_local $piece)
)
)
;; Gets a piece from the board (out-of-range causes a trap!)
(func $getPiece (param $x i32) (param $y i32) (result i32)
(if (result i32)
(block (result i32)
(i32.and
(call $inRange
(i32.const 0)
(i32.const 7)
(get_local $x)
)
(call $inRange
(i32.const 0)
(i32.const 7)
(get_local $y)
)
)
)
(then
(i32.load
(call $offsetForPosition
(get_local $x)
(get_local $y)
)
)
)
(else
(unreachable)
)
)
)
;; Module exports
(export "indexForPosition" (func $indexForPosition))
(export "offsetForPosition" (func $offsetForPosition))
(export "isCrowned" (func $isCrowned))
(export "isWhite" (func $isWhite))
(export "isBlack" (func $isBlack))
(export "addCrown" (func $addCrown))
(export "removeCrown" (func $removeCrown))
(export "inRange" (func $inRange))
(export "getPiece" (func $getPiece))
(export "setPiece" (func $setPiece))
)