@@ -34,6 +34,9 @@ const hlp = @import("helper.zig");
34
34
const gAllocator = @import ("alloc.zig" ).gAllocator ;
35
35
36
36
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).
37
40
pub const RENDER_LIST_MAP_ID = 0 ;
38
41
pub const RENDER_LIST_MAP_SPECIAL_ID = 1 ;
39
42
pub const RENDER_LIST_MAP_ITEMS_ID = 2 ;
@@ -42,6 +45,7 @@ pub const RENDER_LIST_SPRITE_ID = 4;
42
45
pub const RENDER_LIST_EFFECT_ID = 5 ;
43
46
pub const RENDER_LIST_MAP_FOREWALL = 6 ;
44
47
pub const RENDER_LIST_UI_ID = 7 ;
48
+
45
49
pub const RENDER_BUFFER_SIZE = 1 << 16 ;
46
50
pub const RENDER_HP_BAR_HEIGHT = 3 ;
47
51
pub const RENDER_HP_BAR_WIDTH = 20 ;
@@ -664,10 +668,63 @@ fn renderFps() void {
664
668
_ = renderCenteredText (& res .texts [res .textList .len + fpsUsize ], 300 , 10 , 1 );
665
669
}
666
670
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
+
667
722
pub fn render () ! void {
668
723
_ = c .SDL_SetRenderDrawColor (renderer , 25 , 17 , 23 , 255 );
669
724
_ = c .SDL_RenderClear (renderer );
670
725
726
+ renderStarField ();
727
+
671
728
for (0.. ANIMATION_LINK_LIST_NUM ) | i | {
672
729
updateAnimationLinkList (& animationsList [i ]);
673
730
if (i == RENDER_LIST_SPRITE_ID ) {
0 commit comments