Rename all example tests/companions to the XXXX-category-test-name scheme (per-category 100-blocks: basic 0010, types 0100, ... errors 1000, diagnostics 1100, ffi 1200, ffi-objc 1300, ffi-jni 1400, vectors 1500, platform 1600). Companions and dir/C fixtures move in lockstep with their parent test; #import/#source/#include paths rewritten to match. Expected output now lives in examples/expected/ (a sibling dir of the tests) split into three streams per the new convention: <name>.exit / <name>.stdout / <name>.stderr (+ optional <name>.ir) run_examples.sh rewritten: scans examples/ and issues/ for an expected/<name>.exit marker, captures stdout and stderr separately (no more 2>&1), compares each stream + exit + optional IR snapshot. Behavior validated unchanged: every renamed test reproduces its prior merged output + exit (diffs limited to file paths/basenames embedded in diagnostics + traces, which correctly reflect the new names). Suite: 292 passed, 0 failed. 50-smoke.sx split + issue relocation + docs follow in subsequent commits.
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
// Generic struct `Animated($T: Lerpable)` monomorphized with a struct type — the
|
|
// `#inline` protocol constraint participates in method dispatch via `self.from.lerp(...)`.
|
|
|
|
#import "modules/std.sx";
|
|
#import "modules/math";
|
|
|
|
Lerpable :: protocol #inline {
|
|
lerp :: (b: Self, t: f32) -> Self;
|
|
}
|
|
|
|
Size :: struct {
|
|
width, height: f32;
|
|
zero :: () -> Size => .{ width = 0.0, height = 0.0 };
|
|
}
|
|
|
|
impl Lerpable for Size {
|
|
lerp :: (self: Size, b: Size, t: f32) -> Size {
|
|
Size.{ width = self.width + (b.width - self.width) * t,
|
|
height = self.height + (b.height - self.height) * t };
|
|
}
|
|
}
|
|
|
|
Animated :: struct ($T: Lerpable) {
|
|
current: T;
|
|
from: T;
|
|
to: T;
|
|
elapsed: f32;
|
|
duration: f32;
|
|
active: bool;
|
|
|
|
make :: (value: T) -> Animated(T) {
|
|
Animated(T).{
|
|
current = value, from = value, to = value,
|
|
elapsed = 0.0, duration = 0.0, active = false
|
|
};
|
|
}
|
|
|
|
set_immediate :: (self: *Animated(T), value: T) {
|
|
self.current = value;
|
|
self.from = value;
|
|
self.to = value;
|
|
self.active = false;
|
|
}
|
|
|
|
animate_to :: (self: *Animated(T), target: T, dur: f32) {
|
|
self.from = self.current;
|
|
self.to = target;
|
|
self.elapsed = 0.0;
|
|
self.duration = dur;
|
|
self.active = true;
|
|
}
|
|
|
|
tick :: (self: *Animated(T), dt: f32) {
|
|
if !self.active { return; }
|
|
self.elapsed += dt;
|
|
t := clamp(self.elapsed / self.duration, 0.0, 1.0);
|
|
self.current = self.from.lerp(self.to, t);
|
|
if t >= 1.0 {
|
|
self.current = self.to;
|
|
self.active = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
main :: () -> void {
|
|
anim := Animated(Size).make(Size.zero());
|
|
anim.set_immediate(Size.{ width = 100.0, height = 50.0 });
|
|
print("after set: {}x{}\n", anim.current.width, anim.current.height);
|
|
|
|
anim.animate_to(Size.{ width = 200.0, height = 100.0 }, 1.0);
|
|
anim.tick(0.5);
|
|
print("mid anim: {}x{}\n", anim.current.width, anim.current.height);
|
|
|
|
anim.tick(0.5);
|
|
print("end anim: {}x{}\n", anim.current.width, anim.current.height);
|
|
}
|