-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_background_scrolling.bas
75 lines (56 loc) · 3.22 KB
/
example_background_scrolling.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
' raylib [textures] example - Background scrolling
'$INCLUDE:'include/raylib.bi'
CONST screenWidth = 800
CONST screenHeight = 450
' Initialization
'--------------------------------------------------------------------------------------
InitWindow screenWidth, screenHeight, "raylib [textures] example - background scrolling"
' NOTE: Be careful, background width must be equal or bigger than screen width
' if not, texture should be draw more than two times for scrolling effect
DIM AS Texture background: LoadTexture "assets/image/cyberpunk_street_background.png", background
DIM AS Texture midground: LoadTexture "assets/image/cyberpunk_street_midground.png", midground
DIM AS Texture foreground: LoadTexture "assets/image/cyberpunk_street_foreground.png", foreground
DIM AS SINGLE scrollingBack, scrollingMid, scrollingFore
DIM v AS Vector2
SetTargetFPS 60 ' Set our game to run at 60 frames-per-second
'--------------------------------------------------------------------------------------
' Main game loop
DO UNTIL WindowShouldClose ' Detect window close button or ESC key
' Update
'----------------------------------------------------------------------------------
scrollingBack = scrollingBack - 0.1!
scrollingMid = scrollingMid - 0.5!
scrollingFore = scrollingFore - 1.0!
' NOTE: Texture is scaled twice its size, so it sould be considered on scrolling
IF scrollingBack <= -background.Rwidth * 2 THEN scrollingBack = 0
IF scrollingMid <= -midground.Rwidth * 2 THEN scrollingMid = 0
IF scrollingFore <= -foreground.Rwidth * 2 THEN scrollingFore = 0
'----------------------------------------------------------------------------------
' Draw
'----------------------------------------------------------------------------------
BeginDrawing
ClearBackground GetColor(&H052C46FF)
' Draw background image twice
' NOTE: Texture is scaled twice its size
v.x = scrollingBack: v.y = 20: DrawTextureEx background, v, 0.0!, 2.0!, WHITE
v.x = background.Rwidth * 2 + scrollingBack: v.y = 20: DrawTextureEx background, v, 0.0!, 2.0!, WHITE
' Draw midground image twice
v.x = scrollingMid: v.y = 20: DrawTextureEx midground, v, 0.0!, 2.0!, WHITE
v.x = midground.Rwidth * 2 + scrollingMid: v.y = 20: DrawTextureEx midground, v, 0.0!, 2.0!, WHITE
' Draw foreground image twice
v.x = scrollingFore: v.y = 70: DrawTextureEx foreground, v, 0.0!, 2.0!, WHITE
v.x = foreground.Rwidth * 2 + scrollingFore: v.y = 70: DrawTextureEx foreground, v, 0.0!, 2.0!, WHITE
DrawText "BACKGROUND SCROLLING & PARALLAX", 10, 10, 20, RRED
DrawText "(c) Cyberpunk Street Environment by Luis Zuno (@ansimuz)", screenWidth - 330, screenHeight - 20, 10, RAYWHITE
EndDrawing
'----------------------------------------------------------------------------------
LOOP
' De-Initialization
'--------------------------------------------------------------------------------------
UnloadTexture background ' Unload background texture
UnloadTexture midground ' Unload midground texture
UnloadTexture foreground ' Unload foreground texture
CloseWindow ' Close window and OpenGL context
'--------------------------------------------------------------------------------------
SYSTEM
'$INCLUDE:'include/raylib.bas'