Example #1
0
        public ChildGrid GetSubGrid(int startX, int startY, int width, int height, bool showAll)
        {
            ChildGrid result = new ChildGrid(width, height, startX, startY, this, showAll);

            var mappedAgents = GetAgentMap();

            GridTraverse(startX, startY, width + startX, height + startY, (x, y) => {
                if (!(x < 0 || y < 0))
                {
                    var tile = this.Tiles[x, y];

                    result.Tiles[x - startX, y - startY]         = tile;
                    result.VisibleAgents[x - startX, y - startY] = mappedAgents[x, y];
                }
            });

            return(result);
        }
Example #2
0
        public void Render()
        {
            GridTraverse(0, 0, Tiles.GetLength(0), Tiles.GetLength(1), (y, x) => {                     //:todo i have no idea why i had to invert the traverse... y and x should be x,y....
                var player   = Omnicatz.Engine.Entities.PlayerInstanceManager.GetPlayer(this.Parrent); // Entities.Agent.Player.GetPlayer(this.Parrent);
                var distance = GridAI <AgentBase> .Distance(Tiles.GetLength(0) / 2, Tiles.GetLength(1) / 2, x, y);
                // if (distance < player.Awareness.Current*2 || showAll) { //InSight


                var visibletile  = Tiles[x, y];
                var visibleAgent = VisibleAgents[x, y];
                //same tile as last render and not an agent
                bool firstPass = lastRender == null;
                bool unchanged;

                if (firstPass)
                {
                    unchanged = false;
                }
                else
                {
                    var lastvisibleAgent = lastRender.VisibleAgents[x, y];
                    unchanged            = lastRender.Tiles[x, y] == visibletile && visibleAgent == null && lastvisibleAgent == null;
                }

                if (unchanged)
                {
                    Console.CursorLeft += 2;     //skip if we have done this before!
                }
                else
                {
                    if (visibleAgent != null)     // change and we have a agent to render which takes priority over tile
                    {
                        // var npc = visibleAgent as NPCBase;
                        //  var hostilityColor = npc.IsHostile ? ConsoleColor.DarkRed : ConsoleColor.Black;


                        //if (npc.AI != null) { <--- Breaking out this to make the game engine more generic
                        //    switch (npc.AI.State) {
                        //        case AIState.Dead:
                        //            Console.Write("DD");
                        //            break;
                        //        case AIState.Sleeping:
                        //            Console.Write("ZZ");
                        //            break;
                        //        default:
                        ConsoleHelper.Write(visibleAgent.Graphics[0], visibleAgent.ColorA);
                        ConsoleHelper.Write(visibleAgent.Graphics[1], visibleAgent.ColorB, visibleAgent.ColorB2);
                        //   break;
                        //  }

                        // } else {
                        //    ConsoleHelper.Write(visibleAgent.Graphics[0], visibleAgent.ColorA);
                        //     ConsoleHelper.Write(visibleAgent.Graphics[1], visibleAgent.ColorB, hostilityColor);
                        //  }
                    }
                    else if (visibletile != null)         // the change was a regular tile that fine render that!
                    {
                        ConsoleHelper.Write(visibletile.Graphics[0], visibletile.ColorA);
                        ConsoleHelper.Write(visibletile.Graphics[1], visibletile.ColorB);
                    }
                    else         // out of bounds and stuff
                    {
                        ConsoleHelper.Write("xx", ConsoleColor.Black, ConsoleColor.Black);
                    }
                }


                //} //InSight
                //else {
                //    Console.CursorLeft += 2;
                //}
            }, () => { Console.WriteLine(); });
            lastRender = this;
        }