Ejemplo n.º 1
0
        public World(
			Guid id,
			int version,
			string title,
			Player startingPlayer,
			IEnumerable<Board> boards,
			IEnumerable<Actor> actors,
			IEnumerable<Message> messages,
			IEnumerable<Timer> timers,
			IEnumerable<SoundEffect> soundEffects,
			IEnumerable<Song> songs)
        {
            title.ThrowIfNull("title");
            startingPlayer.ThrowIfNull("startingPlayer");
            boards.ThrowIfNull("boards");
            actors.ThrowIfNull("actors");
            messages.ThrowIfNull("messages");
            timers.ThrowIfNull("timers");
            soundEffects.ThrowIfNull("soundEffects");
            songs.ThrowIfNull("songs");
            if (version < 1)
            {
                throw new ArgumentOutOfRangeException("version", "Version must be at least 1.");
            }

            _id = id;
            _version = version;
            _title = title;
            _startingPlayer = startingPlayer;
            foreach (Board board in boards)
            {
                _boardsById.Add(board.Id, board);
            }
            foreach (Actor actor in actors)
            {
                _actorsById.Add(actor.Id, actor);
            }
            foreach (Message message in messages)
            {
                _messagesById.Add(message.Id, message);
            }
            foreach (Timer timer in timers)
            {
                _timersById.Add(timer.Id, timer);
            }
            foreach (SoundEffect soundEffect in soundEffects)
            {
                _soundEffectsById.Add(soundEffect.Id, soundEffect);
            }
            foreach (Song song in songs)
            {
                _songsById.Add(song.Id, song);
            }
        }
        public XElement Serialize(Player player, string elementName = "player")
        {
            player.ThrowIfNull("player");
            elementName.ThrowIfNull("elementName");

            return new XElement(
                elementName,
                CharacterSerializer.Instance.Serialize(player.Character),
                EventHandlerCollectionSerializer.Instance.Serialize(player.EventHandlerCollection),
                new XAttribute("id", player.Id),
                new XAttribute("boardId", player.BoardId),
                new XAttribute("coordinate", CoordinateSerializer.Instance.Serialize(player.Coordinate)));
        }
Ejemplo n.º 3
0
        public byte[] Serialize(Player player)
        {
            player.ThrowIfNull("player");

            var serializer = new CompactSerializer();

            serializer[0] = player.Id.ToByteArray();
            serializer[1] = player.BoardId.ToByteArray();
            serializer[2] = CoordinateSerializer.Instance.Serialize(player.Coordinate);
            serializer[3] = CharacterSerializer.Instance.Serialize(player.Character);
            serializer[4] = EventHandlerCollectionSerializer.Instance.Serialize(player.EventHandlerCollection);

            return serializer.Serialize();
        }
Ejemplo n.º 4
0
        public GameForm(Engine.Objects.World world, Player startingPlayer)
        {
            world.ThrowIfNull("world");
            startingPlayer.ThrowIfNull("startingPlayer");

            _world = world;
            _startingPlayer = startingPlayer;
            _multimediaPlayer = new MultimediaPlayer(_volumeConfigurationSection);

            InitializeComponent();
            SetNormalViewSize();

            fpsToolStripMenuItem.Checked = _fpsConfigurationSection.Visible;
            logToolStripMenuItem.Checked = _logConfigurationSection.Visible;
            worldTimeToolStripMenuItem.Checked = _worldTimeConfigurationSection.Visible;
            soundEffectsToolStripMenuItem.Checked = true;
            musicToolStripMenuItem.Checked = true;
        }
        public TextAdventureGame(
            GraphicsDevice graphicsDevice,
            Engine.Objects.World world,
            Player player,
            IMultimediaPlayer multimediaPlayer,
            IFpsConfiguration fpsConfiguration,
            ILogConfiguration logConfiguration,
            IWorldTimeConfiguration worldTimeConfiguration)
            : base(graphicsDevice, new ContentDirectoryContentManagerProvider())
        {
            world.ThrowIfNull("world");
            player.ThrowIfNull("player");
            multimediaPlayer.ThrowIfNull("multimediaPlayer");
            fpsConfiguration.ThrowIfNull("fpsConfiguration");
            logConfiguration.ThrowIfNull("logConfiguration");
            worldTimeConfiguration.ThrowIfNull("worldTimeConfiguration");

            _world = world;
            _player = player;
            _multimediaPlayer = multimediaPlayer;
            _fpsConfiguration = fpsConfiguration;
            _logConfiguration = logConfiguration;
            _worldTimeConfiguration = worldTimeConfiguration;
        }
Ejemplo n.º 6
0
        protected internal bool ChangeCoordinate(Board board, Player player, Coordinate destinationCoordinate)
        {
            board.ThrowIfNull("board");
            player.ThrowIfNull("player");

            if (board.ActorInstanceLayer[Coordinate] != this)
            {
                throw new ArgumentException("Board's actor instance layer does not contain this actor instance.", "board");
            }

            ActorInstance destinationActorInstance = board.ActorInstanceLayer[destinationCoordinate];
            Sprite foregroundSprite = board.ForegroundLayer[destinationCoordinate];

            if (destinationActorInstance != null || foregroundSprite != null || player.Coordinate == destinationCoordinate)
            {
                return destinationActorInstance == this;
            }

            board.ActorInstanceLayer.MoveTile(Coordinate, destinationCoordinate);

            Coordinate = destinationCoordinate;

            return true;
        }
Ejemplo n.º 7
0
        public BoardRendererState(Player player)
        {
            player.ThrowIfNull("player");

            _player = player;
        }
        private static void GetDrawingParameters(
            Board board,
            Player player,
            out Point topLeftPoint,
            out Coordinate topLeftCoordinate,
            out Coordinate bottomRightCoordinate)
        {
            int drawableTilesToLeft = Math.Min(Constants.GameWindow.TilesToLeftInclusive, player.Coordinate.X);
            int drawableTilesToTop = Math.Min(Constants.GameWindow.TilesToTopInclusive, player.Coordinate.Y);
            int drawableTilesToRight = Math.Min(Constants.GameWindow.TilesToRightExclusive, board.Size.Width - player.Coordinate.X - 1);
            int drawableTilesToBottom = Math.Min(Constants.GameWindow.TilesToBottomExclusive, board.Size.Height - player.Coordinate.Y - 1);

            topLeftPoint = new Point(
                Constants.PlayerRenderer.DestinationRectangle.X - (drawableTilesToLeft * TextAdventure.Xna.Constants.Tile.TileWidth),
                Constants.PlayerRenderer.DestinationRectangle.Y - (drawableTilesToTop * TextAdventure.Xna.Constants.Tile.TileHeight));
            topLeftCoordinate = new Coordinate(player.Coordinate.X - drawableTilesToLeft, player.Coordinate.Y - drawableTilesToTop);
            bottomRightCoordinate = new Coordinate(player.Coordinate.X + drawableTilesToRight, player.Coordinate.Y + drawableTilesToBottom);
        }
Ejemplo n.º 9
0
 private TextAdventureGame CreateGame(Engine.Objects.World world, Player startingPlayer)
 {
     return new TextAdventureGame(
         xnaControl.GraphicsDevice,
         world,
         startingPlayer,
         _multimediaPlayer,
         _fpsConfigurationSection,
         _logConfigurationSection,
         _worldTimeConfigurationSection);
 }
Ejemplo n.º 10
0
        protected override void OnShown(EventArgs e)
        {
            SetNormalViewSize();
            LoadGame(CreateGame(_world, _startingPlayer), _world);
            _world = null;
            _startingPlayer = null;

            base.OnShown(e);
        }