![]() |
Please point me to some game example projects - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Game Development (https://python-forum.io/forum-11.html) +--- Thread: Please point me to some game example projects (/thread-17027.html) |
Please point me to some game example projects - SugarBoxing - Mar-25-2019 Hi guys I am just wondering if you can point me towards good and simple examples of python projects. I did google, but it did not work exactly as I hoped. I am using PyCharm In particular, I am want to find simple examples on python of games like: 1. Turn based combat with a squad like X-Com or Heroes, when the player controls several chars and maybe some AI. I found this one: https://github.com/TachyonNZ/textcom. However, there one controls only single char. 2. Quest like 60 seconds / 60 parsecs 3. FTL like game 4. Into the breach like game Please, be so kind and share with me a link or smth, or suggestion. RE: Some game example projects - metulburr - Mar-25-2019 The most examples you will find are pyweek and pygame projects. Maybe you will find similar project within them. I doubt you will find exactly what you are looking for though. The textcom games seems like you could reuse a lot from it, and just add multiple character handling. However i would reorganize it into classes and modules. |