jncraton / BWMetaAI

A StarCraft Brood War AI designed to follow the modern 1v1 metagame
Other
97 stars 11 forks source link

Please tell me how to edit and compile AI. #39

Closed ajujoa closed 1 year ago

ajujoa commented 1 year ago

I want to edit ai can you teach me how to do it? (Windows 10, Starcraft-remastered) I wish the default environment settings were the detailed way.

jncraton commented 1 year ago

The basics of building the project from source are described here:

https://github.com/jncraton/BWMetaAI/blob/master/CONTRIBUTING.md

You'd then need to add/modify your own builds (.pyai files in the source directory).

If you haven't done any BW modding before, you might want to start with PyMS. It provides the tools for editing the various game assets that this project modifies. PyAI in particular might be useful to you if you want to create custom AI scripts.

ajujoa commented 1 year ago

Thank you. However, I still fails to create the bin file.

  1. Ubuntu
  2. install nodejs
  3. altinstall python 2.7.18
  4. install git
  5. clone github
  6. 'make bins', 'make -f makefile' not work.

2023-06-26 01 00 47

I'm not sure about is 'This particular version is required to be able to interact with storm.dll using ctypes.'

I am a Windows user and have never used Ubuntu. You may be doing it now through Googling and not understanding it.

jncraton commented 1 year ago

It looks like you don't have python2 available. The underlying tool used here still requires Python 2, but Python 2 is no longer maintained and may be difficult to install on your system. I haven't used this recently, so I'm not sure how to best proceed.

duran55 commented 1 year ago

I installed python 2 successfully on Ubuntu 20.04. To install needed packages run this: apt install python2:i386 python-tk:i386

ajujoa commented 1 year ago

I succeeded. Thank you very much. Now take a step.

Install Ubuntu 20.04 (Not latest version!!) Update basic tools before installation: sudo apt update Install build-related tools: sudo apt install -y build-essential Install Node.js: sudo apt install nodejs Installed python 2: sudo apt install python2:i386 python-tk:i386 Install Git: sudo apt install git Finally, clone the BWMetaAI repository using the following command :git clone https://github.com/jncraton/BWMetaAI.git

Move to 'BWMetaAI' folder. Mouse R --> 'Open in Terminal' make <-- command!!

I succeeded compile.