-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClue.pl
183 lines (154 loc) · 3.67 KB
/
Clue.pl
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
176
177
178
179
180
181
:- dynamic seen/1.
:- dynamic active_player/1.
:- dynamic current_player/1.
:- dynamic room/1.
:- dynamic weapon/1.
:- dynamic seen_suggestion/2.
%initialize characters
%these never change
character(scarlet).
character(mustard).
character(white).
character(green).
character(peacock).
character(plum).
%spatial relations between characters
left_of(scarlet, mustard).
left_of(mustard, white).
left_of(white, green).
left_of(green, peacock).
left_of(peacock, plum).
left_of(plum, scarlet).
%meta left_of relation
relatively_left(Left, Right) :-
left_of(Left, Right).
relatively_left(Left, Right) :-
left_of(Left, Intermediate),
relatively_left(Intermediate, Right).
%initialize weapons
%0 for old school, 1 for new school
initWeapons(0) :-
assert(weapon(knife)),
assert(weapon(candlestick)),
assert(weapon(revolver)),
assert(weapon(rope)),
assert(weapon(pipe)),
assert(weapon(wrench)).
initWeapons(1) :-
assert(weapon(knife)),
assert(weapon(candlestick)),
assert(weapon(pistol)),
assert(weapon(rope)),
assert(weapon(bat)),
assert(weapon(ax)).
%initialize rooms
%0 for old school, 1 for new school
initRooms(0) :-
assert(room(kitchen)),
assert(room(ballroom)),
assert(room(conservatory)),
assert(room(billiard)),
assert(room(library)),
assert(room(study)),
assert(room(hall)),
assert(room(lounge)),
assert(room(dining)).
initRooms(1) :-
assert(room(kitchen)),
assert(room(patio)),
assert(room(spa)),
assert(room(theatre)),
assert(room(living)),
assert(room(observatory)),
assert(room(hall)),
assert(room(guest)),
assert(room(dining)).
setCurrentPlayer(Player) :-
retract(current_player(_)),
assert(current_player(Player)).
initPlayers([]).
initPlayers([Name|Names]) :-
assert(active_player(Name)),
initPlayers(Names).
nextTurn(Next) :-
current_player(Current),
relatively_left(Current, Next),
active_player(Next),
!.
initClue(Type, Players) :-
initWeapons(Type),
initRooms(Type),
initPlayers(Players),
assert(current_player(plum)),
%first player is always scarlet, so we seek first active player after plum
nextTurn(Next),
setCurrentPlayer(Next).
%wipe game databases
wipe :-
retract(weapon(_)),
retract(room(_)),
retract(active_player(_)),
retract(current_player(_)).
%when players gets shown a card/cards
shown([]).
shown([Card|Cards]) :-
assert(seen(Card)), shown(Cards).
%get_ functions for fetching game data
%to be used for menus etc.
%get play defaults
getCharacters(Chars) :-
setof(X, character(X), Chars).
getWeapons(Weapons) :-
setof(X, weapon(X), Weapons).
getRooms(Rooms) :-
setof(X, room(X), Rooms).
getAll(All) :-
getCharacters(C),
getWeapons(W),
getRooms(R),
append(W,R,Part),
append(C,Part,All).
%get eliminated cards
getEliminated(All) :-
setof(X, seen(X), All).
getEliminatedCharacters(Chars) :-
setof(X, (seen(X),character(X)), Chars).
getEliminatedWeapons(Weapons) :-
setof(X, (seen(X),weapon(X)), Weapons).
getEliminatedRooms(Rooms) :-
setof(X, (seen(X),room(X)), Rooms).
%get remaining/unknown cards
getRemainingCharacters(Chars) :-
getCharacters(C),
getEliminatedCharacters(E),
subtract(C,E,Chars).
getRemainingWeapons(Weapons) :-
getWeapons(W),
getEliminatedWeapons(E),
subtract(W,E,Weapons).
getRemainingRooms(Rooms) :-
getRooms(R),
getEliminatedRooms(E),
subtract(R,E,Rooms).
getRemainingAll(All) :-
getAll(A),
getEliminated(E),
subtract(A,E,All).
%print the contents of any list
printList([]).
printList([H|T]) :-
print(H),
print(', '),
printList(T).
%check for/get accusation
checkAccusation :-
getRemainingCharacters(RC),
getRemainingWeapons(RW),
getRemainingRooms(RR),
length(RC,1),
length(RW,1),
length(RR,1),
append(RW,RR,Part),
append(RC,Part,Accusation),
print('Accusation found:'),
printList(Accusation).