avdg / albot-cpp

C++ alternative for NexusNull's ALBot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

albot-cpp GitHub Workflow Status GitHub Workflow Status Lines of code GitHub code size in bytes GitHub User's stars

This is an alternative to a JS bot for Adventure Land. Currently in the very early testing phases, I would love feedback.

Dependencies

The following dependencies need to be installed to compile albot-cpp:

  • nlohmann-json (dev libraries)
  • RapidJSON (dev libraries)
  • LibPOCO (dev, foundation, net, and netssl libraries)
  • spdlog (runtime and dev libraries)

All dependencies should be installable using sudo apt-get install

Use

Make sure you clone the repo with --recurse-submodules --depth=1 or you will have to manually activate the submodules.

All files should be created at the root of the git directory.

First create a bot.json file. Write the following contents:

{"fetch":true, "characters":[]}

Secondly, create a .env file, make the first line be your email for Adventure Land, and the second line your password.

Then, run cmake . and then make .

Once that is done, run ./albot-cpp, and note that it created a bot.out.json. Use C-style comments to customize bot.out.json to limit the characters that will be run. Currently, only one character is supported at a time.

Run mv bot.out.json bot.json or copy the contents of bot.out.json to bot.json.

Copy CODE/Default to another folder, like CODE/YourScript. Change the lines in bot.json to match.

Customize CODE/YourScript/src/BotImpl.cpp. Currently, this project is very early in development, so you have to do almost all of the things yourself. It may be left this way on purpose.

Finally, edit bot.json's fetch property to false. Then, run ./albot-cpp, watch it build your code, and run it!

FAQ

Q: I can't find a library that's required to compile. What should I do A: Check to see if you can find it using their instructions on their github. You may have to manually install it. Alternatively, use our docker script!

Q: How do I use the docker scripts? A: You have to have docker-compose installed. On linux, you should be able to do docker-compose build albot-cpp-PLATFORM and replace PLATFORM with either alpine or ubuntu, depending on which platform you want to run on. Currently, only ubuntu is functional. To start the bot, do docker-compose up albot-cpp-PLATFORM.

Q: Where are all of the builtin functions? A: ALBot-CPP is designed to be very lightweight, and we only define the bare minimum to interact with the game. We leave it as an exercise to the user to implement more functionality. However, we may have some pre-written functionality in the future, like pathfinding.

Thanks for using it!

If you do use this, I would be glad to know, I'm Aria / Freeze#4333 on discord, if you have any suggestions or changes that you would like to be made, just let me know!

Credits

Huge thanks to LunarWatcher for the PlayerSkeleton/Player pattern, SocketWrapper class, MovementMath class, and advice on general C++ styling. Thanks to AVDG for supplying the original docker scripts.

About

C++ alternative for NexusNull's ALBot

License:MIT License


Languages

Language:C++ 85.2%Language:CMake 12.8%Language:Dockerfile 0.9%Language:Shell 0.8%Language:JavaScript 0.2%