140 likes | 263 Views
Treasure Hunt A* agent against semi-stochastic enemies . Jorge Aparicio Arturo Deza. Software. XNA Game Design Library Programmed in Visual Studio 2010 Language : C# Sprite and Texture modeling - The Legend of Zelda: A Link to the Past. GIMP Inkscape. Game Scenario. Rules.
E N D
Treasure HuntA* agent against semi-stochastic enemies Jorge Aparicio Arturo Deza
Software • XNA Game Design Library • Programmed in Visual Studio 2010 • Language : C# • Sprite and Texture modeling - The Legend of Zelda: A Link to the Past. • GIMP • Inkscape
Rules • We have a finite map – modeled as a 50 x 25 Matrix. • Obstacles/Walls exist in the dungeon. • 5 Enemies in the dungeon and respawn if slaughtered. • Only 1 Agent explorer. • The goal is to make the Agent get to the treasure with the maximum amount of Health. • No diagonal movements through obstacles.
Health Threshold & Remapping Rate • If (Health > HealthThreshold) -> FightEnemy if close; -> Otherwise, MoveAgent; • After every x moves -> Remap A* algorithm;
Future Work • Use G.A. to determine optimal parameters. • Code Blocks to appear during Fairy A* algorithm. • Modify the Original Map to make it more Challenging!