syndilights/frameserver/defines.h

43 lines
870 B
C
Raw Normal View History

#ifndef __DEFINES_H_
#define __DEFINES_H_
2010-11-15 12:44:10 +01:00
#define HASH "abcdefghij"
// four minutes should be enough (seconds)
// timeout set to two seconds for testing purposes
#define BUFTIMEOUT 2
#define NUMBUFS 1000
2010-11-15 12:44:10 +01:00
#define REMOTE_IP "127.0.0.1"
#define REMOTE_PORT 1234
// one byte number + 10 character hash
#define HEADEROFFSET 11
2010-11-15 12:44:10 +01:00
// 12 windows per floor, 7 floors, Value:Alpha
#define WIDTH 12
#define HEIGHT 7
2010-11-15 12:44:10 +01:00
#define CHANNELS 2
#define WINDOWOFFSET (WIDTH*CHANNELS+1)*HEIGHT
// 8 segments per window, 12 segments per floor, RGBA
#define SEGNUM 8
#define SEGWIDTH 12
2010-11-15 12:44:10 +01:00
#define SEGCHANNELS 4
#define BUFLEN HEADEROFFSET+WINDOWOFFSET+ (SEGNUM*SEGCHANNELS+1)*SEGWIDTH
// not used for simplicity
//#define SEGHEIGHT 1
struct frame_t
{
unsigned char z;
unsigned char windows[HEIGHT][WIDTH][CHANNELS];
unsigned char segments[SEGWIDTH][SEGNUM][SEGCHANNELS];
};
2010-11-12 16:43:27 +01:00
#endif