@@ -336,7 +336,11 @@ const soundfxList = &[_][]const u8{
336
336
"bowhit.wav" ,
337
337
};
338
338
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 ;
340
344
pub var textures : [TEXTURES_SIZE ]tps.Texture = undefined ;
341
345
pub var texturesCount : usize = 0 ;
342
346
pub var bgms : [AUDIO_BGM_SIZE ]? * c.Mix_Music = undefined ;
@@ -442,14 +446,19 @@ fn loadTextset() bool {
442
446
return success ;
443
447
}
444
448
445
- fn loadTileset (path : [* ]const u8 , origin : ? * c.SDL_Texture ) bool {
449
+ fn loadTileset (path : [: 0 ]const u8 , origin : ? * c.SDL_Texture ) bool {
446
450
if (origin == null ) {
447
451
@panic ("origin should never be null!" );
448
452
}
449
453
450
454
const file = c .fopen (path , "r" );
451
455
defer _ = c .fclose (file );
452
456
457
+ if (file == null ) {
458
+ std .log .err ("Couldn't find file at path: {s}" , .{path });
459
+ return false ;
460
+ }
461
+
453
462
var x : c_int = undefined ;
454
463
var y : c_int = undefined ;
455
464
var w : c_int = undefined ;
@@ -459,6 +468,7 @@ fn loadTileset(path: [*]const u8, origin: ?*c.SDL_Texture) bool {
459
468
var resName : [256 ]u8 = undefined ;
460
469
461
470
// Convention of tileset: name, x, y, w, h, f (num of frames)
471
+ var count : usize = 0 ;
462
472
while (c .fscanf (file , "%s %d %d %d %d %d" , & resName , & x , & y , & w , & h , & f ) == 6 ) {
463
473
const p = & textures [texturesCount ];
464
474
texturesCount += 1 ;
@@ -472,18 +482,16 @@ fn loadTileset(path: [*]const u8, origin: ?*c.SDL_Texture) bool {
472
482
p .crops [i ].w = w ;
473
483
}
474
484
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}" , .{
478
486
texturesCount - 1 ,
479
- std .mem .sliceTo (& p .dbgName , 0 ),
480
487
p ,
481
488
x ,
482
489
y ,
483
490
w ,
484
491
h ,
485
492
f ,
486
493
});
494
+ count += 1 ;
487
495
}
488
496
return true ;
489
497
}
@@ -523,18 +531,21 @@ pub fn loadAudio() !bool {
523
531
return true ;
524
532
}
525
533
526
- pub fn loadMedia () ! bool {
534
+ pub fn loadMedia (exePath : []const u8 ) ! bool {
535
+ rootPath = exePath ;
536
+
527
537
// load effects
528
538
initCommonEffects ();
529
539
540
+ var buf : [PATH_LEN + 4 ]u8 = undefined ;
541
+
530
542
// Load tileset
531
543
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 ) );
534
546
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 ]);
538
549
if (originTextures [idx ] == null ) {
539
550
return false ;
540
551
}
0 commit comments