RoboCode rough write-up

Maksat Tulepov

Robocode - Build the best, destroy the rest

required libraries - pygame, sys, random, string, math

Battleground:

Battle in robocode will take place in a rectangular zone.

screen = pygame.display.set_mode(size)

size is a tuple storing the horizontal and vertical lengths. Currently set to (700,500).

Robot:

creation;
    robots are made from multiple different parts. A base, a radar, a gun and the robots colour. They also have a mini version of themselves representing thier place on the lifeboard. They have their own health as well. Colour seems to be assigined randomly to each tank as they are made.