Compare commits
5 Commits
v1.0.0
...
a59192cf05
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a59192cf05 | ||
|
|
fa7e18e4d5 | ||
|
|
4ed4452fae | ||
|
|
b9ca8df59b | ||
|
|
8fa8bf392b |
@@ -1,4 +1,4 @@
|
|||||||
// background_dark_inverted.h
|
// src/assets/background_frame.h
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
static const char *BACKGROUND_MASK[] = {
|
static const char *BACKGROUND_MASK[] = {
|
||||||
54
semestralka1/src/assets/character_frames.h
Normal file
54
semestralka1/src/assets/character_frames.h
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
// src/assets/character_frames.h
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// Player frame 1
|
||||||
|
static const char *CHARACTER_MASK_FRAME_1[] = {
|
||||||
|
".....a@$..",
|
||||||
|
".....7PF..",
|
||||||
|
"..yaM@@__y",
|
||||||
|
"..@.y@FFF~",
|
||||||
|
"..._$M@_..",
|
||||||
|
"yaa@~.`@y.",
|
||||||
|
"........@r"
|
||||||
|
};
|
||||||
|
|
||||||
|
// Player frame 2
|
||||||
|
static const char *CHARACTER_MASK_FRAME_2[] = {
|
||||||
|
".g@$",
|
||||||
|
".7PF",
|
||||||
|
"y@$.",
|
||||||
|
"0@F.",
|
||||||
|
"4@$.",
|
||||||
|
"y$@.",
|
||||||
|
"u@.."
|
||||||
|
};
|
||||||
|
|
||||||
|
// Player frame 3 (triggered)
|
||||||
|
static const char *CHARACTER_MASK_FRAME_3[] = {
|
||||||
|
".._$@.",
|
||||||
|
".$By`.",
|
||||||
|
"4@$@@a",
|
||||||
|
"aa@W@."
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class CharacterFrame {
|
||||||
|
Walk1 = 0,
|
||||||
|
Walk2,
|
||||||
|
Crawl1,
|
||||||
|
COUNT // number of frames, must stay last
|
||||||
|
};
|
||||||
|
|
||||||
|
// Combine frames for easy access
|
||||||
|
static const char **PLAYER_FRAMES[] = {
|
||||||
|
CHARACTER_MASK_FRAME_1, // Walk1
|
||||||
|
CHARACTER_MASK_FRAME_2, // Walk1
|
||||||
|
CHARACTER_MASK_FRAME_3 // Crawl1
|
||||||
|
};
|
||||||
|
|
||||||
|
static const int CHARACTER_FRAME_COUNT = static_cast<int>(CharacterFrame::COUNT);
|
||||||
|
|
||||||
|
// Height per frame
|
||||||
|
static const int CHARACTER_HEIGHT_1 = sizeof(CHARACTER_MASK_FRAME_1) / sizeof(CHARACTER_MASK_FRAME_1[0]);
|
||||||
|
static const int CHARACTER_HEIGHT_2 = sizeof(CHARACTER_MASK_FRAME_2) / sizeof(CHARACTER_MASK_FRAME_2[0]);
|
||||||
|
static const int CHARACTER_HEIGHT_3 = sizeof(CHARACTER_MASK_FRAME_3) / sizeof(CHARACTER_MASK_FRAME_3[0]);
|
||||||
0
semestralka1/src/game/animation.cpp
Normal file
0
semestralka1/src/game/animation.cpp
Normal file
0
semestralka1/src/game/animation.h
Normal file
0
semestralka1/src/game/animation.h
Normal file
38
semestralka1/src/game/state.cpp
Normal file
38
semestralka1/src/game/state.cpp
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
// src/game/state.cpp
|
||||||
|
#include "state.h"
|
||||||
|
|
||||||
|
void WalkingState::update() {
|
||||||
|
// stop crawling after duration
|
||||||
|
if (current_state == PlayerState::Crawl1 &&
|
||||||
|
state_timer.elapsed_time() >= CRAWL_DURATION) {
|
||||||
|
current_state = PlayerState::Walk1;
|
||||||
|
state_timer.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void WalkingState::start_crawl() {
|
||||||
|
current_state = PlayerState::Crawl1;
|
||||||
|
state_timer.reset();
|
||||||
|
state_timer.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void WalkingState::toggle_walk_frame() {
|
||||||
|
if (current_state == PlayerState::Walk1) {
|
||||||
|
current_state = PlayerState::Walk2;
|
||||||
|
} else if (current_state == PlayerState::Walk2) {
|
||||||
|
current_state = PlayerState::Walk1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CharacterFrame WalkingState::get_character_frame() const {
|
||||||
|
switch (current_state) {
|
||||||
|
case PlayerState::Walk1:
|
||||||
|
return CharacterFrame::Walk1;
|
||||||
|
case PlayerState::Walk2:
|
||||||
|
return CharacterFrame::Walk2;
|
||||||
|
case PlayerState::Crawl1:
|
||||||
|
return CharacterFrame::Crawl1;
|
||||||
|
default:
|
||||||
|
return CharacterFrame::Walk1;
|
||||||
|
}
|
||||||
|
}
|
||||||
27
semestralka1/src/game/state.h
Normal file
27
semestralka1/src/game/state.h
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// src/game/state.h
|
||||||
|
#pragma once
|
||||||
|
#include "mbed.h"
|
||||||
|
#include "../assets/character_frames.h"
|
||||||
|
|
||||||
|
constexpr auto CRAWL_DURATION = 300ms;
|
||||||
|
|
||||||
|
enum class PlayerState { Walk1, Walk2, Crawl1 };
|
||||||
|
|
||||||
|
class WalkingState {
|
||||||
|
private:
|
||||||
|
PlayerState current_state = PlayerState::Walk1;
|
||||||
|
Timer state_timer;
|
||||||
|
|
||||||
|
public:
|
||||||
|
// MOVED FROM loop.cpp
|
||||||
|
// Update state (handles crawl timeout)
|
||||||
|
void update();
|
||||||
|
|
||||||
|
// State transitions
|
||||||
|
void start_crawl();
|
||||||
|
void toggle_walk_frame();
|
||||||
|
|
||||||
|
// Getters
|
||||||
|
PlayerState get_state() const { return current_state; }
|
||||||
|
CharacterFrame get_character_frame() const;
|
||||||
|
};
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
// main.cpp
|
// main.cpp
|
||||||
|
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "background_dark_inverted.h"
|
#include "assets/background_frame.h"
|
||||||
#include "render/loop.h"
|
#include "render/loop.h"
|
||||||
|
|
||||||
#define TARGET_TX_PIN USBTX
|
#define TARGET_TX_PIN USBTX
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// src/render/background.cpp
|
// src/render/background.cpp
|
||||||
|
|
||||||
#include "../background_dark_inverted.h"
|
#include "../assets/background_frame.h"
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
// src/render/loop.cpp
|
// src/render/loop.cpp
|
||||||
#include "loop.h"
|
#include "loop.h"
|
||||||
#include "../background_dark_inverted.h"
|
#include "../assets/background_frame.h"
|
||||||
#include "player_positioning.h"
|
#include "player_positioning.h"
|
||||||
#include "background.h"
|
#include "background.h"
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "player.h"
|
#include "player.h"
|
||||||
#include "player_mask.h"
|
#include "../game/state.h"
|
||||||
|
#include "../assets/character_frames.h"
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
extern BufferedSerial serial_port;
|
extern BufferedSerial serial_port;
|
||||||
@@ -13,19 +14,11 @@ extern DigitalOut led;
|
|||||||
|
|
||||||
// Constants
|
// Constants
|
||||||
constexpr size_t BUFFER_SIZE = 64;
|
constexpr size_t BUFFER_SIZE = 64;
|
||||||
constexpr auto CRAWL_DURATION = 300ms;
|
|
||||||
constexpr auto ANIMATION_TICK = 170ms;
|
constexpr auto ANIMATION_TICK = 170ms;
|
||||||
constexpr auto MESSAGE_DISPLAY_DURATION = 1s;
|
constexpr auto MESSAGE_DISPLAY_DURATION = 1s;
|
||||||
constexpr int PLAYER_X = 9;
|
constexpr int PLAYER_X = 9;
|
||||||
constexpr int PLAYER_Y = 6;
|
constexpr int PLAYER_Y = 6;
|
||||||
|
|
||||||
enum class PlayerState { Walk1, Walk2, Crawl1 };
|
|
||||||
|
|
||||||
struct WalkingState {
|
|
||||||
PlayerState current_state = PlayerState::Walk1;
|
|
||||||
Timer state_timer;
|
|
||||||
};
|
|
||||||
|
|
||||||
static char rx_buffer[BUFFER_SIZE];
|
static char rx_buffer[BUFFER_SIZE];
|
||||||
static char message[BUFFER_SIZE];
|
static char message[BUFFER_SIZE];
|
||||||
static bool message_active = false;
|
static bool message_active = false;
|
||||||
@@ -86,42 +79,6 @@ static bool update_animation(Timer &anim_timer, int &shift, int speed) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_player_frame(PlayerState state) {
|
|
||||||
switch (state) {
|
|
||||||
case PlayerState::Walk1:
|
|
||||||
return 0;
|
|
||||||
case PlayerState::Walk2:
|
|
||||||
return 1;
|
|
||||||
case PlayerState::Crawl1:
|
|
||||||
return 2;
|
|
||||||
default:
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void update_player_state(WalkingState &state) {
|
|
||||||
// stop crawling
|
|
||||||
if (state.current_state == PlayerState::Crawl1 &&
|
|
||||||
state.state_timer.elapsed_time() >= CRAWL_DURATION) {
|
|
||||||
state.current_state = PlayerState::Walk1;
|
|
||||||
state.state_timer.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void toggle_walk_frame(WalkingState &state) {
|
|
||||||
if (state.current_state == PlayerState::Walk1) {
|
|
||||||
state.current_state = PlayerState::Walk2;
|
|
||||||
} else if (state.current_state == PlayerState::Walk2) {
|
|
||||||
state.current_state = PlayerState::Walk1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void start_crawl(WalkingState &state) {
|
|
||||||
state.current_state = PlayerState::Crawl1;
|
|
||||||
state.state_timer.reset();
|
|
||||||
state.state_timer.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
void render_loop(int speed) {
|
void render_loop(int speed) {
|
||||||
WalkingState player_state;
|
WalkingState player_state;
|
||||||
|
|
||||||
@@ -129,7 +86,7 @@ void render_loop(int speed) {
|
|||||||
anim_timer.start();
|
anim_timer.start();
|
||||||
int shift = 0;
|
int shift = 0;
|
||||||
|
|
||||||
PlayerPosition pos = {PLAYER_X, PLAYER_Y};
|
CharacterPosition pos = {PLAYER_X, PLAYER_Y};
|
||||||
|
|
||||||
const char *bg_file = "background_dark_inverted.txt";
|
const char *bg_file = "background_dark_inverted.txt";
|
||||||
bool need_redraw = false;
|
bool need_redraw = false;
|
||||||
@@ -144,12 +101,12 @@ void render_loop(int speed) {
|
|||||||
|
|
||||||
if (uart_state == 2) {
|
if (uart_state == 2) {
|
||||||
// start crawl frame for x time
|
// start crawl frame for x time
|
||||||
start_crawl(player_state);
|
player_state.start_crawl();
|
||||||
need_redraw = true;
|
need_redraw = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if crawl duration expired
|
// Check if crawl duration expired
|
||||||
update_player_state(player_state);
|
player_state.update();
|
||||||
|
|
||||||
if (update_animation(anim_timer, shift, speed)) {
|
if (update_animation(anim_timer, shift, speed)) {
|
||||||
need_redraw = true;
|
need_redraw = true;
|
||||||
@@ -157,13 +114,14 @@ void render_loop(int speed) {
|
|||||||
|
|
||||||
if (need_redraw) {
|
if (need_redraw) {
|
||||||
draw_mask(bg_file, shift, message_active ? message : nullptr);
|
draw_mask(bg_file, shift, message_active ? message : nullptr);
|
||||||
int player_frame = get_player_frame(player_state.current_state);
|
CharacterFrame player_frame = player_state.get_character_frame();
|
||||||
PlayerPosition draw_pos = get_aligned_frame_position(pos, player_frame);
|
|
||||||
draw_player(draw_pos.x, draw_pos.y, player_frame);
|
CharacterPosition draw_pos = get_aligned_frame_position(pos, player_frame);
|
||||||
|
draw_character(draw_pos.x, draw_pos.y, player_frame);
|
||||||
|
|
||||||
// alternate between frame 0 and 1 when not crawling
|
// alternate between frame 0 and 1 when not crawling
|
||||||
if (player_state.current_state != PlayerState::Crawl1) {
|
if (player_state.get_state() != PlayerState::Crawl1) {
|
||||||
toggle_walk_frame(player_state);
|
player_state.toggle_walk_frame();
|
||||||
}
|
}
|
||||||
|
|
||||||
ThisThread::sleep_for(50ms);
|
ThisThread::sleep_for(50ms);
|
||||||
|
|||||||
@@ -1,25 +1,33 @@
|
|||||||
// src/render/player.cpp
|
// src/render/player.cpp
|
||||||
|
|
||||||
#include "player.h"
|
#include "player.h"
|
||||||
#include "player_mask.h"
|
#include "../assets/character_frames.h"
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
||||||
void draw_player(int x, int y, int frame_index) {
|
void draw_character(int x, int y, CharacterFrame frame) {
|
||||||
if (frame_index < 0 || frame_index >= PLAYER_FRAME_COUNT)
|
int frame_index = static_cast<int>(frame);
|
||||||
|
if (frame_index < 0 || frame_index >= CHARACTER_FRAME_COUNT)
|
||||||
frame_index = 0; // fallback safety
|
frame_index = 0; // fallback safety
|
||||||
|
|
||||||
const char **sprite = PLAYER_FRAMES[frame_index];
|
const char **character = PLAYER_FRAMES[frame_index];
|
||||||
int sprite_height = 0;
|
|
||||||
if (frame_index == 0)
|
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_1;
|
|
||||||
else if (frame_index == 1)
|
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_2;
|
|
||||||
else
|
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_3;
|
|
||||||
|
|
||||||
// Draw the sprite starting from (x, y)
|
int character_height = 0;
|
||||||
for (int i = 0; i < sprite_height; i++) {
|
switch (frame) {
|
||||||
printf("\033[%d;%dH%s", y + i + 1, x + 1, sprite[i]);
|
case CharacterFrame::Walk1:
|
||||||
|
character_height = CHARACTER_HEIGHT_1;
|
||||||
|
break;
|
||||||
|
case CharacterFrame::Walk2:
|
||||||
|
character_height = CHARACTER_HEIGHT_2;
|
||||||
|
break;
|
||||||
|
case CharacterFrame::Crawl1:
|
||||||
|
character_height = CHARACTER_HEIGHT_3;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
character_height = CHARACTER_HEIGHT_1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < character_height; i++) {
|
||||||
|
printf("\033[%d;%dH%s", y + i + 1, x + 1, character[i]);
|
||||||
}
|
}
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
// src/render/player.h
|
// src/render/player.h
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include "../assets/character_frames.h"
|
||||||
|
|
||||||
// Draw the player object starting at given (x, y)
|
// Draw the player object starting at given (x, y)
|
||||||
void draw_player(int x, int y, int frame_index);
|
void draw_character(int x, int y, CharacterFrame frame);
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
// src/render/player_mask.h
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
// Player frame 1
|
|
||||||
static const char *PLAYER_MASK_FRAME_1[] = {
|
|
||||||
".....a@$..",
|
|
||||||
".....7PF..",
|
|
||||||
"..yaM@@__y",
|
|
||||||
"..@.y@FFF~",
|
|
||||||
"..._$M@_..",
|
|
||||||
"yaa@~.`@y.",
|
|
||||||
"........@r"
|
|
||||||
};
|
|
||||||
|
|
||||||
// Player frame 2
|
|
||||||
static const char *PLAYER_MASK_FRAME_2[] = {
|
|
||||||
".g@$",
|
|
||||||
".7PF",
|
|
||||||
"y@$.",
|
|
||||||
"0@F.",
|
|
||||||
"4@$.",
|
|
||||||
"y$@.",
|
|
||||||
"u@.."
|
|
||||||
};
|
|
||||||
|
|
||||||
// Player frame 3 (triggered)
|
|
||||||
static const char *PLAYER_MASK_FRAME_3[] = {
|
|
||||||
".._$@.",
|
|
||||||
".$By`.",
|
|
||||||
"4@$@@a",
|
|
||||||
"aa@W@."
|
|
||||||
};
|
|
||||||
|
|
||||||
// Combine frames for easy access
|
|
||||||
static const char **PLAYER_FRAMES[] = {
|
|
||||||
PLAYER_MASK_FRAME_1, // 0
|
|
||||||
PLAYER_MASK_FRAME_2, // 1
|
|
||||||
PLAYER_MASK_FRAME_3 // 2 (triggered)
|
|
||||||
};
|
|
||||||
|
|
||||||
static const int PLAYER_FRAME_COUNT = sizeof(PLAYER_FRAMES) / sizeof(PLAYER_FRAMES[0]);
|
|
||||||
|
|
||||||
// Line counts per frame
|
|
||||||
static const int PLAYER_MASK_LINES_FRAME_1 =
|
|
||||||
sizeof(PLAYER_MASK_FRAME_1) / sizeof(PLAYER_MASK_FRAME_1[0]);
|
|
||||||
static const int PLAYER_MASK_LINES_FRAME_2 =
|
|
||||||
sizeof(PLAYER_MASK_FRAME_2) / sizeof(PLAYER_MASK_FRAME_2[0]);
|
|
||||||
static const int PLAYER_MASK_LINES_FRAME_3 =
|
|
||||||
sizeof(PLAYER_MASK_FRAME_3) / sizeof(PLAYER_MASK_FRAME_3[0]);
|
|
||||||
@@ -1,24 +1,25 @@
|
|||||||
// src/render/player_positioning.cpp
|
// src/render/player_positioning.cpp
|
||||||
#include "player_positioning.h"
|
#include "player_positioning.h"
|
||||||
#include "../background_dark_inverted.h"
|
#include "../assets/background_frame.h"
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
||||||
// Convert a pivot coordinate (bottom-left) to the top-left draw position
|
// Convert a pivot coordinate (bottom-left) to the top-left draw position
|
||||||
PlayerPosition get_aligned_frame_position(PlayerPosition base, int frame_index) {
|
CharacterPosition get_aligned_frame_position(CharacterPosition base, CharacterFrame frame) {
|
||||||
if (frame_index < 0 || frame_index >= PLAYER_FRAME_COUNT)
|
int frame_index = static_cast<int>(frame);
|
||||||
|
if (frame_index < 0 || frame_index >= CHARACTER_FRAME_COUNT)
|
||||||
frame_index = 0;
|
frame_index = 0;
|
||||||
|
|
||||||
int sprite_height = 0;
|
int character_height = 0;
|
||||||
if (frame_index == 0)
|
if (frame_index == 0)
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_1;
|
character_height = CHARACTER_HEIGHT_1;
|
||||||
else if (frame_index == 1)
|
else if (frame_index == 1)
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_2;
|
character_height = CHARACTER_HEIGHT_2;
|
||||||
else
|
else
|
||||||
sprite_height = PLAYER_MASK_LINES_FRAME_3;
|
character_height = CHARACTER_HEIGHT_3;
|
||||||
|
|
||||||
PlayerPosition draw_pos;
|
CharacterPosition draw_pos;
|
||||||
draw_pos.x = base.x;
|
draw_pos.x = base.x;
|
||||||
draw_pos.y = (VIEW_HEIGHT - base.y) - sprite_height;
|
draw_pos.y = (VIEW_HEIGHT - base.y) - character_height;
|
||||||
|
|
||||||
return draw_pos;
|
return draw_pos;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
// src/render/player_positioning.h
|
// src/render/player_positioning.h
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "player_mask.h"
|
#include "../assets/background_frame.h"
|
||||||
|
#include "../assets/character_frames.h"
|
||||||
|
|
||||||
struct PlayerPosition {
|
struct CharacterPosition {
|
||||||
int x;
|
int x;
|
||||||
int y;
|
int y;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Calculates drawing position relative to bottom-left pivot
|
// Calculates drawing position relative to bottom-left pivot
|
||||||
PlayerPosition get_aligned_frame_position(PlayerPosition base, int frame_index);
|
CharacterPosition get_aligned_frame_position(CharacterPosition base, CharacterFrame frame);
|
||||||
|
|||||||
Reference in New Issue
Block a user