anarch/platform_pokitto.h

118 lines
2.3 KiB
C
Raw Normal View History

2019-10-03 18:04:14 -04:00
/**
@file platform_pokitto.h
This is Pokitto implementation of the game front end.
by Miloslav Ciz (drummyfish), 2019
Released under CC0 1.0 (https://creativecommons.org/publicdomain/zero/1.0/)
plus a waiver of all other intellectual property. The goal of this work is
be and remain completely in the public domain forever, available for any use
whatsoever.
*/
2019-09-27 10:38:55 -04:00
#ifndef _SFG_PLATFORM_H
#define _SFG_PLATFORM_H
#include "settings.h"
#undef SFG_FPS
2019-10-03 13:31:25 -04:00
#define SFG_FPS 50
2019-09-27 10:38:55 -04:00
2019-10-04 10:32:24 -04:00
#undef SFG_SCREEN_RESOLUTION_X
#define SFG_SCREEN_RESOLUTION_X 110
2019-09-27 10:38:55 -04:00
2019-10-04 10:32:24 -04:00
#undef SFG_SCREEN_RESOLUTION_Y
#define SFG_SCREEN_RESOLUTION_Y 88
#undef SFG_RESOLUTION_SCALEDOWN
#define SFG_RESOLUTION_SCALEDOWN 1
2019-09-27 10:38:55 -04:00
#undef SFG_DITHERED_SHADOW
#define SFG_DITHERED_SHADOW 0
2020-02-01 17:17:22 -05:00
#undef SFG_FOG_DIMINISH_STEP
#define SFG_FOG_DIMINISH_STEP 2048
2019-09-27 10:38:55 -04:00
#undef SFG_RAYCASTING_MAX_STEPS
#define SFG_RAYCASTING_MAX_STEPS 20
#undef SFG_RAYCASTING_MAX_HITS
#define SFG_RAYCASTING_MAX_HITS 6
2019-10-13 20:29:13 -04:00
#undef SFG_RAYCASTING_SUBSAMPLE
#define SFG_RAYCASTING_SUBSAMPLE 2
2019-09-27 10:38:55 -04:00
#include "Pokitto.h"
2019-10-02 14:31:27 -04:00
#include "palette.h"
2019-09-27 10:38:55 -04:00
Pokitto::Core pokitto;
uint8_t *pokittoScreen;
void SFG_setPixel(uint16_t x, uint16_t y, uint8_t colorIndex)
{
2019-10-04 10:32:24 -04:00
pokittoScreen[y * SFG_SCREEN_RESOLUTION_X + x] = colorIndex;
2019-09-27 10:38:55 -04:00
}
uint32_t SFG_getTimeMs()
{
return pokitto.getTime();
}
void SFG_sleepMs(uint16_t timeMs)
{
}
int8_t SFG_keyPressed(uint8_t key)
{
switch (key)
{
case SFG_KEY_UP: return pokitto.upBtn(); break;
case SFG_KEY_RIGHT: return pokitto.rightBtn(); break;
case SFG_KEY_DOWN: return pokitto.downBtn(); break;
case SFG_KEY_LEFT: return pokitto.leftBtn(); break;
case SFG_KEY_A: return pokitto.aBtn(); break;
case SFG_KEY_B: return pokitto.bBtn(); break;
case SFG_KEY_C: return pokitto.cBtn(); break;
default: return 0; break;
}
}
2020-01-18 05:10:05 -05:00
void SFG_getMouseOffset(int16_t *x, int16_t *y)
{
*x = 0;
*y = 0;
}
2020-02-05 10:02:03 -05:00
void SFG_playSound(uint8_t soundIndex, uint8_t volume)
{
}
2019-09-27 10:38:55 -04:00
int main()
{
pokitto.begin();
2019-10-17 15:19:32 -04:00
pokitto.setFrameRate(255);
2019-09-27 10:38:55 -04:00
pokitto.display.setFont(fontTiny);
pokitto.display.persistence = 1;
pokitto.display.setInvisibleColor(-1);
pokitto.display.load565Palette(paletteRGB565);
pokittoScreen = pokitto.display.screenbuffer;
SFG_init();
while (pokitto.isRunning())
{
if (pokitto.update())
{
SFG_mainLoopBody();
}
}
return 0;
}
#endif // guard