Difference between revisions of "Module"

From Robowiki
Jump to navigation Jump to search
(Module bot structure)
 
m (Tutorials category)
Line 47: Line 47:
  
 
*Graphical debug of the parts
 
*Graphical debug of the parts
 +
 +
[[Category:Tutorials]]

Revision as of 18:11, 23 March 2008

Parts Repository:
/Movement - /Targeting - /Radar - /Gun - /SelectEnemy
Module
Current Version 0.1
Download

Introduction

Module is a simple bot structure that can be extended to create your own bots. There are many other approaches (AbstractBot, PluggableRobot...) and most of the mega Bots use some kind of modular architecture.

Main advantages:

  • Ease of maintenance
  • Reusability capacity

Module is also intended to be the reference for the beginners to see the different techniques through a reusable parts repository.

Get started

Download Module and take a look at the class ExampleBot that extends Module to see how it works. Then look at the packages movement, targeting etc. to see the implementation that comes with the example. Now you can build your own independent reusable parts for your bots using the Module structure, or check the parts repository to learn new techniques.


Details

Bot parts

The following parts define the bot behavior in Module.

Movement, Gun, Targeting, Radar and SelectEnemy

  • Movement: Move and turn the bot
  • Gun: Choose the power of the bullet power and fires
  • Targeting: Turn the gun to aim the enemies
  • Radar: Turn the radar to scan the enemies
  • SelectEnemy: Select the current enemy from list of enemies in the battlefield

Movement, Gun, Targeting, Radar and SelectEnemy extends Part


Module manages

  • Information about the enemies
  • Information about my own bullets
  • Information about enemy bullets
  • Graphical debug of the parts