Skip to content

Commit 9267a18

Browse files
committed
Fix segmentation fault when the the game is double clicked
1 parent 322c778 commit 9267a18

File tree

5 files changed

+33
-18
lines changed

5 files changed

+33
-18
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ storage.dat
88
archive
99
dungeon_rush
1010
dungeonrush
11+
dungeonrush-zig
1112
c-dungeonrush
1213
*.o
1314
*.gch

zsrc/game.zig

-4
Original file line numberDiff line numberDiff line change
@@ -1411,13 +1411,9 @@ fn makeSnakeCross(snake: *pl.Snake) bool {
14111411
// So it goes from: {character-type}_run_anim -> {character-type}_hit_anim
14121412
// NOTE: Only some characters have the _hit_anim
14131413
var deathPtr: usize = @intFromPtr(sprite.ani.origin);
1414-
std.log.debug("Death dbg: {s}, b4 ptr: {*}", .{ std.mem.sliceTo(&sprite.ani.origin.dbgName, 0), sprite.ani.origin });
14151414

14161415
if (isPlayer(snake)) deathPtr += (@sizeOf(tps.Texture) * 1);
14171416

1418-
const possiblyNewTexture = @as(*tps.Texture, @ptrFromInt(deathPtr));
1419-
std.log.debug("Death dbg: {s}, aft ptr: {*}", .{ std.mem.sliceTo(&possiblyNewTexture.dbgName, 0), possiblyNewTexture });
1420-
14211417
dropItem(sprite);
14221418

14231419
_ = ren.createAndPushAnimation(

zsrc/main.zig

+9-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ const ui = @import("ui.zig");
2929
const alloc = @import("alloc.zig");
3030

3131
pub fn main() !void {
32+
// First grab the path to the exe.
33+
var buff: [512]u8 = undefined;
34+
const exeDir = try std.fs.selfExeDirPath(&buff);
35+
36+
try realMain(exeDir);
37+
}
38+
39+
fn realMain(exePath: []const u8) !void {
3240
std.log.info(res.nameOfTheGame, .{});
3341
prng.prngSrand(@as(c_uint, @bitCast(@as(c_int, @truncate(c.time(null))))));
3442

@@ -50,7 +58,7 @@ pub fn main() !void {
5058
if (!res.init()) {
5159
std.log.err("Failed to init SDL and/or the game.", .{});
5260
} else {
53-
if (!try res.loadMedia()) {
61+
if (!try res.loadMedia(exePath)) {
5462
std.log.err("Failed to load media.", .{});
5563
} else {
5664
try ui.mainUi();

zsrc/res.zig

+23-12
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,11 @@ const soundfxList = &[_][]const u8{
336336
"bowhit.wav",
337337
};
338338

339-
// Globals
339+
/// Globals
340+
/// This var gets populated in main of the root path of the executable.
341+
/// This way, if the .exe is double-clicked, it will still find the res/
342+
/// folder because on MacOS, scripts or commands execute from the home folder.
343+
var rootPath: []const u8 = undefined;
340344
pub var textures: [TEXTURES_SIZE]tps.Texture = undefined;
341345
pub var texturesCount: usize = 0;
342346
pub var bgms: [AUDIO_BGM_SIZE]?*c.Mix_Music = undefined;
@@ -442,14 +446,19 @@ fn loadTextset() bool {
442446
return success;
443447
}
444448

445-
fn loadTileset(path: [*]const u8, origin: ?*c.SDL_Texture) bool {
449+
fn loadTileset(path: [:0]const u8, origin: ?*c.SDL_Texture) bool {
446450
if (origin == null) {
447451
@panic("origin should never be null!");
448452
}
449453

450454
const file = c.fopen(path, "r");
451455
defer _ = c.fclose(file);
452456

457+
if (file == null) {
458+
std.log.err("Couldn't find file at path: {s}", .{path});
459+
return false;
460+
}
461+
453462
var x: c_int = undefined;
454463
var y: c_int = undefined;
455464
var w: c_int = undefined;
@@ -459,6 +468,7 @@ fn loadTileset(path: [*]const u8, origin: ?*c.SDL_Texture) bool {
459468
var resName: [256]u8 = undefined;
460469

461470
// Convention of tileset: name, x, y, w, h, f (num of frames)
471+
var count: usize = 0;
462472
while (c.fscanf(file, "%s %d %d %d %d %d", &resName, &x, &y, &w, &h, &f) == 6) {
463473
const p = &textures[texturesCount];
464474
texturesCount += 1;
@@ -472,18 +482,16 @@ fn loadTileset(path: [*]const u8, origin: ?*c.SDL_Texture) bool {
472482
p.crops[i].w = w;
473483
}
474484

475-
p.dbgName = resName;
476-
477-
std.log.debug("Texture Res: {d}). {s} ptr:{*}, x:{d}, y:{d}, w:{d}, h:{d}, f:{d}", .{
485+
std.log.debug("Texture Res: {d}). ptr:{*}, x:{d}, y:{d}, w:{d}, h:{d}, f:{d}", .{
478486
texturesCount - 1,
479-
std.mem.sliceTo(&p.dbgName, 0),
480487
p,
481488
x,
482489
y,
483490
w,
484491
h,
485492
f,
486493
});
494+
count += 1;
487495
}
488496
return true;
489497
}
@@ -523,18 +531,21 @@ pub fn loadAudio() !bool {
523531
return true;
524532
}
525533

526-
pub fn loadMedia() !bool {
534+
pub fn loadMedia(exePath: []const u8) !bool {
535+
rootPath = exePath;
536+
527537
// load effects
528538
initCommonEffects();
529539

540+
var buf: [PATH_LEN + 4]u8 = undefined;
541+
530542
// Load tileset
531543
for (tilesetPath, 0..) |path, idx| {
532-
var buf: [PATH_LEN + 4]u8 = undefined;
533-
const img = try std.fmt.bufPrintZ(&buf, "{s}.png", .{path});
544+
const imgPath = try std.fmt.bufPrintZ(&buf, "{s}/{s}.png", .{ rootPath, path });
545+
originTextures[idx] = loadSDLTexture(std.mem.sliceTo(imgPath, 0));
534546

535-
originTextures[idx] = loadSDLTexture(std.mem.sliceTo(img, 0));
536-
const pptr = path.ptr;
537-
_ = loadTileset(pptr, originTextures[idx]);
547+
const defPath = try std.fmt.bufPrintZ(&buf, "{s}/{s}", .{ rootPath, path });
548+
_ = loadTileset(defPath, originTextures[idx]);
538549
if (originTextures[idx] == null) {
539550
return false;
540551
}

zsrc/types.zig

-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ pub const Texture = struct {
8282
width: c_int,
8383
height: c_int,
8484
frames: c_int,
85-
dbgName: [256]u8 = undefined,
8685
crops: []c.SDL_Rect,
8786
};
8887

0 commit comments

Comments
 (0)