cair / deep-rts

A Real-Time-Strategy game for Deep Learning research
MIT License
202 stars 34 forks source link

Manual Play GUI #18

Open JOST777 opened 3 years ago

JOST777 commented 3 years ago

The paper mentions a C++ GUI that enables manual play of DeepRTS. Is there still such a thing in the project?

I built and ran DeepRTSGame from Cmake, but the GUI only shows the game map and I can not interact with it.

perara commented 3 years ago

Hi, Yes. There are two frontends, one in pure C++ and one in python wereas the python one supports input (https://github.com/cair/deep-rts/blob/master/DeepRTS/python/_py_deeprts.py)

To run this you would have to build the python bindings and run the game engine via python

JOST777 commented 3 years ago

Thanks perara. I got the example in coding working. It looks like I will need to do some work to plug in the python interface?