Skip to content

Commit d68d3b2

Browse files
committed
Prototype of scaled background, a dungeon twice as large. Additionally, working on background animation so the field doesn't fill like it's simply floating
1 parent be3d903 commit d68d3b2

File tree

5 files changed

+68
-4
lines changed

5 files changed

+68
-4
lines changed

zsrc/audio.zig

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ pub fn stopBgm() void {
4848
nowBgmId = null;
4949
}
5050

51+
/// randomBgm selects a random background music track from 1.. because track
52+
/// 0 is reserved for the game menu.
5153
pub fn randomBgm() void {
5254
const r: usize = @intCast(hlp.randInt(1, res.bgmsPath.len - 1));
5355
playBgm(r);

zsrc/game.zig

+2-1
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,8 @@ fn initGame(localPlayers: c_int, remotePlayers: c_int, localFirst: bool) !void {
11751175
}
11761176
try ren.initInfo();
11771177
// create map
1178-
mp.initRandomMap(0.7, 7, GAME_TRAP_RATE);
1178+
//mp.initRandomMap(0.7, 7, GAME_TRAP_RATE); // Original
1179+
mp.initRandomMap(0.6, 3, GAME_TRAP_RATE);
11791180

11801181
clearItemMap();
11811182

zsrc/render.zig

+57
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ const hlp = @import("helper.zig");
3434
const gAllocator = @import("alloc.zig").gAllocator;
3535

3636
pub const ANIMATION_LINK_LIST_NUM = 16;
37+
38+
/// NOTE: these render list act as layers where MAP_ID is drawn first.
39+
/// and UI_ID is drawn last (on top).
3740
pub const RENDER_LIST_MAP_ID = 0;
3841
pub const RENDER_LIST_MAP_SPECIAL_ID = 1;
3942
pub const RENDER_LIST_MAP_ITEMS_ID = 2;
@@ -42,6 +45,7 @@ pub const RENDER_LIST_SPRITE_ID = 4;
4245
pub const RENDER_LIST_EFFECT_ID = 5;
4346
pub const RENDER_LIST_MAP_FOREWALL = 6;
4447
pub const RENDER_LIST_UI_ID = 7;
48+
4549
pub const RENDER_BUFFER_SIZE = 1 << 16;
4650
pub const RENDER_HP_BAR_HEIGHT = 3;
4751
pub const RENDER_HP_BAR_WIDTH = 20;
@@ -664,10 +668,63 @@ fn renderFps() void {
664668
_ = renderCenteredText(&res.texts[res.textList.len + fpsUsize], 300, 10, 1);
665669
}
666670

671+
const star = struct {
672+
speed: c_int,
673+
scale: c_int,
674+
frame: c_int,
675+
};
676+
677+
const fieldSize = 1000;
678+
var starSpeeds: [fieldSize]star = undefined;
679+
var starPts: [fieldSize]c.SDL_Point = undefined;
680+
681+
var starFieldInited: bool = false;
682+
683+
fn renderStarField() void {
684+
if (!starFieldInited) {
685+
var initial_value: [fieldSize]star = undefined;
686+
for (&initial_value, 0..) |*st, idx| {
687+
st.* = star{
688+
.speed = hlp.randInt(1, 2),
689+
.scale = hlp.randInt(2, 3),
690+
.frame = hlp.randInt(0, 5),
691+
};
692+
starPts[idx].x = hlp.randInt(0, res.SCREEN_WIDTH * res.SCREEN_FACTOR);
693+
starPts[idx].y = hlp.randInt(0, res.SCREEN_WIDTH * res.SCREEN_FACTOR);
694+
}
695+
starSpeeds = initial_value;
696+
starFieldInited = true;
697+
}
698+
699+
// Draw star field.
700+
for (&starPts, 0..) |*pt, idx| {
701+
const txt = res.textures[176]; // Shine
702+
const frame = starSpeeds[idx].frame;
703+
const src: c.SDL_Rect = txt.crops[@intCast(frame)];
704+
const dst: c.SDL_Rect = .{ .x = pt.x, .y = pt.y, .w = 32 * starSpeeds[idx].scale, .h = 32 * starSpeeds[idx].scale };
705+
706+
_ = c.SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255);
707+
_ = c.SDL_RenderCopy(renderer, txt.origin, &src, &dst);
708+
709+
if (pt.x > (res.SCREEN_WIDTH * res.SCREEN_FACTOR)) {
710+
pt.x = 0;
711+
}
712+
713+
pt.x += starSpeeds[idx].speed;
714+
if (hlp.randDouble() < 0.1) starSpeeds[idx].frame += 1;
715+
716+
if (starSpeeds[idx].frame > 5) {
717+
starSpeeds[idx].frame = 0;
718+
}
719+
}
720+
}
721+
667722
pub fn render() !void {
668723
_ = c.SDL_SetRenderDrawColor(renderer, 25, 17, 23, 255);
669724
_ = c.SDL_RenderClear(renderer);
670725

726+
renderStarField();
727+
671728
for (0..ANIMATION_LINK_LIST_NUM) |i| {
672729
updateAnimationLinkList(&animationsList[i]);
673730
if (i == RENDER_LIST_SPRITE_ID) {

zsrc/res.zig

+6-2
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ pub const SPRITE_GREEN_HOOD_SKEL = 21;
220220
// Audio
221221
pub const AUDIO_BGM_SIZE = 16;
222222
pub const AUDIO_SOUND_SIZE = 256;
223+
223224
pub const AUDIO_WIN = 0;
224225
pub const AUDIO_LOSE = 1;
225226
pub const AUDIO_POWERLOSS = 2;
@@ -260,8 +261,11 @@ pub const AUDIO_BOW_HIT = 35;
260261
// End Resource ID
261262

262263
pub const UNIT = 32;
263-
pub const SCREEN_WIDTH = 1440;
264-
pub const SCREEN_HEIGHT = 960;
264+
265+
// Suprisingly, the game works just as well when the SCREEN_WIDTH/HEIGHT are multiplied by 2.
266+
pub const SCREEN_FACTOR = 2;
267+
pub const SCREEN_WIDTH = 1440 * SCREEN_FACTOR;
268+
pub const SCREEN_HEIGHT = 960 * SCREEN_FACTOR;
265269
pub const n = SCREEN_WIDTH / UNIT;
266270
pub const m = SCREEN_HEIGHT / UNIT;
267271

zsrc/ui.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fn chooseOptions(optionsNum: c_int, options: []const *tps.Text) !c_int {
137137

138138
// Wedge in Zig-Edition
139139
// by @deckarep text.
140-
_ = ren.renderCenteredText(&res.texts[17], res.SCREEN_WIDTH / 2, 920, 1);
140+
_ = ren.renderCenteredText(&res.texts[17], res.SCREEN_WIDTH / 2, 920 * res.SCREEN_FACTOR, 1);
141141

142142
// Update Screen
143143
c.SDL_RenderPresent(ren.renderer);

0 commit comments

Comments
 (0)