2011-12-08 00:36:49 +00:00
|
|
|
#include <sysinit.h>
|
|
|
|
|
|
|
|
#include "basic/basic.h"
|
|
|
|
#include "basic/byteorder.h"
|
|
|
|
#include "lcd/lcd.h"
|
|
|
|
#include "lcd/print.h"
|
|
|
|
#include "funk/nrf24l01p.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "basic/random.h"
|
2011-12-15 23:52:26 +00:00
|
|
|
#include "basic/config.h"
|
2011-12-08 00:36:49 +00:00
|
|
|
#include "usetable.h"
|
|
|
|
|
|
|
|
|
2011-12-16 00:10:27 +00:00
|
|
|
//channel and mac used to transmit game announcements
|
|
|
|
#define ANNOUNCE_CHANNEL 81
|
|
|
|
#define ANNOUNCE_MAC "REM0T"
|
2011-12-08 00:36:49 +00:00
|
|
|
|
2011-12-12 17:00:14 +00:00
|
|
|
struct NRF_CFG config;
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
struct packet{
|
|
|
|
uint8_t len;
|
|
|
|
uint8_t protocol;
|
|
|
|
uint8_t command;
|
2011-12-11 17:42:40 +00:00
|
|
|
uint32_t id;
|
|
|
|
uint32_t ctr;
|
2011-12-08 00:36:49 +00:00
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
//union with 19 bytes data
|
2011-12-08 00:36:49 +00:00
|
|
|
union content{
|
|
|
|
struct button{
|
|
|
|
uint8_t button;
|
2011-12-11 17:42:40 +00:00
|
|
|
uint8_t reserved[18];
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed)) button;
|
2011-12-08 00:36:49 +00:00
|
|
|
struct text{
|
|
|
|
uint8_t x;
|
|
|
|
uint8_t y;
|
|
|
|
uint8_t flags;
|
2011-12-11 17:42:40 +00:00
|
|
|
uint8_t text[16];
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed)) text;
|
2011-12-08 00:36:49 +00:00
|
|
|
struct nick{
|
|
|
|
uint8_t flags;
|
2011-12-16 02:04:31 +00:00
|
|
|
uint8_t nick[18];
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed)) nick;
|
2011-12-08 00:36:49 +00:00
|
|
|
struct nickrequest{
|
2011-12-11 17:42:40 +00:00
|
|
|
uint8_t reserved[19];
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed)) nickrequest;
|
2011-12-11 17:42:40 +00:00
|
|
|
struct ack{
|
|
|
|
uint8_t flags;
|
2011-12-12 17:00:14 +00:00
|
|
|
uint8_t reserved[18];
|
|
|
|
}__attribute__((packed)) ack;
|
2011-12-11 17:42:40 +00:00
|
|
|
struct announce{
|
|
|
|
uint8_t gameMac[5];
|
|
|
|
uint8_t gameChannel;
|
|
|
|
//uint8_t playerMac[5]; playerMac = gameMac+1;
|
|
|
|
uint32_t gameId;
|
|
|
|
uint8_t gameFlags;
|
|
|
|
uint8_t gameTitle[8];
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed)) announce;
|
2011-12-11 17:42:40 +00:00
|
|
|
struct join{
|
|
|
|
uint32_t gameId;
|
2011-12-12 17:00:14 +00:00
|
|
|
uint8_t reserved[15];
|
|
|
|
}__attribute__((packed)) join;
|
2011-12-08 00:36:49 +00:00
|
|
|
}c;
|
|
|
|
uint16_t crc;
|
2011-12-12 17:00:14 +00:00
|
|
|
}__attribute__((packed));
|
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
#define FLAGS_MASS_GAME 1
|
|
|
|
#define FLAGS_ACK_JOINOK 1
|
|
|
|
#define MASS_ID 1
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
/* l0dable for playing games which are announced by other r0kets with the l0dabel r_game */
|
|
|
|
/* Values of buf[3]:
|
|
|
|
* B: packet sent by player, contain information which button is pressed
|
|
|
|
* T: packet sent by game, contain text for display
|
|
|
|
* N: packet sent by game, requesting nick
|
|
|
|
* n: packet sent player, containing nick
|
2011-12-11 17:42:40 +00:00
|
|
|
* A: packet sent by game, announcing game
|
|
|
|
* J: packet sent by player, requesting to join game
|
|
|
|
* a: ack, packet with $ctr was received
|
2011-12-08 00:36:49 +00:00
|
|
|
*/
|
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
|
2011-12-08 00:36:49 +00:00
|
|
|
uint32_t ctr;
|
|
|
|
uint32_t id;
|
2011-12-11 17:42:40 +00:00
|
|
|
uint32_t gameId;
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
void sendButton(uint8_t button);
|
2011-12-11 17:42:40 +00:00
|
|
|
void sendJoin(uint32_t game);
|
2011-12-08 00:36:49 +00:00
|
|
|
void processPacket(struct packet *p);
|
2011-12-11 17:42:40 +00:00
|
|
|
void processAnnounce(struct announce *a);
|
|
|
|
|
|
|
|
uint8_t selectGame();
|
|
|
|
void playGame();
|
|
|
|
|
2011-12-12 17:00:14 +00:00
|
|
|
struct announce games[7];
|
2011-12-11 17:42:40 +00:00
|
|
|
uint8_t gamecount;
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
void ram(void)
|
|
|
|
{
|
2011-12-15 23:52:26 +00:00
|
|
|
int priv = GLOBAL(privacy);
|
|
|
|
GLOBAL(privacy) = 3;
|
2011-12-12 17:00:14 +00:00
|
|
|
config.nrmacs=1;
|
|
|
|
config.maclen[0] = 32;
|
2011-12-16 00:10:27 +00:00
|
|
|
config.channel = ANNOUNCE_CHANNEL;
|
|
|
|
memcpy(config.mac0, ANNOUNCE_MAC, 5);
|
2011-12-15 23:52:26 +00:00
|
|
|
nrf_config_set(&config);
|
2011-12-12 17:00:14 +00:00
|
|
|
|
2011-12-08 00:36:49 +00:00
|
|
|
id = getRandom();
|
|
|
|
ctr = 1;
|
2011-12-15 23:52:26 +00:00
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
while( selectGame() ){
|
|
|
|
playGame();
|
|
|
|
}
|
2011-12-15 23:52:26 +00:00
|
|
|
GLOBAL(privacy) = priv;
|
2011-12-11 17:42:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void playGame(void)
|
|
|
|
{
|
2011-12-08 00:36:49 +00:00
|
|
|
int len;
|
|
|
|
struct packet p;
|
2011-12-15 23:52:26 +00:00
|
|
|
|
2011-12-08 00:36:49 +00:00
|
|
|
while(1){
|
|
|
|
uint8_t button = getInputRaw();
|
|
|
|
sendButton(button);
|
|
|
|
|
|
|
|
while(1){
|
2011-12-16 02:04:31 +00:00
|
|
|
len = nrf_rcv_pkt_time(32,sizeof(p),(uint8_t*)&p);
|
2011-12-08 00:36:49 +00:00
|
|
|
if(len==sizeof(p)){
|
2011-12-12 17:00:14 +00:00
|
|
|
processPacket(&p);
|
2011-12-08 00:36:49 +00:00
|
|
|
}else{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delayms(20);
|
|
|
|
};
|
2011-12-11 17:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void showGames(uint8_t selected)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
lcdClear();
|
|
|
|
lcdPrintln("Games:");
|
|
|
|
if( gamecount ){
|
|
|
|
for(i=0;i<gamecount;i++){
|
|
|
|
if( i==selected )
|
|
|
|
lcdPrint("*");
|
|
|
|
else
|
|
|
|
lcdPrint(" ");
|
|
|
|
char buf[9];
|
|
|
|
memcpy(buf, games[i].gameTitle, 8);
|
|
|
|
buf[8] = 0;
|
|
|
|
lcdPrintln(buf);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
lcdPrint("*No Games");
|
|
|
|
}
|
|
|
|
lcdRefresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t joinGame()
|
|
|
|
{
|
|
|
|
int i;
|
2011-12-15 23:52:26 +00:00
|
|
|
struct packet p;
|
2011-12-16 00:15:25 +00:00
|
|
|
p.len=sizeof(p);
|
|
|
|
p.protocol='G';
|
|
|
|
p.command='J';
|
|
|
|
p.id= id;
|
|
|
|
p.ctr= ++ctr;
|
|
|
|
p.c.join.gameId=gameId;
|
|
|
|
lcdClear();
|
|
|
|
lcdPrintln("Joining game");
|
|
|
|
lcdRefresh();
|
2011-12-15 23:52:26 +00:00
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
for(i=0; i<10; i++){
|
2011-12-16 00:15:25 +00:00
|
|
|
nrf_snd_pkt_crc(sizeof(p),(uint8_t*)&p);
|
|
|
|
|
|
|
|
int len = nrf_rcv_pkt_time(30,sizeof(p),(uint8_t*)&p);
|
2011-12-11 17:42:40 +00:00
|
|
|
if( len==sizeof(p) ){
|
|
|
|
if( (p.len==32) && (p.protocol=='G') && p.command=='a' ){ //check sanity, protocol
|
|
|
|
if( p.id == id && p.ctr == ctr ){
|
2011-12-16 00:10:27 +00:00
|
|
|
if( p.c.ack.flags & FLAGS_ACK_JOINOK ){
|
|
|
|
lcdPrintln("Join OK");
|
|
|
|
lcdRefresh();
|
2011-12-11 17:42:40 +00:00
|
|
|
return 1;
|
2011-12-16 00:10:27 +00:00
|
|
|
}else{
|
|
|
|
lcdPrintln("Join rejected");
|
|
|
|
lcdRefresh();
|
|
|
|
getInputWait();
|
|
|
|
getInputWaitRelease();
|
2011-12-11 17:42:40 +00:00
|
|
|
return 0;
|
2011-12-16 00:10:27 +00:00
|
|
|
}
|
2011-12-11 17:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delayms(70);
|
|
|
|
}
|
2011-12-16 00:10:27 +00:00
|
|
|
lcdPrintln("timeout :(");
|
|
|
|
lcdRefresh();
|
|
|
|
getInputWait();
|
|
|
|
getInputWaitRelease();
|
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t selectGame()
|
|
|
|
{
|
|
|
|
int len, i, selected;
|
|
|
|
struct packet p;
|
2011-12-12 17:00:14 +00:00
|
|
|
int a = 0;
|
2011-12-16 00:10:27 +00:00
|
|
|
config.channel = ANNOUNCE_CHANNEL;
|
|
|
|
memcpy(config.mac0, ANNOUNCE_MAC, 5);
|
2011-12-11 17:42:40 +00:00
|
|
|
nrf_config_set(&config);
|
|
|
|
|
|
|
|
gamecount = 0;
|
2011-12-12 17:00:14 +00:00
|
|
|
for(i=0;i<60;i++){
|
2011-12-11 17:42:40 +00:00
|
|
|
len= nrf_rcv_pkt_time(30, sizeof(p), (uint8_t*)&p);
|
|
|
|
if (len==sizeof(p)){
|
2011-12-12 17:00:14 +00:00
|
|
|
if( a ) a = 0; else a = 1;
|
|
|
|
gpioSetValue (RB_LED2, a);
|
2011-12-11 17:42:40 +00:00
|
|
|
processPacket(&p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
selected = 0;
|
|
|
|
while(1){
|
|
|
|
showGames(selected);
|
|
|
|
int key=getInputWait();
|
|
|
|
getInputWaitRelease();
|
|
|
|
switch(key){
|
|
|
|
case BTN_DOWN:
|
|
|
|
if( selected < gamecount-1 ){
|
|
|
|
selected++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BTN_UP:
|
|
|
|
if( selected > 0 ){
|
|
|
|
selected--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BTN_LEFT:
|
|
|
|
return 0;
|
|
|
|
case BTN_ENTER:
|
|
|
|
case BTN_RIGHT:
|
|
|
|
if( gamecount == 0 )
|
|
|
|
return 0;
|
|
|
|
gameId = games[selected].gameId;
|
|
|
|
memcpy(config.txmac, games[selected].gameMac, 5);
|
|
|
|
memcpy(config.mac0, games[selected].gameMac, 5);
|
|
|
|
config.mac0[4]++;
|
|
|
|
config.channel = games[selected].gameChannel;
|
|
|
|
nrf_config_set(&config);
|
|
|
|
if( games[selected].gameFlags & FLAGS_MASS_GAME )
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return joinGame();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-16 02:04:31 +00:00
|
|
|
void processNickRequest( struct nickrequest *nq)
|
|
|
|
{
|
|
|
|
struct packet p;
|
|
|
|
p.len=sizeof(p);
|
|
|
|
p.protocol='G'; // Proto
|
|
|
|
p.command='n';
|
|
|
|
p.id= id;
|
|
|
|
p.ctr= ++ctr;
|
|
|
|
p.c.nick.flags = 0;
|
|
|
|
uint8_t *nick = GLOBAL(nickname);
|
|
|
|
strcpy(p.c.nick.nick, nick);
|
|
|
|
nrf_snd_pkt_crc(sizeof(p),(uint8_t*)&p);
|
|
|
|
}
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
void processPacket(struct packet *p)
|
|
|
|
{
|
2011-12-12 17:00:14 +00:00
|
|
|
if ((p->len==32) && (p->protocol=='G') && (p->id == id || p->id == 0) ){ //check sanity, protocol, id
|
2011-12-08 00:36:49 +00:00
|
|
|
if (p->command=='T'){
|
|
|
|
//processText(&(p->c.text));
|
|
|
|
}
|
|
|
|
else if (p->command=='N'){
|
2011-12-16 02:04:31 +00:00
|
|
|
processNickRequest(&(p->c.nickrequest));
|
2011-12-08 00:36:49 +00:00
|
|
|
}
|
2011-12-11 17:42:40 +00:00
|
|
|
else if (p->command=='A'){
|
|
|
|
processAnnounce(&(p->c.announce));
|
|
|
|
}
|
2011-12-08 00:36:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
void processAnnounce(struct announce *a)
|
|
|
|
{
|
|
|
|
if( gamecount < sizeof(games)/sizeof(games[0]) ){
|
2011-12-18 20:18:45 +00:00
|
|
|
int repeat=0;
|
|
|
|
int i;
|
|
|
|
for (i=0; i<gamecount; i++){
|
|
|
|
if (a->gameId == games[i].gameId){
|
|
|
|
repeat=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (repeat!=1){
|
|
|
|
games[gamecount] = *a;
|
|
|
|
gamecount++;
|
|
|
|
}
|
2011-12-11 17:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
//increment ctr and send button state, id and ctr
|
|
|
|
void sendButton(uint8_t button)
|
|
|
|
{
|
2011-12-11 17:42:40 +00:00
|
|
|
struct packet p;
|
|
|
|
p.len=sizeof(p);
|
|
|
|
p.protocol='G'; // Proto
|
|
|
|
p.command='B';
|
|
|
|
p.id= id;
|
|
|
|
p.ctr= ++ctr;
|
|
|
|
p.c.button.button=button;
|
2011-12-08 00:36:49 +00:00
|
|
|
|
|
|
|
//lcdClear();
|
|
|
|
//lcdPrint("Key:"); lcdPrintInt(buf[2]); lcdNl();
|
|
|
|
|
2011-12-11 17:42:40 +00:00
|
|
|
nrf_snd_pkt_crc(sizeof(p),(uint8_t*)&p);
|
2011-12-08 00:36:49 +00:00
|
|
|
}
|
|
|
|
|