This repository has been archived on 2023-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
iaj/TP1/Prolog/sokoban/board.pl

33 lines
897 B
Perl
Raw Normal View History

2023-02-28 18:27:29 +01:00
next_location(Start, End, up) :- top(Start, End).
next_location(Start, End, down) :- top(End, Start).
next_location(Start, End, right) :- top(Start, End).
next_location(Start, End, left) :- top(End, Start).
% explication nécessaire
corner(X) :- \+ noncorner(X).
noncorner(X) :- top(_, X), top(X, _).
noncorner(X) :- right(_, X), right(X, _).
% explication nécessaire
stuck(X, Y) :-
(right(X, Y) ; right(Y, X)),
(\+ storage(X); \+ storage(Y)),
(\+ top(X,_), \+ top(Y,_); \+ top(_,X), \+ top(_,Y)),
!.
stuck(X,Y):-
(top(X,Y);top(Y,X)),
(\+ storage(X); \+ storage(Y)),
(\+ right(X,_), \+ right(Y,_); \+ right(_,X), \+ right(_,Y)),
!.
insert_list(X, [], [X]).
insert_list(X, [Y|Ysuite], [X, Y|Ysuite]) :-
X @=<Y,!.
insert_list(X, [Y|Ysuite], [Y|Ordered]) :-
insert_list(X, Ysuite, Ordered).
end([]).
end([Pos|Suite]) :-
storage(Pos),
end(Suite).