Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UFCFVK-15-2 - Internet of things - Challenge 1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ja3-saxby
UFCFVK-15-2 - Internet of things - Challenge 1
Commits
26c8f41b
Commit
26c8f41b
authored
5 years ago
by
ja3-saxby
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Perhaps C++ event-handlers are broken..."
This reverts commit
f117a6fa
.
parent
055b88a5
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/main.cpp
+112
-7
112 additions, 7 deletions
source/main.cpp
with
112 additions
and
7 deletions
source/main.cpp
+
112
−
7
View file @
26c8f41b
...
@@ -17,23 +17,128 @@
...
@@ -17,23 +17,128 @@
#include
"MicroBit.h"
#include
"MicroBit.h"
MicroBit
micro_bit
;
void
event_handler
(
MicroBitEvent
)
{
/**
micro_bit
.
display
.
printAsync
(
"A"
,
200
);
* @brief Main class responsible for the game loop and logic
*/
class
Game
{
public:
/**
* @brief Constructor
* @details takes reference to the micro-bit instance for the sake of not
* using global variables.
*/
Game
(
MicroBit
&
micro_bit
);
/**
* @brief Starts a new run of the game
* @note method blocks until game over.
*/
void
run
();
/* begin event handler methods */
/**
* Handles Button A Press event
*/
void
press_button_a
(
MicroBitEvent
e
);
/**
* Handles Button B Press event
*/
void
press_button_b
(
MicroBitEvent
e
);
/* end event handler methods */
private:
/**
* @brief Draws whatever's in the screen buffer to display
*/
void
draw
();
// reference to our MicroBit instance
MicroBit
&
micro_bit
;
// internal screen-buffer, which we draw to first before pasting to display
MicroBitImage
screen_buffer
;
};
Game
::
Game
(
MicroBit
&
micro_bit
)
:
micro_bit
(
micro_bit
)
,
screen_buffer
(
5
,
5
)
// our screen buffer mirrors the display dimensions
{}
void
Game
::
run
()
{
// this->micro_bit.display.scroll("NEW GAME!");
// init screen display mode, to be sure it is in a known-state
// TODO: consider changing to greyscale to allow "mutli-coloured" blocks
// this->micro_bit.display.setDisplayMode(DISPLAY_MODE_BLACK_AND_WHITE);
// register event-handlers
this
->
micro_bit
.
messageBus
.
listen
(
MICROBIT_ID_BUTTON_A
,
MICROBIT_BUTTON_EVT_CLICK
,
this
,
&
Game
::
press_button_a
);
this
->
micro_bit
.
messageBus
.
listen
(
MICROBIT_ID_BUTTON_B
,
MICROBIT_BUTTON_EVT_CLICK
,
this
,
&
Game
::
press_button_b
);
while
(
true
)
{
// TODO: change to use game-over condition
// this->draw(); // render screen buffer
// sleep to conserve CPU cycles and allow other fibers a chance to run
this
->
micro_bit
.
sleep
(
100
);
// a 100ms sleep gives us a 10Hz tick-rate
}
// TODO: add the rest of the game logic
this
->
micro_bit
.
display
.
scroll
(
"GAME OVER!"
);
// TODO: display final score
// TODO: de-register event-handlers
this
->
micro_bit
.
messageBus
.
ignore
(
MICROBIT_ID_BUTTON_A
,
MICROBIT_BUTTON_EVT_CLICK
,
this
,
&
Game
::
press_button_a
);
this
->
micro_bit
.
messageBus
.
ignore
(
MICROBIT_ID_BUTTON_B
,
MICROBIT_BUTTON_EVT_CLICK
,
this
,
&
Game
::
press_button_b
);
}
void
Game
::
draw
()
{
// XXX: debug drawing, fill the screen buffer with black
this
->
screen_buffer
.
clear
();
// render our screen buffer
this
->
micro_bit
.
display
.
image
.
paste
(
this
->
screen_buffer
);
}
}
void
Game
::
press_button_a
(
MicroBitEvent
e
)
{
// XXX: debug
this
->
micro_bit
.
display
.
print
(
"A"
);
}
void
Game
::
press_button_b
(
MicroBitEvent
e
)
{
// XXX: debug
this
->
micro_bit
.
display
.
print
(
"B"
);
}
MicroBit
micro_bit
;
int
main
()
{
int
main
()
{
// Initialise the micro:bit runtime.
// Initialise the micro:bit runtime.
micro_bit
.
init
();
micro_bit
.
init
();
micro_bit
.
messageBus
.
listen
(
// startup message displays the name of the game
MICROBIT_ID_BUTTON_A
,
MICROBIT_BUTTON_EVT_CLICK
,
event_handler
micro_bit
.
display
.
scroll
(
"BLOCKS!"
);
);
// infinitely start new games
while
(
true
)
{
while
(
true
)
{
micro_bit
.
sleep
(
10
);
// 10ms sleep, or 100Hz tick rate
Game
game
(
micro_bit
);
game
.
run
();
}
}
// TODO: potentially remove this call, if clarified that it is not required.
// TODO: potentially remove this call, if clarified that it is not required.
...
...
This diff is collapsed.
Click to expand it.
ja3-saxby
@ja3-saxby
mentioned in commit
6a10118b
·
5 years ago
mentioned in commit
6a10118b
mentioned in commit 6a10118be705dc87540799c89ad37fb8acf8c7b6
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment