ona/src/main.zig

68 lines
2.0 KiB
Zig
Raw Normal View History

const coral = @import("coral");
const std = @import("std");
const ona = @import("ona");
const Actors = struct {
2024-06-04 23:05:57 +01:00
instances: coral.stack.Sequential(ona.gfx.Point2D) = .{.allocator = coral.heap.allocator},
body_texture: ona.gfx.Handle = .none,
2024-05-30 22:43:45 +01:00
};
const Player = struct {
move_x: ona.act.Axis = .{.keys = .{.a, .d}},
move_y: ona.act.Axis = .{.keys = .{.w, .s}},
};
pub fn main() !void {
try ona.start_app(setup, .{
.tick_rate = 60,
.execution = .{.thread_share = 0.1},
});
}
fn load(display: coral.Write(ona.gfx.Display), actors: coral.Write(Actors), assets: coral.Write(ona.gfx.Assets)) !void {
display.res.width, display.res.height = .{1280, 720};
actors.res.body_texture = try assets.res.open_file("actor.bmp");
try actors.res.instances.push_grow(.{0, 0});
}
fn exit(actors: coral.Write(Actors)) void {
actors.res.instances.deinit();
}
fn render(queue: ona.gfx.Queue, actors: coral.Write(Actors), assets: coral.Read(ona.gfx.Assets)) !void {
2024-06-04 23:05:57 +01:00
for (actors.res.instances.values) |instance| {
try queue.commands.append(.{
2024-06-04 23:05:57 +01:00
.instance_2d = .{
.mesh_2d = assets.res.primitives.quad_mesh,
2024-06-04 23:05:57 +01:00
.texture = actors.res.body_texture,
.transform = .{
.origin = instance,
.xbasis = .{64, 0},
.ybasis = .{0, 64},
2024-06-04 23:05:57 +01:00
},
},
});
}
}
2024-05-30 22:43:45 +01:00
fn update(player: coral.Read(Player), actors: coral.Write(Actors), mapping: coral.Read(ona.act.Mapping)) !void {
2024-06-04 23:05:57 +01:00
actors.res.instances.values[0] += .{
2024-05-30 22:43:45 +01:00
mapping.res.axis_strength(player.res.move_x),
mapping.res.axis_strength(player.res.move_y),
};
}
fn setup(world: *coral.World, events: ona.App.Events) !void {
try world.set_resource(.none, Actors{});
2024-05-30 22:43:45 +01:00
try world.set_resource(.none, Player{});
try world.on_event(events.load, coral.system_fn(load), .{.label = "load"});
try world.on_event(events.update, coral.system_fn(update), .{.label = "update"});
try world.on_event(events.exit, coral.system_fn(exit), .{.label = "exit"});
try world.on_event(events.render, coral.system_fn(render), .{.label = "render actors"});
}