Differences

This shows you the differences between two versions of the page.


Previous revision
pelita [2018/09/07 14:44] – [Network games] Rike-Benjamin Schuppner
Line 1: Line 1:
-====== Programming Project ====== 
  
-[[https://github.com/ASPP/pelita_template|{{ :pelita_gui.png?nolink&600 }}]] 
-Pelita is a PacMan™ like game. Two teams each of two bots are placed in a maze with food pellets. The maze is split into two parts, the left one belongs to the team on the left (the blue team), the right one belongs to the team on the right (the red team). When a bot is in its own homezone it is a ghost. A ghost can defend its own food pellets by killing the enemies. When a bot is in its enemy's homezone it is a pacman and can eat the enemy's food. 
- 
-Your task is to write a bot implementation. You have to implement the intelligence to navigate your bots successfully through the maze, kill the enemy's pacmen, and eat the enemy's food. 
- 
-No special previous knowledge about machine learning, artificial intelligence, deep neural networks, <color #949494>[insert your buzzword here]</color>, is required! All you need is a bit of Python knowledge and having attended the first three days of ASPP ;) 
- 
-==== Setup ==== 
-Install pelita: 
- 
-    pip3 install git+https://github.com/ASPP/pelita.git 
- 
-Clone the group repo (where ''N'' is your group number): 
- 
-    git clone https://github.com/ASPP/groupN.git 
- 
-See the documentation directly on https://github.com/ASPP/groupN 
- 
-==== Intent ==== 
- 
-We want to give you a chance of putting into practice the software development techniques and tools we have been talking about during the school. 
- 
-We expect you to try out the techniques, and evaluate what is feasible and what not, what helps you being more efficient at writing reliable code, and what feels like a hindrance instead. By doing this in the group we expect you to profit from the experience of other students, and, by explaining to other students your own experiences, to become more aware of what is it that you already master and what is it that you still have to learn. 
- 
-Write tests for the part of your code which are testable, decide what parts you //can// test, what parts you //should// test, what parts you //must// test, and also what parts //can not// be tested. Use git and GitHub, use branches or pull-requests: is this going to facilitate your work or is this adding a useless overhead? Feel invited to explore the trade-offs involved! 
- 
-The idea of the group project is **not** to write the coolest AI-powered bots! Remember that and don't get carried away by the competition :) 
- 
-==== Working in a team ==== 
-The group setting adds some additional hurdles to the challenge: you will be confronted with group dynamics which go beyond each member's technical skills. Try and have a curious and open attitude towards this experience, even when it becomes frustrating, annoying or even irritating. Everyone makes mistakes: enjoy making your own and helping other discover theirs. 
- 
-Remember that as a group you can define your own rules. You are responsible as a group for keeping a nice and stimulating atmosphere during your long programming sessions. Talk about how to distribute the work and how to distribute responsibility: these things don't happen on their own by magic! Be open in the group about problems, even inter-personal problems ;) And, if nothing else helps, come to us and we will help you! 
- 
-The final tournament is intended as a final party, where you can have fun watching **your** "product" running around in a maze. It doesn't really matter which group is going to win. Remember: no bot will be harmed in the making of this film ;) 
- 
-==== Suggestions ==== 
-Organizational: 
-  * take some time to discuss how you want to organize and distribute the work 
-  * take some time to discuss about the rules in your group. For example: 
-    * Are you allowed to be late or leave early? 
-    * Are you allowed to work alone and putting on your headphones?  
-    * Are you allowed to work outside of the classroom? 
-    * Are you allowed to push to ''master'' without having a review by another member of the team? 
-    * <color #949494>[If this were my group, the answer would be ''No'' to all questions :)]</color> 
-  * choose persons responsible for certain roles. You need at least: 
-    * a group speaker, and most probably… 
-    * … a release manager  
-    * <color #949494>[those two shouldn't be the same person]</color> 
-  * take time, once in a while, to step back and have a look at how the group work is going and to discuss if you need adjustments 
-  * work in **pairs** 
-Technical: 
-  * make sure each pair works on **different** files 
-  * write tests 
-  * everyone should write tests for their own code, don't assign someone specific to "write the tests" for everyone. Testing doesn't work this way! 
-  * do not waste too much time discussing your ''TEAM_NAME'', but choose one before the tournament 
-  * choose a git workflow: 
-    * if you choose to work with forks and PRs, decide who is going to merge PRs (the release manager) 
-    * if you choose to work in one repo, use different branches for different pairs (you still need someone responsible for merging the different branches when needed) 
-  * later we will make [[#network_games|network bots]] available which are more advanced than the demo ones, so that you can try your bots against more serious opponents 
-  * do **not** waste hours debugging Pelita or wondering about exotic cases: ask the tutors, they are there for you and are happy to help! 
- 
- 
-==== Tournament Rules ==== 
- 
-<alert type="warning" icon="fa fa-warning"> **WARNING** 
-  * The repos are going to be **frozen** on Saturday 8 September at exactly **17:00**! 
-  * Be sure there is a file in your repo named ''groupN.py'', where ''N'' is your group number 
-  * The file should define the string ''TEAM_NAME'' and the function ''move(turn, game) ⟶ (dx, dy)'' 
-</alert> 
- 
-The tournament is organized in two phases: 
-  - all-against-all (round-robin). Every team plays once against every other team: 
-    * ''0'' points for losing a game 
-    * ''1'' point for a draw 
-    * ''2'' points for winning a game 
-    * the maze is a random ''32×16'' maze without dead-ends 
-    * the side (blue/red) is randomly assigned 
-  - a knockout round (based on the rank from the round-robin): 
-    * semifinal 1: the 1st team against the 4th 
-    * semifinal 2: the 2nd team against the 3rd 
-    * **final**: the two winners of the semifinals against each other 
-    * **last-chance final**: the winner of the final against the 5th team from the round-robin 
-  - <color #949494>(if there is time and if the tutors are willing to risk):</color> 
-    * <color #949494>**the tutor-humiliation round**: the winner of the students against the tutors' bots </color> 
- 
-==== Network games ==== 
- 
-To play against the more advanced bots in the network, start a network game: 
- 
-    pelita groupN.py remote:tcp://10.0.2.144:30001 
-    pelita groupN.py remote:tcp://10.0.2.144:30002 
-    pelita groupN.py remote:tcp://10.0.2.144:30003 
-    pelita groupN.py remote:tcp://10.0.2.144:30004             
-    pelita groupN.py remote:tcp://10.0.2.144:30005 
-    pelita groupN.py remote:tcp://10.0.2.144:30006 
-    pelita groupN.py remote:tcp://10.0.2.144:30007 
- 
-(Of course, remember that your bot can also play on the right side, so make sure to test eg. ''%%pelita remote:tcp://10.0.2.144:30001 groupN.py%%'' as well.)