python_real_time_strategy_game icon indicating copy to clipboard operation
python_real_time_strategy_game copied to clipboard

This is an RTS-like game written in Python 3 with arcade library. This is my most ambitious project up to date, since I try to overcome Python's shortcomings and make as efficiently-running game as po...

Results 16 python_real_time_strategy_game issues
Sort by recently updated
recently updated
newest added

Create construction textures for each Building with stages of construction.

enhancement

Another bottlenec is the MiniMap class which takes 23 seconds out of total 114 seconds of code execution time according to the pyprofiller! ![minimap](https://github.com/akapkotel/python_real_time_strategy_game/assets/40523203/fbfd59ee-2ea8-43cb-8ff7-c89c37c6b83c)

enhancement

Examining game with pyprofiller showed, that text-drawing calls from arcade library consumes huge amount of time: 21 seconds out of total code execution time 114 seconds! So, draw_text call is...

enhancement

CPU players should update their production queues and building decisions according to the actual needs of curent situation in game.

enhancement

User interface require some kind of color-picking interface when game is in editor mode. Is should also be added to the submenu of custom game. 1. Need new UiElement class....

enhancement

When player moues-selects an dying Unit, a key error happens in UnitsManager.

bug