mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
6838e69ebe
## Link to GitHub Issue or related Pull Request, if one exists #618 ## Description of change Add rest of the LED strip lights. ## Testing Tested U region.
35 lines
691 B
C++
35 lines
691 B
C++
#pragma once
|
|
|
|
#include "avs/game.h"
|
|
#include "games/game.h"
|
|
#include "util/tapeled.h"
|
|
|
|
namespace games::popn {
|
|
|
|
static inline bool is_pikapika_model() {
|
|
|
|
#if SPICE64
|
|
return (avs::game::is_model("M39") && avs::game::SPEC[0] == 'D');
|
|
#else
|
|
return false;
|
|
#endif
|
|
|
|
}
|
|
|
|
#if SPICE64
|
|
constexpr int POPN_TAPELED_TOTAL = 8;
|
|
extern tapeledutils::tape_led TAPELED_MAPPING[POPN_TAPELED_TOTAL];
|
|
#endif
|
|
|
|
extern bool SHOW_PIKA_MONITOR_WARNING;
|
|
extern bool NATIVE_TOUCH;
|
|
|
|
class POPNGame : public games::Game {
|
|
public:
|
|
POPNGame();
|
|
~POPNGame() override;
|
|
virtual void pre_attach() override;
|
|
virtual void attach() override;
|
|
};
|
|
}
|