2020-03-04 13:09:40 +00:00
|
|
|
int fence;
|
2020-03-22 13:03:34 +00:00
|
|
|
|
2020-02-29 15:40:55 +00:00
|
|
|
#include <AutoreleasePool.h>
|
2020-03-22 13:03:34 +00:00
|
|
|
#include <key.h>
|
2020-02-29 15:40:55 +00:00
|
|
|
|
2020-02-29 05:48:18 +00:00
|
|
|
#include "color.h"
|
2020-02-29 15:40:55 +00:00
|
|
|
#include "qwaq-app.h"
|
|
|
|
#include "qwaq-curses.h"
|
2020-03-19 02:32:44 +00:00
|
|
|
#include "qwaq-group.h"
|
2020-03-01 09:25:02 +00:00
|
|
|
#include "qwaq-view.h"
|
2020-02-29 15:40:55 +00:00
|
|
|
|
|
|
|
static AutoreleasePool *autorelease_pool;
|
|
|
|
static void
|
|
|
|
arp_start (void)
|
|
|
|
{
|
|
|
|
autorelease_pool = [[AutoreleasePool alloc] init];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arp_end (void)
|
|
|
|
{
|
|
|
|
[autorelease_pool release];
|
|
|
|
autorelease_pool = nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
@implementation QwaqApplication
|
|
|
|
+app
|
|
|
|
{
|
|
|
|
return [[[self alloc] init] autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
-init
|
|
|
|
{
|
|
|
|
if (!(self = [super init])) {
|
|
|
|
return nil;
|
|
|
|
}
|
2020-03-05 15:32:09 +00:00
|
|
|
|
2020-02-29 15:40:55 +00:00
|
|
|
initialize ();
|
|
|
|
init_pair (1, COLOR_WHITE, COLOR_BLUE);
|
|
|
|
init_pair (2, COLOR_WHITE, COLOR_BLACK);
|
2020-03-19 10:00:03 +00:00
|
|
|
init_pair (3, COLOR_BLACK, COLOR_GREEN);
|
2020-03-19 09:41:53 +00:00
|
|
|
init_pair (4, COLOR_YELLOW, COLOR_RED);
|
2020-03-05 15:32:09 +00:00
|
|
|
|
2020-03-19 09:41:53 +00:00
|
|
|
screen = [TextContext screen];
|
2020-03-23 11:14:32 +00:00
|
|
|
screenSize = [screen size];
|
2020-03-19 07:27:30 +00:00
|
|
|
objects = [[Group alloc] initWithContext: screen owner: nil];
|
2020-03-14 10:45:07 +00:00
|
|
|
|
|
|
|
[screen bkgd: COLOR_PAIR (1)];
|
2020-03-22 13:03:34 +00:00
|
|
|
[screen scrollok: 1];
|
2020-03-24 16:06:20 +00:00
|
|
|
[screen clear];
|
|
|
|
wrefresh (stdscr);//FIXME
|
2020-02-29 15:40:55 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2020-03-24 16:06:20 +00:00
|
|
|
-(Extent)size
|
2020-02-29 15:40:55 +00:00
|
|
|
{
|
2020-03-24 16:06:20 +00:00
|
|
|
return screenSize;
|
|
|
|
}
|
2020-02-27 12:01:09 +00:00
|
|
|
|
2020-03-24 16:06:20 +00:00
|
|
|
-(TextContext *)screen
|
|
|
|
{
|
|
|
|
return screen;
|
2020-02-29 15:40:55 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 17:43:01 +00:00
|
|
|
-draw
|
|
|
|
{
|
2020-03-14 10:45:07 +00:00
|
|
|
[objects draw];
|
2020-03-12 17:43:01 +00:00
|
|
|
[TextContext refresh];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2020-02-29 15:40:55 +00:00
|
|
|
-handleEvent: (qwaq_event_t *) event
|
|
|
|
{
|
2020-03-23 11:14:32 +00:00
|
|
|
if (event.what == qe_resize) {
|
|
|
|
Extent delta;
|
|
|
|
delta.width = event.resize.width - screenSize.width;
|
|
|
|
delta.height = event.resize.height - screenSize.height;
|
|
|
|
|
|
|
|
resizeterm (event.resize.width, event.resize.height);
|
|
|
|
[screen resizeTo: {event.resize.width, event.resize.height}];
|
|
|
|
screenSize = [screen size];
|
|
|
|
[objects resize: delta];
|
|
|
|
[screen refresh];
|
|
|
|
event.what = qe_none;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
if (event.what == qe_key
|
|
|
|
&& (event.key.code == '\x18' || event.key.code == '\x11')) {
|
2020-03-04 13:09:40 +00:00
|
|
|
event.what = qe_command;
|
2020-03-24 10:51:01 +00:00
|
|
|
event.message.int_val = qc_exit;
|
2020-02-29 15:40:55 +00:00
|
|
|
}
|
2020-03-04 13:09:40 +00:00
|
|
|
if (event.what == qe_command
|
2020-03-24 10:51:01 +00:00
|
|
|
&& (event.message.int_val == qc_exit
|
|
|
|
|| event.message.int_val == qc_error)) {
|
|
|
|
endState = event.message.int_val;;
|
2020-02-29 15:40:55 +00:00
|
|
|
}
|
2020-03-24 04:38:20 +00:00
|
|
|
[objects handleEvent: event];
|
2020-02-29 15:40:55 +00:00
|
|
|
return self;
|
|
|
|
}
|
2020-03-24 16:06:20 +00:00
|
|
|
|
|
|
|
-run
|
|
|
|
{
|
|
|
|
[objects takeFocus];
|
|
|
|
[self draw];
|
|
|
|
do {
|
|
|
|
arp_start ();
|
|
|
|
|
|
|
|
get_event (&event);
|
|
|
|
if (event.what != qe_none) {
|
|
|
|
[self handleEvent: &event];
|
|
|
|
}
|
|
|
|
|
|
|
|
arp_end ();
|
|
|
|
} while (!endState);
|
|
|
|
return self;
|
|
|
|
}
|
2020-02-29 15:40:55 +00:00
|
|
|
@end
|
|
|
|
|
2020-03-24 16:06:20 +00:00
|
|
|
QwaqApplication *application;
|
|
|
|
|
2020-02-29 15:40:55 +00:00
|
|
|
int main (int argc, string *argv)
|
|
|
|
{
|
2020-03-04 13:09:40 +00:00
|
|
|
fence = 0;
|
|
|
|
//while (!fence) {}
|
|
|
|
|
2020-03-24 16:06:20 +00:00
|
|
|
application = [[QwaqApplication app] retain];
|
2020-02-29 15:40:55 +00:00
|
|
|
|
2020-03-24 16:06:20 +00:00
|
|
|
[application run];
|
|
|
|
[application release];
|
2020-02-29 15:40:55 +00:00
|
|
|
qwaq_event_t event;
|
|
|
|
get_event (&event); // XXX need a "wait for queue idle"
|
|
|
|
return 0;
|
|
|
|
}
|