Crates.io | rec-wars |
lib.rs | rec-wars |
version | 0.1.5 |
source | src |
created_at | 2020-10-29 00:47:17.148661 |
updated_at | 2023-07-19 19:43:28.933476 |
description | A top-down vehicle shooter game playable in the browser |
homepage | https://github.com/martin-t/rec-wars |
repository | https://github.com/martin-t/rec-wars |
max_upload_size | |
id | 306525 |
size | 1,341,109 |
Play in the Browser | Join our Discord
RecWars is a free and open source clone of RecWar - you control a vehicle and fight other vehicles in a variety of game modes using an arsenal of several distinct weapons. You can play against bots, in splitscreen and over the network.
RecWars aims to have gameplay similar, but not identical, to RecWar. I suspect RecWar was balanced for playing against bots and might result in annoying strats being the most effective when people start playing to win. However, almost everything in RecWars is configurable and you can switch to the original RecWar balance to compare.
Currently this is very much a work-in-progress: the driving physics don't feel right, there are no collisions between vehicles, bots move randomly ...
The ultimate goal is to create a moddable multiplayer game playable in the browser and natively on Linux, Windows and macOS. RecWars is built in the spirit of everlasting games.
See TODO.md for details.
Install Macroquad's dependencies.
How to run:
cargo run
You can set cvars on the command line - e.g.:
cargo run -- g_map Atrium g_armor 150
This version is hosted here.
How to run locally:
cargo build --target wasm32-unknown-unknown && mv target/wasm32-unknown-unknown/debug/rec-wars.wasm rec-wars.wasm
--release
to get better perf and a much smaller WASM file.python3 -m http.server
(or any other web server, simply opening macroquad.html
will not work though).You can always find me on the RecWars Discord server if you have any questions or suggestions.
Issues and Pull Requests are welcome, I will try to look at them as soon as possible.
I want to make RecWars highly configurable with many different gamemodes and balance settings votable by players and anybody will be able to host their own server (if technically possible, then even from the browser). If you have a gameplay idea and don't suffer from the NIH syndrome, I'd be very happy to help you test it in RecWars.
Enable extra checks before every commit: copy/symlink pre-commit-example
to pre-commit
and run git config core.hooksPath git-hooks
. It gets checked on CI anyway, this just catches issues faster.
Enable fast builds - see .cargo/config-example.toml for details.
For slightly faster builds, prevent rust-analyzer from locking the target
directory. Add this to your VSCode config (or something similar for your editor):
"rust-analyzer.server.extraEnv": {
"CARGO_TARGET_DIR": "target-ra"
}
Normally, rust-analyzer runs cargo check
on save which locks target
so if you switch to a terminal and do cargo run
, it blocks the build for over a second which is currently a third of the build time. This will make rust-analyzer make use a separate target directory so that it'll never block a build (at the expense of some disk space). Alternatively, you could disable saving when losing focus, disable running check on save or use the terminal inside VSCode.
Most of the code is commented to be understandable to anyone with a vague idea of how a game works. If it's not clear why a particular piece of code exists or why it needs to be written the way it is, I consider that a bug which should be fixed by either rewriting the code more clearly or adding comments explaining it.
Currently, most game state is managed by generational arenas from the thunderdome crate to make the code type-safe and readable. Previously, RecWars used the legion ECS. However it was cumbersome to use and WASM didn't get any benefits from parallelism. The only reason I was using ECS was so I could have references between entities and for this I was paying by having all entities dynamicly typed which lead to bugs. It's a Rust tradition to start writing a game and end up writing a game engine or ECS so I am considering creating an ECS crate that would satisfy my standards of clean API and static typing. For now arenas seem to be close enough.
The code is currently all in a single crate. It used to be split into a lib (gamelogic) and bin (rendering) but this builds faster.
Cvars are console variables - configuration settings which control everything in the game like physics, weapon behavior, AI, HUD layout, etc.
They use the cvars crate - an alternative to inline_tweak
& friends. There's a built-in console from the cvars-console-macroquad
crate.
g_bfg_beam_range 250
The desktop version also accepts them on the command line. Some cvars like g_map
or d_seed
currently only take effect this way because they need to be set before match start.
The entire list of cvars is in src/cvars.rs.
RecWar by Willem Janssen:
The original RecWar only contains a Windows .exe but runs ok-ish wine (sometimes freezes on map load). It includes a map editor. The binaries in both archive.org links are identical to what I got on an old CD so should be safe.
RecWar would probably be impossible to replicate exactly without decompiling the binary (which doesn't even contain debug symbols), though if a fan of the original finds this project, I am not gonna stop them from trying.
Additionally, when playing against people instead of bots, I suspect RecWar's original balance would lead to annoying and boring strats like making the cow inaccessible with mines or just simple camping. For example, experience from poorly designed games shows large areas will be dominated by instant-hit weapons (in RecWar the railgun) and there might simply be no way to get across the map alive. Therefore I made the railgun a very fast projectile in RecWars. I might make more balance changes based on how the online gameplay evolves.
For those reasons, RecWars will have a slightly different balance than RecWar. I will try to keep them as similar as possible but some things like physics will never be exact and I will make changes where I see fit to make the gameplay more interesting.
Intentional differences (can be toggled by switching the balance):
Unintentional differences - I will make best effort here but some things won't be exact:
maps/
- Maps from the original RecWarmaps/extra/
- Extra maps from the official homepagemaps/extra2/
- Extra maps from archive.orgCurrently the map is picked randomly by default, however, in the desktop version you can choose it manually on the command line.
Read this to learn from other people's mistakes and save yourself some time.
wasm-pack
tooling:
npm run
?. If you're not planning to use other NPM packages, all you need is a few lines of JS glue to run your WASM. Use the Without a Bundler example as your "template" and host it with python3 -m http.server
. You'll understand exactly what is going on and you'll avoid the whole JS ecosystem.CommandBuffer
). With arenas, you have to deal with them explicitly more often:
retain
if availableAll code is available under AGPL-v3 or newer.
All assets (maps, textures, sounds, etc.) are taken from the original RecWar by Willem Janssen which is freely available online.