start sdl impl

This commit is contained in:
jjanzen 2025-01-26 16:06:15 -06:00
parent 14c2530817
commit 405398834c
3 changed files with 88 additions and 2 deletions

3
.gitignore vendored
View file

@ -21,3 +21,6 @@ Makefile
/src/urlg
/.zig-cache/
/zig-out/
/ltximg/
/assets/
/notes.org

80
src/frontend/sdl.zig Normal file
View file

@ -0,0 +1,80 @@
const std = @import("std");
const sdl = @cImport({
@cInclude("SDL.h");
});
const Action = @import("../actions.zig").Action;
const IOInterface = @import("io_interface.zig").IOInterface;
pub const IO = struct {
allocator: std.mem.Allocator,
screen: ?*sdl.SDL_Window,
sprites: std.ArrayList([*c]sdl.SDL_Surface),
fn loadSprite(self: *IO) !void {
const sprite = sdl.SDL_LoadBMP("assets/image.bmp");
if (sprite == null) return error.FailedToLoadSprite;
try self.sprites.append(sprite);
}
pub fn displayMessage(self: *IO, str: []const u8) anyerror!void {
_ = self;
_ = str;
// TODO
}
pub fn waitForTick(self: *IO) anyerror!Action {
_ = self;
var quit = false;
var event: sdl.SDL_Event = undefined;
while (!quit) {
_ = sdl.SDL_WaitEvent(&event);
switch (event.type) {
sdl.SDL_QUIT => quit = true,
else => {},
}
}
return Action.exit;
}
pub fn init(allocator: std.mem.Allocator) !IOInterface {
var io = try allocator.create(IO);
io.allocator = allocator;
io.sprites = std.ArrayList([*c]sdl.SDL_Surface).init(allocator);
if (sdl.SDL_Init(sdl.SDL_INIT_VIDEO) < 0) return error.SDL_Failed;
io.screen = sdl.SDL_CreateWindow(
"urlg",
sdl.SDL_WINDOWPOS_UNDEFINED,
sdl.SDL_WINDOWPOS_UNDEFINED,
640,
480,
0,
);
io.loadSprite() catch |err| {
io.deinit();
return err;
};
const screen_surface = sdl.SDL_GetWindowSurface(io.screen);
_ = sdl.SDL_BlitSurface(io.sprites.items[0], null, screen_surface, null);
_ = sdl.SDL_UpdateWindowSurface(io.screen);
return IOInterface.init(io);
}
pub fn deinit(self: *IO) void {
for (self.sprites.items) |sprite| {
_ = sdl.SDL_FreeSurface(sprite);
}
self.sprites.deinit();
_ = sdl.SDL_DestroyWindow(self.screen);
_ = sdl.SDL_Quit();
self.allocator.destroy(self);
}
};

View file

@ -1,5 +1,5 @@
const std = @import("std");
const IO = @import("frontend/ncurses.zig").IO;
const IO = @import("frontend/sdl.zig").IO;
const run = @import("run.zig");
pub fn main() u8 {
@ -14,7 +14,10 @@ pub fn main() u8 {
}
}
var io = IO.init(allocator) catch return 1;
var io = IO.init(allocator) catch |err| {
std.log.err("Failed to initialize: {}", .{err});
return 1;
};
defer io.deinit();
run.run(allocator, &io) catch return 1;