You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+25-12Lines changed: 25 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -49,31 +49,32 @@ These are additional enhancements introduced here that the original game didn't
49
49
50
50
- Can target x86, x64 and ARM64 architectures
51
51
- Support for both Microsoft Windows and Linux
52
-
- Overbrights via `r_overbrights` (just be wary Anachronox's art was not designed for it!)
53
52
- Higher-resolution texture replacements can be loaded in
54
53
- Replacement textures need to be placed under a `hd` directory located under `anoxdata`
55
54
- Can be enabled/disabled via `hd_override` cvar
56
55
- Replaced QGL with GLEW
57
56
- Code is compiled as C++, as opposed to C
57
+
- New console variables
58
+
- Overbrights via `r_overbrights` (just be wary Anachronox's art was not designed for it!)
59
+
- New console commands
60
+
-`extract` can be used to extract all mounted packages
58
61
59
-
## Wow, neat! How can I help?
62
+
## Building
60
63
61
-
If you have experience with either C/C++, have a passion for programming and familiarity with the Anachronox game, then feel free to get in touch via our [Discord](https://discord.gg/EdmwgVk) server in the `#anachronox` channel.
64
+
**(these instructions aren't necessarily up to date)**
1. Navigate to your cloned copy of the repo via the terminal; `cd <repo here>`
71
+
2. Create a directory, then navigate into it; `mkdir build;cd build`
72
+
3. Use `cmake ..` from your new directory
73
+
4. Finally, use `make` and everything should just work 🤞
68
74
69
75
### Windows
70
76
71
-
#### Visual Studio
72
-
73
-
1. Use `vcpkg_setup_msvc.bat`; this will fetch vcpkg and install the dependencies
74
-
2. Now use `cmake_generate_vs2022-x64.bat` which will generate the Visual Studio solution for you under a new `build` directory
75
-
76
-
#### MinGW-w64
77
+
#### MinGW-w64
77
78
78
79
You can download MinGW-w64 from [here](https://www.mingw-w64.org/) and of course will require
79
80
CMake as well which can be found [here](https://cmake.org/).
@@ -89,6 +90,18 @@ macOS support is generally going to be at the bottom of my priority list for sup
89
90
1. If you don't have vcpkg installed already, use `vcpkg_setup_apple.sh`; this will fetch vcpkg and install the dependencies
90
91
2. Use CMake as usual, but pass `-DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake` as an argument so it can find packages provided by vcpkg
91
92
93
+
## Contributing
94
+
95
+
If you have experience with either C/C++, have a passion for programming and familiarity with the Anachronox game, then feel free to get in touch via our [Discord](https://discord.gg/EdmwgVk) server in the `#anachronox` channel.
0 commit comments