예제 #1
0
 public CheckPathState(FSMAIControl control)
 {
     this.control = control;
 }
예제 #2
0
 public IdleState(FSMAIControl control)
 {
     this.control = control;
 }
예제 #3
0
파일: Game1.cs 프로젝트: randoro/CarGame
        /// <summary>
        /// LoadContent will be called once per game and is the place to load
        /// all of your content.
        /// </summary>
        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);
            cars = Content.Load<Texture2D>("cars");
            font = Content.Load<SpriteFont>("font");
            queueList = new List<LinkedList<FallingCar>>();
            for (int i = 0; i < Globals.lanes; i++)
            {
                queueList.Add(new LinkedList<FallingCar>());
            }

            controlCar = new ControlCar(0);

            AI = new FSMAIControl(queueList);
            //testCar2 = new FallingCar(0, 0);
            // TODO: use this.Content to load your game content here
        }
예제 #4
0
 public MoveState(FSMAIControl control)
 {
     this.control = control;
 }