ed2e5a01f9
it almost works sob
124 lines
2.1 KiB
C
124 lines
2.1 KiB
C
#include <iso646.h>
|
|
#include <pthread.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "control.h"
|
|
#include "fumotris.h"
|
|
#include "term.h"
|
|
#include "tetr.h"
|
|
|
|
#ifdef _WIN32
|
|
#include "win.h"
|
|
#endif
|
|
|
|
const size_t code_count = 12;
|
|
|
|
const enum CtrlCode codes[12] = {
|
|
LEFT,
|
|
RIGHT,
|
|
SOFT_DROP,
|
|
HARD_DROP,
|
|
ROTATE_CCW,
|
|
ROTATE_CW,
|
|
ROTATE_180,
|
|
SWAP,
|
|
ESC,
|
|
|
|
VSCROLL,
|
|
HSCROLL,
|
|
|
|
MOUSE
|
|
};
|
|
|
|
const u16f binds[12] = {
|
|
0x25,
|
|
0x27,
|
|
0x28,
|
|
0x20,
|
|
'Z',
|
|
'X',
|
|
'A',
|
|
'C',
|
|
0x1B,
|
|
|
|
0,
|
|
1,
|
|
|
|
0
|
|
};
|
|
|
|
u8 I[16] = {
|
|
0, 0, 0, 0,
|
|
0, 0, 0, 0,
|
|
1, 1, 1, 1,
|
|
0, 0, 0, 0
|
|
};
|
|
|
|
void Loop(Ctrl *ctrl, struct RecordBuffer *in_buf)
|
|
{
|
|
struct TermBuf term = NewTermBuf(20, 20);
|
|
struct CharBlk4 term_blks[term.area];
|
|
memset(term_blks, 0, sizeof(struct CharBlk4) * term.area);
|
|
term.blks = term_blks;
|
|
|
|
size_t out_max = TermMaxChars(&term);
|
|
char out[out_max];
|
|
memset(out, 0, out_max);
|
|
|
|
struct TetrMap board = NewTetrMap(10, 20);
|
|
u8 board_blks[board.area];
|
|
memset(board_blks, 0, board.area);
|
|
board.blks = board_blks;
|
|
|
|
struct TetrMap falling = NewTetrMap(4, 4);
|
|
u8 falling_blks[falling.area];
|
|
memcpy(falling_blks, I, falling.area);
|
|
falling.blks = falling_blks;
|
|
|
|
for (int i = 0; i < 7779997; i++) {
|
|
CtrlPoll(ctrl, in_buf);
|
|
|
|
TetrMapToTermBuf(&board, &term);
|
|
TetrMapToTermBuf(&falling, &term);
|
|
|
|
TermBufToChars(&term, out, out_max);
|
|
puts(out);
|
|
|
|
WindowsWait(0.5);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
WindowsInit();
|
|
|
|
Ctrl ctrl;
|
|
NEW_CTRL(ctrl, 13, 13);
|
|
|
|
for (size_t i = 0; i < code_count; i++) {
|
|
CtrlMap(&ctrl, key_binds[i], key_codes[i], KEY);
|
|
}
|
|
for (size_t i = 0; i < 2; i++) {
|
|
CtrlMap(&ctrl, axis_codes[i], axis_binds[i], AXIS);
|
|
}
|
|
CtrlMap(&ctrl, 0, MOUSE, JOYSTICK);
|
|
CtrlMap(&ctrl, 0, 0, WINDOW);
|
|
|
|
printf("set controls\n");
|
|
|
|
struct RecordBuffer in_buf = {
|
|
.count = 0,
|
|
.mutex = PTHREAD_MUTEX_INITIALIZER
|
|
};
|
|
|
|
StartInput(&ctrl, &in_buf);
|
|
Loop(&ctrl, &in_buf);
|
|
|
|
JoinInput(&ctrl);
|
|
|
|
return 0;
|
|
} |