kosstbarz / rts1

Simple java rts game for learning java
0 stars 0 forks source link

Game engine #17

Open kosstbarz opened 6 years ago

kosstbarz commented 6 years ago

For now, game can be created, but nothing interesting happens. First of all, stratagy game should know, how many players it contains. This information should be given before game is created. (game can't be created without this information) We need to add new commands ("create player" and "create bot"). Let's say, we can create only one player and a number of bots, but overall number can't exceed number of players of game. After that, we can say, that game is ready to start (game and players are created). Both bots and player can build castle. Bot will do it automatically on the first step. Player can build it or not.

Ta0o commented 6 years ago

18