generated from 32blit/32blit-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.cpp
155 lines (124 loc) · 3.86 KB
/
background.cpp
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/****************************************************************************\
|* *|
|* background.cpp - part of Possum, a Space Shooter game. *|
|* *|
|* Copyright (C) 2021 Pete Favelle <[email protected]> *|
|* *|
|* This file is released under the MIT License; see LICENSE for details. *|
|* *|
|* The Background class handles an ever-scrolling star-filled background *|
|* which appears on every screen throughout the game. *|
|* *|
\****************************************************************************/
/* System headers. */
#include <unistd.h>
/* Local headers. */
#include "possum.hpp"
#include "background.hpp"
/* Functions. */
/**
* Background()
*
* Constructor; sets things up to know which part of the background sprite
* we're using, sensible default scroll speeds and suchlike.
*/
Background::Background( void )
{
/* The background starts at the start. */
c_panel = 0;
c_offset = 0;
c_delay = 20;
c_last_tick = 0;
/* All done. */
return;
}
/**
* ~Background()
*
* Destructor; general tidying up, but we really don't have much work here.
*/
Background::~Background( void )
{
/* All done. */
return;
}
/**
* update( p_time )
*
* Updates the position of the background, based on the time elapsed. This
* ensures that it's a visually smooth scroll, in theory.
*/
void Background::update( uint32_t p_time )
{
/* If this is the first call, not much we can sensibly do. */
if ( c_last_tick == 0 )
{
c_last_tick = p_time;
return;
}
/* Check to see if enough time has passed to move. */
if ( p_time < ( c_last_tick + c_delay ) )
{
return;
}
c_last_tick = p_time;
/*
* Move the offset down on the panel; panels are 256px long, so once we
* reach the bottom we loop back.
*/
if ( c_offset == 0 )
{
/* And reset the offset. */
c_offset = PANEL_HEIGHT-1;
}
else
{
/* Otherwise we just keep moving the offset along. */
c_offset--;
}
/* All done. */
return;
}
/**
* render()
*
* Draws the background to the screen, based on it's current position.
*/
void Background::render( void )
{
uint8_t l_carry = 0;
blit::Rect l_src_rect( c_panel * (PANEL_WIDTH+1), c_offset, PANEL_WIDTH, blit::screen.bounds.h );
/*
* On the face of it, simple - blit from the right panel, at the right
* offset. However, we need to make sure we don't go off the bottom.
*/
if ( l_src_rect.bl().y >= PANEL_HEIGHT )
{
l_carry = l_src_rect.bl().y - PANEL_HEIGHT;
l_src_rect.h -= l_carry;
}
/* So, as much of the top panel as possible. */
blit::screen.blit( g_ss_backgrounds, l_src_rect, blit::Point( 0, 0 ) );
/* If the screen is wider than the panels, need to add some more! */
if ( blit::screen.bounds.w > PANEL_WIDTH )
{
blit::screen.blit( g_ss_backgrounds, l_src_rect, blit::Point( PANEL_WIDTH, 0 ) );
}
/* And then, if we have a carry, we fetch that from the next panel. */
if ( l_carry > 0 )
{
/* Set the y to the top. */
l_src_rect.y = 0;
/* Open up the height fully, let the blit clip it. */
l_src_rect.h = blit::screen.bounds.h;
/* And then blit this bit too. */
blit::screen.blit( g_ss_backgrounds, l_src_rect, blit::Point( 0, blit::screen.bounds.h - l_carry ) );
if ( blit::screen.bounds.w > PANEL_WIDTH )
{
blit::screen.blit( g_ss_backgrounds, l_src_rect, blit::Point( PANEL_WIDTH, blit::screen.bounds.h - l_carry ) );
}
}
/* All done. */
return;
}
/* End of file background.cpp */