TASO Football Game

Worked on a football game during my first internship for 4 months. The game is for android and available here. Due to copyright restrictions I can not share the source code for this project.

Implemented a system to keep track of every football players’ energy level and slowing the player down if they’re tired.

Couple of bug fixing involving the base game and the multiplayer version of the game.

Implemented a system to print players’ name on their uniform so that they’re not hardcoded.

I also fixed a bug in multiplayer version of the game that caused some players to teleport to midfield under some circumstances. Each player’s coordinate was converted to string values from float values before sending them from host to client and client to host. I don’t why that kind of design decision was made. But the functions used to this are atoi() and atof() from c standart library. The issue with these functions are that they return 0 if they fail to convert the value. That was what caused the issue, midfield’s coordinates were (0,0).