Skip to content

Instantly share code, notes, and snippets.

View RJ's full-sized avatar
💤

Richard Jones RJ

💤
View GitHub Profile
@RJ
RJ / htn.rs
Created March 19, 2025 10:29
A test case from my bevy HTN crate
#[test]
fn test_travel_htn() {
{
// Don't need app for test, just want to set up the logger.
let mut app = App::new();
app.add_plugins(bevy::log::LogPlugin::default());
}
// DEFINE OPERATORS (which are behaviour trees)
@RJ
RJ / reflectevent.rs
Created March 14, 2025 22:41
bevy ReflectEvent example for reflected triggers / observers / events / reflection.
/// A struct used to operate on reflected [`Event`] of a type.
///
/// A [`ReflectEvent`] for type `T` can be obtained via
/// [`bevy::reflect::TypeRegistration::data`].
#[derive(Clone)]
pub struct ReflectEvent(ReflectEventFns);
/// The raw function pointers needed to make up a [`ReflectEvent`].
///
@RJ
RJ / avian_quantize.rs
Last active February 19, 2025 10:59
half-baked avian quantization plugin
use crate::prelude::*;
use bevy::{
ecs::{intern::Interned, schedule::ScheduleLabel},
prelude::*,
};
use crate::{prepare::PrepareSet, sync::SyncSet};
/// Quantizes all the things
pub struct QuantizationPlugin {
@RJ
RJ / seldom_state_anystate_test.rs
Created January 25, 2025 18:38
test for seldom_state AnyState command
// RUST_LOG=info cargo test -- --nocapture test_state_machine
#[cfg(test)]
mod test {
use super::*;
#[derive(Resource, Default)]
struct Test {
on_b: bool,
on_any: bool,
}
@RJ
RJ / avian_physics_debug_toggler.rs
Last active January 23, 2025 13:17
Easy toggler for Avian's PhysicsDebugPlugin
use avian2d::prelude::{PhysicsDebugPlugin, PhysicsGizmos};
use bevy::{input::common_conditions::input_just_pressed, prelude::*};
pub mod prelude {
pub use super::PhysicsDebugToggle;
}
/// Controls if we run avians physicsdebug plugin to draw gizmos.
/// Field has a nice name so it shows up better in the egui resource inspector.
#[derive(Resource, Reflect, Default)]
@RJ
RJ / edgegap regex.txt
Last active December 16, 2024 15:00
edgegap container image path regex bug
```
^(?:(?=[^:\\/]{4,253}) # Optional registry (non-capturing group)
(?!-) # Ensure no leading dash
[a-zA-Z0-9-]{1,63} # Allow alphanumeric and dashes (max 63 chars)
(?<!-) # Ensure no trailing dash
(?:\\.(?!-) # Allow dot-separated components, no dash after dot
[a-zA-Z0-9-]{1,63} # Same 63-char alphanumeric and dash rules
(?<!-))* # Zero or more of these subcomponents
(?::[0-9]{1,5})? # Optional port (e.g., :5000)
/)? # End of optional registry
@RJ
RJ / github-runner-build-wasm.yaml
Created December 1, 2024 14:42
Builds your wasm on a macos runner, which has more resources, then uses ubuntu-latest to dockerize it.
name: WASM build and nginxify
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
version:
description: 'Version number in the format `v1.2.3`'
@RJ
RJ / bullet_plugin.rs
Last active November 23, 2024 11:14
spacepit bullet plugin, observer vs system ordering issue for PreSpawnedPlayerObject hashes
use crate::prelude::*;
use avian2d::prelude::*;
use bevy::prelude::*;
use lightyear::client::components::ComponentSyncMode;
use serde::{Deserialize, Serialize};
pub mod prelude {
pub const BULLET_SIZE: f32 = 1.5;
pub use super::Bullet;
pub use super::BulletBundle;
@RJ
RJ / player_commands.rs
Created November 21, 2024 13:22
bevy plugin managing mouse inputs etc
use std::ops::Mul;
/// Handles acting on player inputs. Moving and shooting.
use crate::prelude::*;
use avian2d::prelude::*;
use bevy::{ecs::query::QueryData, prelude::*};
use client::{is_in_rollback, Predicted};
use leafwing_input_manager::{Actionlike, InputControlKind};
use lightyear::client::input::leafwing::InputSystemSet;
use lightyear::{
@RJ
RJ / certgen.rs
Created October 14, 2024 08:40
WebTransport compatible self signed certificate generation in rust using openssl bindings
// Ended up not using this because i discovered `wtransport` lib has a SelfSigned builder which does it for me.
use openssl::asn1::Asn1Time;
use openssl::ec::{EcGroup, EcKey};
use openssl::hash::MessageDigest;
use openssl::nid::Nid;
use openssl::pkey::PKey;
use openssl::x509::extension::SubjectAlternativeName;
use openssl::x509::extension::{BasicConstraints, SubjectKeyIdentifier};