Package stanfordlogic.jocular.game

Examples of stanfordlogic.jocular.game.GenericGamerFactory


        }

        setupLoggerProperties();

        // TODO: read gamer config from file
        GenericGamerFactory factory = new GenericGamerFactory();
        factory.setGamerType(RLGamer.class);
        GameManager.setGamerFactory(factory);

        try
        {
            ConnectionManager manager = new ConnectionManager(port,new RequestHandlerFactory());
View Full Code Here


    public static void main( String [] args ) throws Exception
    {
        Main.setupLoggerProperties();
       
        GenericGamerFactory factory = new GenericGamerFactory();
        factory.setGamerType(MinimaxGamer.class);
        GameManager.setGamerFactory(factory);
       
       
        String kif, role;
        //String logFile;
View Full Code Here

TOP

Related Classes of stanfordlogic.jocular.game.GenericGamerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.