Esempio n. 1
0
        public bool Configure(PlotColor color, string script, SwarmGame sg)
        {
            string transaction;

            m_color = color;
            m_sg    = sg;

            m_sg.Configure(color, script, out transaction);
            MainWindow.PostMessage(color, transaction);

            return(true);
        }
Esempio n. 2
0
        public MainWindow()
        {
            InitializeComponent();

            // startup swarm game
            m_swarmGame = new SwarmGame();

            // data
            m_scripts = new string[(int)PlotColor.Yellow + 1];

            Loaded += On_Loaded;
            Closed += On_Closed;
        }
Esempio n. 3
0
        private void StartPlayer(PlotColor color, SwarmGame swarmGame)
        {
            Thread      thread;
            SwarmWorker sw;

            // create the worker thread
            sw = new SwarmWorker();
            sw.Configure(color, m_scripts[(int)color], swarmGame);

            // kick off the thread
            thread = new Thread(new ThreadStart(sw.RunGame));
            thread.Start();
        }