Commit Graph

111 Commits

Author SHA1 Message Date
6edfc934d2 Add a README to the project
It's about time I had a proper README for this thing.
2025-10-30 10:34:30 -05:00
18ab509554 Fix: automatic var to use *all* deps, not first
The tarball target depends on all the dependencies, but the automatic
variable `$<` means "the first dependency". It should be "all deps", or
`$^`.
2025-10-30 09:04:56 -05:00
615bf79f30 First draft of page structure, basic styling
I'll revise the text at some point, and the styling is *extremely*
basic, but it's a start.
2025-10-29 16:33:11 -05:00
71c095088c Fix: WASM target needs to depend on Cargo.* files
The binary output depends on the configuration input, so maybe tell
`make` about all of the inputs...
2025-10-29 11:35:55 -05:00
7482130ac2 Don't have Bevy resize to full-screen
Now that I have a custom canvas, Bevy should adopt that as it's render
target rather than further modifying it.
2025-10-28 16:23:17 -05:00
e16c0e2e32 Add and use a custom canvas element on the page
Tell bevy to find the canvas with ID "#boids-canvas" instead of creating
it's own.
2025-10-28 16:12:09 -05:00
eca864ec8e Use vars to hold target & profile in makefile_web
I might sometimes build different profiles, so this gives me somewhere
to change them. It *does not work* for debug builds because of how cargo
works. So that sucks.

I can't think of a reason anyone would seriously want to change the
target, but I've made that a variable, too. WASM64 exists, but I can't
get a read on it's availability across browsers. The benefit seems to be
accessing >4GB of memory, which is not important for this project. Other
targets are for "desktop" platforms and so shouldn't be using the
makefile.
2025-10-28 16:10:28 -05:00
0358935bf6 Group the WASM & JS targets so they're built once
https://www.gnu.org/software/make/manual/html_node/Multiple-Targets.html

The previous recipe told Make that each file could be produced by
running wasm-bindgen. The more correct expression is that *both* files
will be produced at the same time.

Now Make knows to only invoke the command one time to get both files if
either is out of date. Previously, multi-job builds (`-j2`) could build
the files twice -- one invocation for each out-of-date file.
2025-10-28 15:04:45 -05:00
7408f056f6 Fix: use correct name suffix for the WASM file
Maybe I should have spent more time manually running each of the steps.
Eh, whatever. Bug found and fixed.
2025-10-28 15:00:28 -05:00
370fe85d6c Make wasm binary target depend on source files
Now Make will know to rebuild the WASM binary if the source code
changes... because I forgot to do that, too. :v
2025-10-28 14:59:47 -05:00
943483503c Turn output folder into an order-only prerequisite
This makes the output folder "required to exist" and not "required to be
more recent."

The folder's timestamp is updated when files are written into it. The
files inside depend on the folder existing. The result is that the WASM
and JS files are considered very slightly older than the folder that
contains them. The result is that the folder is up-to-date but it's
contents are not, thus re-building them and *again* updating the folder
timestamp. The makefile was stuck constantly rebuilding things that are
actually up-to-date.
2025-10-28 12:46:37 -05:00
3c0cf85da5 Drop extra suffix in wasm-bindgen output name
Oops, it's not supposed to have a file suffix! It's a bit annoying that
it still produces both a WASM and JS file, just not the right ones (and
no _bg.wasm at all). Especially without any warning that it is doing
something different than normal. Oh well.
2025-10-28 12:42:44 -05:00
39925b0c4e Rename WASM & JS output to match HTML
The index.html file calls for a "boids.js", so I need the Makefile to
produce one. I could change it, but that's off-topic for now so I won't.
2025-10-28 12:42:39 -05:00
4eb4fefeb2 Add a Makefile to make web builds more ergonomic
Call with `make -f makefile_web` to produce a web root for serving. Use
target "boids_web_root.tar" to bundle the files into a tarball. For...
publishing... or something.

The `wasm-server-runner` program seems to supply it's own index.html and
is doing *something* regarding MIME types -- hosting a dev build of the
Boids program results in the browser complaining about "" (empty string)
being an invalid MIME type.

I want my own index.html during testing, and I can't figure out why the
MIME type info is wrong. I've decided to automate the web-root build
process and serve it up with whatever webserver I have on hand.
2025-10-28 12:22:26 -05:00
57a4d0924d Fix: Missing destination in Docker copy instr.
Some checks failed
check / stable / fmt (push) Successful in 45s
check / beta / clippy (push) Failing after 51s
check / stable / clippy (push) Failing after 47s
check / semver (push) Failing after 5m38s
check / nightly / doc (push) Successful in 2m12s
check / ubuntu / stable / features (push) Successful in 2m21s
check / ubuntu / 1.79.0 (push) Failing after 27s
I don't really know how I did that, or how I got a build up on Fly.io
without committing the fix. Well, anyway... it's done now.
2025-10-03 13:01:47 -05:00
0c8d39d483 Fix casing in Dockerfile
Some checks failed
check / stable / fmt (push) Successful in 22s
check / beta / clippy (push) Failing after 56s
check / stable / clippy (push) Failing after 48s
check / semver (push) Failing after 5m45s
check / nightly / doc (push) Successful in 2m18s
check / ubuntu / stable / features (push) Successful in 2m25s
check / ubuntu / 1.79.0 (push) Failing after 27s
2025-09-27 10:27:27 -05:00
6009dae6d8 Mark crate version 0.3.0, upadate lockfile 2025-09-27 10:26:02 -05:00
085b855ef7 Disable the minimal-version pins 2025-09-27 10:25:47 -05:00
d808bda765 Use busybox:musl to save a couple more MB
Yay for tiny Linux userspaces.
2025-09-04 09:29:07 -05:00
6b7692cf78 Build using the locked dependency versions
I want to at least have the smell of reproducible builds, so I'll make
the image build using the lockfile. Otherwise the build-time dependency
information gets lost.
2025-09-04 09:29:03 -05:00
0ad31b30df Check-in the fly.toml config file 2025-09-04 09:17:21 -05:00
5e4b7f04b7 Dockerfile for WASM build's webserver 2025-09-04 09:07:31 -05:00
01c50e4bb6 Add an index.html file, taken from Bevy Cheatbook
https://bevy-cheatbook.github.io/platforms/wasm/webpage.html

I need a page to give the user, which loads some JS, which loads the
WASM file. The JS and WASM are both generated by the wasm-bindgen tool.
2025-09-03 17:04:43 -05:00
60417d6956 Make the WASM build profile even smaller 2025-09-03 16:15:48 -05:00
2d568455d8 Use whole browser window
Taken from
https://johanhelsing.studio/posts/extreme-bevy
2025-09-03 16:14:38 -05:00
df86f05876 Mark v0.2.0, update lockfile v0.2.0 2025-09-03 14:46:25 -05:00
68d6de9a83 Add a WASM build configuration
The config.toml lets me run `cargo run --target wasm32-unknown-unknown`
and host a dev server.

I've adjusted the Cargo.toml to use the kdtree_rayon feature by default,
but disable the Rayon feature for WASM builds (because it doesn't work).
2025-09-03 14:41:53 -05:00
ccd8a12b79 Autoformat 2025-09-03 14:27:28 -05:00
f2a71e712a Put the boid separation range back to 1/4 not 1/8
With the 1.0 radius boids (instead of whatever `Circle::default()`
uses), a separation activation of 1/4 the range looks more visually
appealing (imo).
2025-09-03 14:25:16 -05:00
dca8bcdaa7 Add speed_controller to maintain system energy
The starting velocities going outwards in a circle means that the sum of
energy in the system is 0. As the boids come back together, they will
slow down to fall into a lattice. This is interesting, but not the
flocking behavior Boids are supposed to have.

I've replaced the `space_brakes` function with this new speed controller
to keep boids moving between two speeds. Anything too slow will speed up
along it's current vector, and anything too fast will slow down.
2025-09-03 14:20:17 -05:00
e6e56506f8 Fix: alignment should align to vel, not impulse
I need to apply an impulse to match the velocities, but the previous
version was trying to match the forces.
2025-09-03 14:11:18 -05:00
bc0630b4ae Fix: off-by-one error in alignment averaging
The "length" is actually the `enumerate()` index, which is one less than
the item count. The previous version was not using the average, and may
have been deviding by 0 for boids with exactly one neighbor.
2025-09-03 14:09:40 -05:00
76a6b4f999 New cohesion rule function 2025-09-03 14:07:50 -05:00
451311126d New separation rule function 2025-09-03 14:07:34 -05:00
7b380196a5 Filter-map the entities to avoid self-alignment
The boids shouldn't try to align with themselves. That doesn't really
make any sense.
2025-09-03 12:23:53 -05:00
8b61d38636 Make keyboard control forces, not velocities
The keyboard input should apply a force, not modify the velocity. Right
now, there is no Mass component, but in the future there might be. I've
just fixed a broken physics integrator made by bad assumptions, too, so
I'm goig to do this for consistency if nothing else.
2025-09-03 12:23:53 -05:00
b3cf47e684 Remove BoidBundle, use required-components instead 2025-09-03 12:23:53 -05:00
69403bc6ca Fix the physics integrator
The velocity component never got updated. Instead, the system was only
calculating the current frame's deltaV. That instantaneous dV and any
velocity that *did* get assigned (bundle insertion, keyboard control)
would be added to the position.

Now forces are integrated into velocity, and velocity is integrated into
position. You know... like a real integration function.
2025-09-03 12:23:53 -05:00
a6240c844a Make another new alignment system 2025-09-03 12:23:53 -05:00
3eb23fb4bf Move physics parts to a physics module 2025-09-03 12:23:53 -05:00
532025b42f Bump Rust edition to 2024 2025-08-30 15:45:20 -05:00
4150f85ccc Rename & restructure birdoids module
The module isn't the plugin, so it's going to be called simply
"birdoids" going forward.

I've turned it into a folder and a `mod.rs` so I can slap down a small,
custom physics system.
2025-08-30 15:39:41 -05:00
214da65db5 Switch off deprecated functions, fix clippy lints 2025-08-30 15:39:41 -05:00
325e515a7b Autoformat 2025-08-30 15:39:41 -05:00
e85114c4c8 Adjust code for Bevy 0.14 -> 0.16 upgrade
Now the program builds again.
2025-08-30 15:39:41 -05:00
feeeb15d22 Begin v0.2.0-dev and upgrade Bevy version
Resuming work on this project. New crate version, new Bevy version.
2025-08-30 15:39:41 -05:00
a0292eb789 Add a "mini" build profile
It's like release, but with LTO and LLVM's `-Oz` size optimization.
v0.1.0
2025-05-16 18:37:34 -05:00
076fcd3c3f Full fat LTO for the very best size reduction 2024-12-29 15:59:32 -06:00
d181a690f8 Bump MSRV for named profiles to work
Yay for cargo-msrv
2024-09-12 22:53:53 -05:00
41b487e70e Pin grand-dependencies for -Zminimal-versions
This pins the dependencies of our dependencies so that the
`-Zminimal-versions` flag of cargo nightly will result in a working
build. Ideally the package authors would have their versions set
correctly. The flag is on nightly for a reason, though. Oh well.
2024-09-12 22:22:55 -05:00