Difference between revisions of "Tutorial Project. Release 7. Class GenericComputer"

From wiki.visual-prolog.com

m
m
Line 2: Line 2:
<vip>
<vip>
/******************************************************
/******************************************************
Copyright (c) 2008 Prolog Development Center SPb
Tested with Vip7.3
Copyright (c) 2007-2010 Victor Yukhtenko
Written by: Victor Yukhtenko
Written by: Victor Yukhtenko
*******************************************************/
*******************************************************/



Revision as of 23:19, 4 June 2010

Tutorial Project. Release 7
/******************************************************
Tested with Vip7.3
Copyright (c) 2007-2010 Victor Yukhtenko
Written by: Victor Yukhtenko
 
*******************************************************/
 
/******************************************
  Interface polylineStrategy
******************************************/
interface polylineStrategy
open core
 
predicates
    setGenericComputer:(genericComputer).
    successfulStep: (juniourJudge::cell*)->juniourJudge::cell nondeterm.
    randomStep:()->juniourJudge::cell determ.
 
end interface polylineStrategy
 
/************************
  Class GenericComputer
************************/
interface genericComputer
    supports player
    supports polylineStrategy
 
predicates
    setpolylineStrategy:(polylineStrategy).
    stepCandidate: (juniourJudge::cell*,juniourJudge::cell* [out],juniourJudge::cell [out]) nondeterm.
 
end interface genericComputer
 
class genericComputer:genericComputer
open core, exception
 
end class genericComputer
 
implement genericComputer
    delegate interface polylineStrategy to polylineStrategy_V
 
open core
 
facts
    name:string:="Cmp_".
    polylineStrategy_V:polylineStrategy:=erroneous.
 
clauses
    setName(ProposedId):-
        name:=string::format("%s%s",name,ProposedId),
        Name=humanInterface::getInput(humanInterface::playerName_S,name),
        if not(Name="") then
            name:=Name
        end if.
 
clauses
    setpolylineStrategy(PolylineStrategyObject):-
        polylineStrategy_V:=PolylineStrategyObject,
        polylineStrategy_V:setGenericComputer(This).
 
clauses
    move():-
        humanInterface::announce(humanInterface::thinker_S,name),
        Cell=resolveStep(),
        try
            juniourJudge::set(toString(Cell))
        catch _Trace_D do
            humanInterface::announce(humanInterface::error_S,"Internal Error in the computerStrategy\n"),
            humanInterface::waitOk()
        end try.
 
predicates
    resolveStep:()->juniourJudge::cell.
clauses
    resolveStep()=Cell:-
        Cell=successfulStep(juniourJudge::polyline_P),
        !.
    resolveStep()=Cell:-
        Cell=randomStep(),
        !.
    resolveStep()=juniourJudge::c(X+1,Y+1):-
        X=math::random(juniourJudge::maxColumn_P-1),
        Y=math::random(juniourJudge::maxRow_P-1).
 
clauses
    stepCandidate([Cell],[Cell,NewCell], NewCell):-
        juniourJudge::neighbour_nd(Cell, NewCell).
    stepCandidate([Left, RestrictingCell | PolyLine],[NewCell,Left, RestrictingCell| PolyLine], NewCell):-
        NewCell=juniourJudge::neighbourOutOfPolyLine_nd(Left,RestrictingCell).
    stepCandidate(PolyLine,list::reverse([NewCell,Left, RestrictingCell |PolyLineTail]),NewCell):-
        [Left, RestrictingCell |PolyLineTail] = list::reverse(PolyLine),
        NewCell=juniourJudge::neighbourOutOfPolyLine_nd(Left,RestrictingCell).
 
clauses
    announceWin():-
        humanInterface::announce(humanInterface::win_S,name).
 
clauses
    announceLoss():-
        humanInterface::announce(humanInterface::loss_S,name).
 
end implement genericComputer

References