-
Notifications
You must be signed in to change notification settings - Fork 0
/
testIAs.pl
80 lines (69 loc) · 2.9 KB
/
testIAs.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
%%%%%%%%%%%% testIAs.pl %%%%%%%%%%%%
% Permet de tester comment performent différentes IAs lorsqu'elles jouent l'une contre l'autre.
% swipl -g runTest({nb_iterations},{ia1},{ia2}),halt -f ../testIAs.pl
%%%%%%%%%%%%%%%%
%% Inclusions %%
%%%%%%%%%%%%%%%%
:- use_module(jeu).
:- use_module(ia).
:- use_module(evalOld).
:- use_module(miniMax).
:- ['webserver.pl'].
:- dynamic joueurCourant/2.
:- dynamic autreJoueur/2.
%%%%%%%%%%%%%%%%%%%%%%%
%% Prédicats publics %%
%%%%%%%%%%%%%%%%%%%%%%%
% runTest/3
% NbIterations: le nombre de parties à jouer,
% IA1 et IA2 : les identifiants des 2 IA à confronter
% IA1 joue contre IA2 "NbIterations" fois le predicat affiche combien de fois qui a battu qui
runTest(NbIterations,IA1,IA2) :-
NbIterationsParIA is NbIterations//2,
runTestIAXEnPremier(NbIterationsParIA,IA1,IA2,0,NbFoisIA1GagneEnCommencant,0,NbFoisIA1PerdEnCommencant),
runTestIAXEnPremier(NbIterationsParIA,IA2,IA1,0,NbFoisIA2GagneEnCommencant,0,NbFoisIA2PerdEnCommencant),
typeJoueur(IA1,TypeIA1),
typeJoueur(IA2,TypeIA2),
write(TypeIA2), write(' en commençant : a gagné '), write(NbFoisIA2GagneEnCommencant),write(' fois et a perdu '),write(NbFoisIA2PerdEnCommencant),write(' fois.'),
nl,
write(TypeIA1), write(' en commençant : a gagné '), write(NbFoisIA1GagneEnCommencant),write(' fois et a perdu '),write(NbFoisIA1PerdEnCommencant),write(' fois.'),
!.
%%%%%%%%%%%%%%%%%%%%%%
%% Prédicats privés %%
%%%%%%%%%%%%%%%%%%%%%%
% test de sortie de runTestIAXEnPremier
runTestIAXEnPremier(0,_,_,NbIA1GagneIni,NbIA1GagneIni,NbIA2GagneIni,NbIA2GagneIni) :- !.
runTestIAXEnPremier(NbIterations,IA1,IA2,NbIA1GagneIni,NbIA1GagneFin,NbIA2GagneIni,NbIA2GagneFin) :-
init,
assert(joueurCourant(rouge,IA1)), % rouge = IA1
assert(autreJoueur(jaune,IA2)),
jeu(PartieNulle),
joueurCourant(CouleurIAGagnante,_),
incrementerGagnant(PartieNulle,CouleurIAGagnante,NbIA1GagneIni,NbIA1GagneFin1,NbIA2GagneIni,NbIA2GagneFin1),
NbIterations2 is NbIterations-1,
runTestIAXEnPremier(NbIterations2,IA1,IA2,NbIA1GagneFin1,NbIA1GagneFin,NbIA2GagneFin1,NbIA2GagneFin).
incrementerGagnant(true,_,NbIA1GagneIni,NbIA1GagneIni,NbIA2GagneIni,NbIA2GagneIni).
incrementerGagnant(false,rouge,NbIA1GagneIni,NbIA1GagneFin,NbIA2GagneIni,NbIA2GagneIni) :-
NbIA1GagneFin is NbIA1GagneIni+1.
incrementerGagnant(false,jaune,NbIA1GagneIni,NbIA1GagneIni,NbIA2GagneIni,NbIA2GagneFin) :-
NbIA2GagneFin is NbIA2GagneIni+1.
jeu(PartieNulle) :-
tour(PartieNulle).
tour(PartieNulle) :-
joueurCourant(CouleurJCourant,TypeJoueur),
obtenirCoup(CouleurJCourant,TypeJoueur,Coup),
placerJeton(Coup,Y,CouleurJCourant),
testFin(Coup,Y,CouleurJCourant, PartieNulle).
testFin(Coup,Y,CouleurJCourant,PartieNulle) :-
gagne(Coup,Y,CouleurJCourant),
PartieNulle=false.
testFin(_,_,_,PartieNulle) :-
not(coupPossible),
PartieNulle=true.
testFin(_,_,_,PartieNulle) :-
changerJoueur,
tour(PartieNulle).
init :-
initJeu,
retractall(joueurCourant(_,_)),
retractall(autreJoueur(_,_)).