Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199610.adf » Regulars » WimpC/!RAPS/c/!RunImage

WimpC/!RAPS/c/!RunImage

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199610.adf » Regulars
Filename: WimpC/!RAPS/c/!RunImage
Read OK:
File size: 26B9 bytes
Load address: 0000
Exec address: 0000
File contents
/* RAPS - a parachute jump database program
 * To demonstrate the Acorn User Wimp C library
 * by Steve Mumford for Acorn User, September 1996 */

/* #includes */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "AULib.h"

/* #defines */

#define POLL_MASK 1
#define MAX_WINDOWS 2
#define MAX_MENUS 1
#define MAX_JUMPS 15
#define VERSION_NUMBER 310 /* Risc OS version no. * 100 */

/* These #defines relate to the icon numbers in the template file */

#define CURRENT_RECORD_ICON 2
#define LAST_RECORD_ICON 4
#define PREV_RECORD_ICON 5
#define NEXT_RECORD_ICON 6
#define DATE_ICON 7
#define AIRCRAFT_ICON 9
#define DROPZONE_ICON 11
#define ALTITUDE_ICON 13
#define DELAY_ICON 15
#define AIRWORK_ICON 17
#define REMARKS1_ICON 19
#define REMARKS2_ICON 21
#define UPDATE_ICON 22

/* These next #defines set up the menu selection choices */

/* iconbar menu */
#define INFO_OPTION 0
#define QUIT_OPTION 1

typedef struct jump_data {
	int jump_no;
	char date[11];
	char aircraft[31];
	char dropzone[51];
	int altitude;
	int delay;
	char airwork[13];
	char remarks1[51];
	char remarks2[61];
	struct jump_data *prev_record;
	struct jump_data *next_record;
} jump_data;

/* Global variables */

int	QUIT_FLAG = 0;
int	CURRENT_MENU = 0;
int	CURRENT_RECORD_NUMBER = 1;
int	LAST_RECORD_NUMBER = 1;
jump_data	*CURRENT_RECORD_POINTER = NULL;

window_data	win_data[MAX_WINDOWS];
menu_data	men_data[MAX_MENUS];
jump_data	*jmp_data_root;
char appname[] = "RAPS Jump Logger";
char sprname[] = "!raps";
long int msglist[] = {0};

/* Function prototyping */

int	main(void);
void	openwindow(unsigned char[]);
void	closewindow(unsigned char[]);
void	loadtemplates(void);
void	mouse_click(unsigned char[]);
void	wimp_msg(int, unsigned char[]);
void	open_main_window(void);
void	prev_record(void);
void	next_record(void);
void	update_window_info(void);
void	menu_selection(unsigned char[]);
void	setup_database(void);
void	update_record(void);
void	add_record(void);

/* Main program */

int
main()
{
	int	task_handle, icon_handle;

	unsigned char	poll_block[256];
	int	poll_result;
	int	i = 0;

	setup_database();
	task_handle = au_initialise(VERSION_NUMBER, appname, msglist);
	icon_handle = au_create_iconbar_icon(IBAR_PRIOR_APP,
			IBAR_ONRIGHT,
			ICON_ISSPRITE | ICON_HCENTRE | ICON_VCENTRE | ICON_CLICKNOTIFIESONCE,
			sprname);
	loadtemplates();
	/*au_openwin_from_templatedata(&win_data[0], -1); */
	while (QUIT_FLAG == 0) {
	/* do some polling */
		poll_result = au_wimp_poll(POLL_MASK, poll_block);
		switch (poll_result) {
			case  2 : openwindow(poll_block);
						break;
			case  3 : closewindow(poll_block);
						break;
			case  6 : mouse_click(poll_block);
						break;
			case  9 : menu_selection(poll_block);
						break;
			case 17 :
			case 18 :
			case 19 : wimp_msg(poll_result, poll_block);
						break;
		}
	}
	au_closedown(task_handle);

	for(i = 0; i < MAX_WINDOWS; i++) {
		free(win_data[i].win_name);
		free(win_data[i].buffer);
		free(win_data[i].workspace);
	}

	/* #Remember to free menu space! (recursion?) */
}

void mouse_click(unsigned char poll_block[])
{
	int	clk;
	long int	icon_num;

	/* Determine which button was pressed */
	clk = (int) au_bytetoword(poll_block, 8); 

	if((au_bytetoword(poll_block, 12) == -2) && (clk == 4)) {
	open_main_window();
	}

	if((au_bytetoword(poll_block, 12) == -2) && (clk == 2)) {
		/* Time to produce a menu */
		au_buildmenu("RAPS", &men_data[0]);
		au_addtomenu("Info", 0, win_data[1].win_handle, 0, &men_data[0]);
		au_addtomenu("Quit", MENU_LASTITEM, -1, 0, &men_data[0]);
		au_createmenu(&men_data[0]);
		CURRENT_MENU = 1; /* keep track of the last menu we opened */
		au_openmenu(&men_data[0], (int) au_bytetoword(poll_block, 0) - 64, (44*2)+96);
		return;
	}

	/* Check to see if it was in the main window */
	if((au_bytetoword(poll_block, 12) == win_data[0].win_handle) && (clk == 4)) {
		icon_num = au_bytetoword(poll_block, 16);
		switch (icon_num) {
			case PREV_RECORD_ICON : prev_record();
				break;
			case NEXT_RECORD_ICON : next_record();
				break;
			case UPDATE_ICON : update_record();
				break;
		}
	}

	return;
}

void menu_selection(unsigned char poll_block[])
{
	long int	first_hit;
	/* Which menu was hit? */
	if (CURRENT_MENU == 1) {
		/* The icon bar menu got it - decipher first menu subselection */
		first_hit = au_bytetoword(poll_block, 0);
		if (first_hit == QUIT_OPTION) {
			QUIT_FLAG = 1;
		}
	}
	return;
}

void prev_record(void)
{
	if (CURRENT_RECORD_POINTER->prev_record != NULL) {
		/* Save window information? */
		CURRENT_RECORD_POINTER = CURRENT_RECORD_POINTER->prev_record;
		CURRENT_RECORD_NUMBER = CURRENT_RECORD_POINTER->jump_no;
		/* would update window info here */
		update_window_info();
	}
}

void next_record(void)
{
	if (CURRENT_RECORD_POINTER->next_record != NULL) {
		CURRENT_RECORD_POINTER = CURRENT_RECORD_POINTER->next_record;
		CURRENT_RECORD_NUMBER = CURRENT_RECORD_POINTER->jump_no;
		/* would update window info here */
		update_window_info();
	}
}

void update_record(void)
{
	/* We need a temporary string buffer */
	char temp_buf[255];

	/* Save window information */
	au_icon_get_text(CURRENT_RECORD_POINTER->date, win_data[0].win_handle, DATE_ICON);
	au_icon_get_text(CURRENT_RECORD_POINTER->aircraft, win_data[0].win_handle, AIRCRAFT_ICON);
	au_icon_get_text(CURRENT_RECORD_POINTER->dropzone, win_data[0].win_handle, DROPZONE_ICON);
	au_icon_get_text(CURRENT_RECORD_POINTER->airwork, win_data[0].win_handle, AIRWORK_ICON);
	au_icon_get_text(CURRENT_RECORD_POINTER->remarks1, win_data[0].win_handle, REMARKS1_ICON);
	au_icon_get_text(CURRENT_RECORD_POINTER->remarks2, win_data[0].win_handle, REMARKS2_ICON);
	/* We need to convert text to integer here */
	au_icon_get_text(temp_buf, win_data[0].win_handle, ALTITUDE_ICON);
	CURRENT_RECORD_POINTER->altitude = atoi(temp_buf);

	/* And here */
	au_icon_get_text(temp_buf, win_data[0].win_handle, DELAY_ICON);
	CURRENT_RECORD_POINTER->delay = atoi(temp_buf);
	/* Record is now saved in memory */

	/* Are we on the last record? If so, we add a new one */
	if (CURRENT_RECORD_POINTER->next_record == NULL) {
		add_record();
	}
}

void add_record(void)
{
	jump_data	*new_record;

	/*Information from window already saved */

	new_record = calloc(1, sizeof(jump_data));
	/* Initialise pointers */
	new_record->prev_record = CURRENT_RECORD_POINTER;
	new_record->next_record = NULL;
	LAST_RECORD_NUMBER = new_record->jump_no = CURRENT_RECORD_POINTER->jump_no + 1;
	CURRENT_RECORD_POINTER->next_record = new_record;

	/* Switch view to the new record */
	CURRENT_RECORD_POINTER = new_record;
	CURRENT_RECORD_NUMBER = CURRENT_RECORD_POINTER->jump_no;

	/* Update the window to display the new information */
	update_window_info();
}

void update_window_info(void)
{
	char	temp_string[255];

	au_losecaret();
	if (CURRENT_RECORD_POINTER->next_record == NULL) {
		au_icon_text_change("Add", win_data[0].win_handle, UPDATE_ICON);
	} else {
		au_icon_text_change("Update", win_data[0].win_handle, UPDATE_ICON);
	}
	sprintf(temp_string, "%d", CURRENT_RECORD_POINTER->jump_no);
	au_icon_text_change(temp_string, win_data[0].win_handle, CURRENT_RECORD_ICON);
	sprintf(temp_string, "%d", LAST_RECORD_NUMBER);
	au_icon_text_change(temp_string, win_data[0].win_handle, LAST_RECORD_ICON);

	au_icon_text_change(CURRENT_RECORD_POINTER->date , win_data[0].win_handle, DATE_ICON);
	au_icon_text_change(CURRENT_RECORD_POINTER->aircraft , win_data[0].win_handle, AIRCRAFT_ICON);
	au_icon_text_change(CURRENT_RECORD_POINTER->dropzone , win_data[0].win_handle, DROPZONE_ICON);
	au_icon_text_change(CURRENT_RECORD_POINTER->airwork , win_data[0].win_handle, AIRWORK_ICON);
	au_icon_text_change(CURRENT_RECORD_POINTER->remarks1 , win_data[0].win_handle, REMARKS1_ICON);
	au_icon_text_change(CURRENT_RECORD_POINTER->remarks2 , win_data[0].win_handle, REMARKS2_ICON);

	sprintf(temp_string, "%d", CURRENT_RECORD_POINTER->altitude);
	au_icon_text_change(temp_string, win_data[0].win_handle, ALTITUDE_ICON);
	sprintf(temp_string, "%d", CURRENT_RECORD_POINTER->delay);
	au_icon_text_change(temp_string, win_data[0].win_handle, DELAY_ICON);
	return;
}

void open_main_window(void)
{
	_kernel_swi_regs	in, out;
	unsigned char	temp_buffer[1024];

/* We need to update the current and last record numbers in the window
 * before opening */

	update_window_info();

/* Now open the window */

	au_wordtobyte(win_data[0].win_handle, temp_buffer, 0);
	in.r[1] = (int) temp_buffer;
	_kernel_swi(Wimp_GetWindowInfo, &in, &out);
	_kernel_swi(Wimp_OpenWindow, &in, &out);
	return;
}

void wimp_msg(int result, unsigned char pollblock[])
{
	unsigned long int   message_action;
	
	/* The next line takes bytes 16 to 19 of the polling block and forms them
	   into a word holding the message action number */
	message_action = au_bytetoword(pollblock, 16);

	switch (message_action) {
		case 0 : QUIT_FLAG = 1; /* Message_Quit - time to go */
				break;
	}
	return;
}


void openwindow(unsigned char pollblock[])
{
   _kernel_swi_regs in, out;

   in.r[1] = (int) pollblock;
   _kernel_swi(Wimp_OpenWindow, &in, &out);
   return;
}

void closewindow(unsigned char pollblock[])
{
   _kernel_swi_regs in, out;

   in.r[1] = (int) pollblock;
   _kernel_swi(Wimp_CloseWindow, &in, &out);
   return;
}

void loadtemplates(void)
{
	au_opentemplate("<RAPS$Dir>.Templates");
	if(au_loadtemplate("MainWindow", &win_data[0], 0) == 0) {
		au_report_error(1, "Template not found!", 1, appname);
		QUIT_FLAG = 1;
	}
	if(au_loadtemplate("ProgInfo", &win_data[1], 0) == 0) {
		au_report_error(1, "Template not found!", 1, appname);
		QUIT_FLAG = 1;
	}
	au_closetemplate();
}

void setup_database(void)
{

	/* Initially, we need to set aside memory for the 'root' structure */

	jmp_data_root = calloc(1, sizeof(jump_data));
	/* Initialise pointers */
	jmp_data_root->prev_record = jmp_data_root->next_record = NULL;
	jmp_data_root->jump_no = 1;
	CURRENT_RECORD_POINTER = jmp_data_root;
}
00000000  2f 2a 20 52 41 50 53 20  2d 20 61 20 70 61 72 61  |/* RAPS - a para|
00000010  63 68 75 74 65 20 6a 75  6d 70 20 64 61 74 61 62  |chute jump datab|
00000020  61 73 65 20 70 72 6f 67  72 61 6d 0a 20 2a 20 54  |ase program. * T|
00000030  6f 20 64 65 6d 6f 6e 73  74 72 61 74 65 20 74 68  |o demonstrate th|
00000040  65 20 41 63 6f 72 6e 20  55 73 65 72 20 57 69 6d  |e Acorn User Wim|
00000050  70 20 43 20 6c 69 62 72  61 72 79 0a 20 2a 20 62  |p C library. * b|
00000060  79 20 53 74 65 76 65 20  4d 75 6d 66 6f 72 64 20  |y Steve Mumford |
00000070  66 6f 72 20 41 63 6f 72  6e 20 55 73 65 72 2c 20  |for Acorn User, |
00000080  53 65 70 74 65 6d 62 65  72 20 31 39 39 36 20 2a  |September 1996 *|
00000090  2f 0a 0a 2f 2a 20 23 69  6e 63 6c 75 64 65 73 20  |/../* #includes |
000000a0  2a 2f 0a 0a 23 69 6e 63  6c 75 64 65 20 3c 73 74  |*/..#include <st|
000000b0  64 69 6f 2e 68 3e 0a 23  69 6e 63 6c 75 64 65 20  |dio.h>.#include |
000000c0  3c 73 74 64 6c 69 62 2e  68 3e 0a 23 69 6e 63 6c  |<stdlib.h>.#incl|
000000d0  75 64 65 20 3c 73 74 72  69 6e 67 2e 68 3e 0a 23  |ude <string.h>.#|
000000e0  69 6e 63 6c 75 64 65 20  22 41 55 4c 69 62 2e 68  |include "AULib.h|
000000f0  22 0a 0a 2f 2a 20 23 64  65 66 69 6e 65 73 20 2a  |"../* #defines *|
00000100  2f 0a 0a 23 64 65 66 69  6e 65 20 50 4f 4c 4c 5f  |/..#define POLL_|
00000110  4d 41 53 4b 20 31 0a 23  64 65 66 69 6e 65 20 4d  |MASK 1.#define M|
00000120  41 58 5f 57 49 4e 44 4f  57 53 20 32 0a 23 64 65  |AX_WINDOWS 2.#de|
00000130  66 69 6e 65 20 4d 41 58  5f 4d 45 4e 55 53 20 31  |fine MAX_MENUS 1|
00000140  0a 23 64 65 66 69 6e 65  20 4d 41 58 5f 4a 55 4d  |.#define MAX_JUM|
00000150  50 53 20 31 35 0a 23 64  65 66 69 6e 65 20 56 45  |PS 15.#define VE|
00000160  52 53 49 4f 4e 5f 4e 55  4d 42 45 52 20 33 31 30  |RSION_NUMBER 310|
00000170  20 2f 2a 20 52 69 73 63  20 4f 53 20 76 65 72 73  | /* Risc OS vers|
00000180  69 6f 6e 20 6e 6f 2e 20  2a 20 31 30 30 20 2a 2f  |ion no. * 100 */|
00000190  0a 0a 2f 2a 20 54 68 65  73 65 20 23 64 65 66 69  |../* These #defi|
000001a0  6e 65 73 20 72 65 6c 61  74 65 20 74 6f 20 74 68  |nes relate to th|
000001b0  65 20 69 63 6f 6e 20 6e  75 6d 62 65 72 73 20 69  |e icon numbers i|
000001c0  6e 20 74 68 65 20 74 65  6d 70 6c 61 74 65 20 66  |n the template f|
000001d0  69 6c 65 20 2a 2f 0a 0a  23 64 65 66 69 6e 65 20  |ile */..#define |
000001e0  43 55 52 52 45 4e 54 5f  52 45 43 4f 52 44 5f 49  |CURRENT_RECORD_I|
000001f0  43 4f 4e 20 32 0a 23 64  65 66 69 6e 65 20 4c 41  |CON 2.#define LA|
00000200  53 54 5f 52 45 43 4f 52  44 5f 49 43 4f 4e 20 34  |ST_RECORD_ICON 4|
00000210  0a 23 64 65 66 69 6e 65  20 50 52 45 56 5f 52 45  |.#define PREV_RE|
00000220  43 4f 52 44 5f 49 43 4f  4e 20 35 0a 23 64 65 66  |CORD_ICON 5.#def|
00000230  69 6e 65 20 4e 45 58 54  5f 52 45 43 4f 52 44 5f  |ine NEXT_RECORD_|
00000240  49 43 4f 4e 20 36 0a 23  64 65 66 69 6e 65 20 44  |ICON 6.#define D|
00000250  41 54 45 5f 49 43 4f 4e  20 37 0a 23 64 65 66 69  |ATE_ICON 7.#defi|
00000260  6e 65 20 41 49 52 43 52  41 46 54 5f 49 43 4f 4e  |ne AIRCRAFT_ICON|
00000270  20 39 0a 23 64 65 66 69  6e 65 20 44 52 4f 50 5a  | 9.#define DROPZ|
00000280  4f 4e 45 5f 49 43 4f 4e  20 31 31 0a 23 64 65 66  |ONE_ICON 11.#def|
00000290  69 6e 65 20 41 4c 54 49  54 55 44 45 5f 49 43 4f  |ine ALTITUDE_ICO|
000002a0  4e 20 31 33 0a 23 64 65  66 69 6e 65 20 44 45 4c  |N 13.#define DEL|
000002b0  41 59 5f 49 43 4f 4e 20  31 35 0a 23 64 65 66 69  |AY_ICON 15.#defi|
000002c0  6e 65 20 41 49 52 57 4f  52 4b 5f 49 43 4f 4e 20  |ne AIRWORK_ICON |
000002d0  31 37 0a 23 64 65 66 69  6e 65 20 52 45 4d 41 52  |17.#define REMAR|
000002e0  4b 53 31 5f 49 43 4f 4e  20 31 39 0a 23 64 65 66  |KS1_ICON 19.#def|
000002f0  69 6e 65 20 52 45 4d 41  52 4b 53 32 5f 49 43 4f  |ine REMARKS2_ICO|
00000300  4e 20 32 31 0a 23 64 65  66 69 6e 65 20 55 50 44  |N 21.#define UPD|
00000310  41 54 45 5f 49 43 4f 4e  20 32 32 0a 0a 2f 2a 20  |ATE_ICON 22../* |
00000320  54 68 65 73 65 20 6e 65  78 74 20 23 64 65 66 69  |These next #defi|
00000330  6e 65 73 20 73 65 74 20  75 70 20 74 68 65 20 6d  |nes set up the m|
00000340  65 6e 75 20 73 65 6c 65  63 74 69 6f 6e 20 63 68  |enu selection ch|
00000350  6f 69 63 65 73 20 2a 2f  0a 0a 2f 2a 20 69 63 6f  |oices */../* ico|
00000360  6e 62 61 72 20 6d 65 6e  75 20 2a 2f 0a 23 64 65  |nbar menu */.#de|
00000370  66 69 6e 65 20 49 4e 46  4f 5f 4f 50 54 49 4f 4e  |fine INFO_OPTION|
00000380  20 30 0a 23 64 65 66 69  6e 65 20 51 55 49 54 5f  | 0.#define QUIT_|
00000390  4f 50 54 49 4f 4e 20 31  0a 0a 74 79 70 65 64 65  |OPTION 1..typede|
000003a0  66 20 73 74 72 75 63 74  20 6a 75 6d 70 5f 64 61  |f struct jump_da|
000003b0  74 61 20 7b 0a 09 69 6e  74 20 6a 75 6d 70 5f 6e  |ta {..int jump_n|
000003c0  6f 3b 0a 09 63 68 61 72  20 64 61 74 65 5b 31 31  |o;..char date[11|
000003d0  5d 3b 0a 09 63 68 61 72  20 61 69 72 63 72 61 66  |];..char aircraf|
000003e0  74 5b 33 31 5d 3b 0a 09  63 68 61 72 20 64 72 6f  |t[31];..char dro|
000003f0  70 7a 6f 6e 65 5b 35 31  5d 3b 0a 09 69 6e 74 20  |pzone[51];..int |
00000400  61 6c 74 69 74 75 64 65  3b 0a 09 69 6e 74 20 64  |altitude;..int d|
00000410  65 6c 61 79 3b 0a 09 63  68 61 72 20 61 69 72 77  |elay;..char airw|
00000420  6f 72 6b 5b 31 33 5d 3b  0a 09 63 68 61 72 20 72  |ork[13];..char r|
00000430  65 6d 61 72 6b 73 31 5b  35 31 5d 3b 0a 09 63 68  |emarks1[51];..ch|
00000440  61 72 20 72 65 6d 61 72  6b 73 32 5b 36 31 5d 3b  |ar remarks2[61];|
00000450  0a 09 73 74 72 75 63 74  20 6a 75 6d 70 5f 64 61  |..struct jump_da|
00000460  74 61 20 2a 70 72 65 76  5f 72 65 63 6f 72 64 3b  |ta *prev_record;|
00000470  0a 09 73 74 72 75 63 74  20 6a 75 6d 70 5f 64 61  |..struct jump_da|
00000480  74 61 20 2a 6e 65 78 74  5f 72 65 63 6f 72 64 3b  |ta *next_record;|
00000490  0a 7d 20 6a 75 6d 70 5f  64 61 74 61 3b 0a 0a 2f  |.} jump_data;../|
000004a0  2a 20 47 6c 6f 62 61 6c  20 76 61 72 69 61 62 6c  |* Global variabl|
000004b0  65 73 20 2a 2f 0a 0a 69  6e 74 09 51 55 49 54 5f  |es */..int.QUIT_|
000004c0  46 4c 41 47 20 3d 20 30  3b 0a 69 6e 74 09 43 55  |FLAG = 0;.int.CU|
000004d0  52 52 45 4e 54 5f 4d 45  4e 55 20 3d 20 30 3b 0a  |RRENT_MENU = 0;.|
000004e0  69 6e 74 09 43 55 52 52  45 4e 54 5f 52 45 43 4f  |int.CURRENT_RECO|
000004f0  52 44 5f 4e 55 4d 42 45  52 20 3d 20 31 3b 0a 69  |RD_NUMBER = 1;.i|
00000500  6e 74 09 4c 41 53 54 5f  52 45 43 4f 52 44 5f 4e  |nt.LAST_RECORD_N|
00000510  55 4d 42 45 52 20 3d 20  31 3b 0a 6a 75 6d 70 5f  |UMBER = 1;.jump_|
00000520  64 61 74 61 09 2a 43 55  52 52 45 4e 54 5f 52 45  |data.*CURRENT_RE|
00000530  43 4f 52 44 5f 50 4f 49  4e 54 45 52 20 3d 20 4e  |CORD_POINTER = N|
00000540  55 4c 4c 3b 0a 0a 77 69  6e 64 6f 77 5f 64 61 74  |ULL;..window_dat|
00000550  61 09 77 69 6e 5f 64 61  74 61 5b 4d 41 58 5f 57  |a.win_data[MAX_W|
00000560  49 4e 44 4f 57 53 5d 3b  0a 6d 65 6e 75 5f 64 61  |INDOWS];.menu_da|
00000570  74 61 09 6d 65 6e 5f 64  61 74 61 5b 4d 41 58 5f  |ta.men_data[MAX_|
00000580  4d 45 4e 55 53 5d 3b 0a  6a 75 6d 70 5f 64 61 74  |MENUS];.jump_dat|
00000590  61 09 2a 6a 6d 70 5f 64  61 74 61 5f 72 6f 6f 74  |a.*jmp_data_root|
000005a0  3b 0a 63 68 61 72 20 61  70 70 6e 61 6d 65 5b 5d  |;.char appname[]|
000005b0  20 3d 20 22 52 41 50 53  20 4a 75 6d 70 20 4c 6f  | = "RAPS Jump Lo|
000005c0  67 67 65 72 22 3b 0a 63  68 61 72 20 73 70 72 6e  |gger";.char sprn|
000005d0  61 6d 65 5b 5d 20 3d 20  22 21 72 61 70 73 22 3b  |ame[] = "!raps";|
000005e0  0a 6c 6f 6e 67 20 69 6e  74 20 6d 73 67 6c 69 73  |.long int msglis|
000005f0  74 5b 5d 20 3d 20 7b 30  7d 3b 0a 0a 2f 2a 20 46  |t[] = {0};../* F|
00000600  75 6e 63 74 69 6f 6e 20  70 72 6f 74 6f 74 79 70  |unction prototyp|
00000610  69 6e 67 20 2a 2f 0a 0a  69 6e 74 09 6d 61 69 6e  |ing */..int.main|
00000620  28 76 6f 69 64 29 3b 0a  76 6f 69 64 09 6f 70 65  |(void);.void.ope|
00000630  6e 77 69 6e 64 6f 77 28  75 6e 73 69 67 6e 65 64  |nwindow(unsigned|
00000640  20 63 68 61 72 5b 5d 29  3b 0a 76 6f 69 64 09 63  | char[]);.void.c|
00000650  6c 6f 73 65 77 69 6e 64  6f 77 28 75 6e 73 69 67  |losewindow(unsig|
00000660  6e 65 64 20 63 68 61 72  5b 5d 29 3b 0a 76 6f 69  |ned char[]);.voi|
00000670  64 09 6c 6f 61 64 74 65  6d 70 6c 61 74 65 73 28  |d.loadtemplates(|
00000680  76 6f 69 64 29 3b 0a 76  6f 69 64 09 6d 6f 75 73  |void);.void.mous|
00000690  65 5f 63 6c 69 63 6b 28  75 6e 73 69 67 6e 65 64  |e_click(unsigned|
000006a0  20 63 68 61 72 5b 5d 29  3b 0a 76 6f 69 64 09 77  | char[]);.void.w|
000006b0  69 6d 70 5f 6d 73 67 28  69 6e 74 2c 20 75 6e 73  |imp_msg(int, uns|
000006c0  69 67 6e 65 64 20 63 68  61 72 5b 5d 29 3b 0a 76  |igned char[]);.v|
000006d0  6f 69 64 09 6f 70 65 6e  5f 6d 61 69 6e 5f 77 69  |oid.open_main_wi|
000006e0  6e 64 6f 77 28 76 6f 69  64 29 3b 0a 76 6f 69 64  |ndow(void);.void|
000006f0  09 70 72 65 76 5f 72 65  63 6f 72 64 28 76 6f 69  |.prev_record(voi|
00000700  64 29 3b 0a 76 6f 69 64  09 6e 65 78 74 5f 72 65  |d);.void.next_re|
00000710  63 6f 72 64 28 76 6f 69  64 29 3b 0a 76 6f 69 64  |cord(void);.void|
00000720  09 75 70 64 61 74 65 5f  77 69 6e 64 6f 77 5f 69  |.update_window_i|
00000730  6e 66 6f 28 76 6f 69 64  29 3b 0a 76 6f 69 64 09  |nfo(void);.void.|
00000740  6d 65 6e 75 5f 73 65 6c  65 63 74 69 6f 6e 28 75  |menu_selection(u|
00000750  6e 73 69 67 6e 65 64 20  63 68 61 72 5b 5d 29 3b  |nsigned char[]);|
00000760  0a 76 6f 69 64 09 73 65  74 75 70 5f 64 61 74 61  |.void.setup_data|
00000770  62 61 73 65 28 76 6f 69  64 29 3b 0a 76 6f 69 64  |base(void);.void|
00000780  09 75 70 64 61 74 65 5f  72 65 63 6f 72 64 28 76  |.update_record(v|
00000790  6f 69 64 29 3b 0a 76 6f  69 64 09 61 64 64 5f 72  |oid);.void.add_r|
000007a0  65 63 6f 72 64 28 76 6f  69 64 29 3b 0a 0a 2f 2a  |ecord(void);../*|
000007b0  20 4d 61 69 6e 20 70 72  6f 67 72 61 6d 20 2a 2f  | Main program */|
000007c0  0a 0a 69 6e 74 0a 6d 61  69 6e 28 29 0a 7b 0a 09  |..int.main().{..|
000007d0  69 6e 74 09 74 61 73 6b  5f 68 61 6e 64 6c 65 2c  |int.task_handle,|
000007e0  20 69 63 6f 6e 5f 68 61  6e 64 6c 65 3b 0a 0a 09  | icon_handle;...|
000007f0  75 6e 73 69 67 6e 65 64  20 63 68 61 72 09 70 6f  |unsigned char.po|
00000800  6c 6c 5f 62 6c 6f 63 6b  5b 32 35 36 5d 3b 0a 09  |ll_block[256];..|
00000810  69 6e 74 09 70 6f 6c 6c  5f 72 65 73 75 6c 74 3b  |int.poll_result;|
00000820  0a 09 69 6e 74 09 69 20  3d 20 30 3b 0a 0a 09 73  |..int.i = 0;...s|
00000830  65 74 75 70 5f 64 61 74  61 62 61 73 65 28 29 3b  |etup_database();|
00000840  0a 09 74 61 73 6b 5f 68  61 6e 64 6c 65 20 3d 20  |..task_handle = |
00000850  61 75 5f 69 6e 69 74 69  61 6c 69 73 65 28 56 45  |au_initialise(VE|
00000860  52 53 49 4f 4e 5f 4e 55  4d 42 45 52 2c 20 61 70  |RSION_NUMBER, ap|
00000870  70 6e 61 6d 65 2c 20 6d  73 67 6c 69 73 74 29 3b  |pname, msglist);|
00000880  0a 09 69 63 6f 6e 5f 68  61 6e 64 6c 65 20 3d 20  |..icon_handle = |
00000890  61 75 5f 63 72 65 61 74  65 5f 69 63 6f 6e 62 61  |au_create_iconba|
000008a0  72 5f 69 63 6f 6e 28 49  42 41 52 5f 50 52 49 4f  |r_icon(IBAR_PRIO|
000008b0  52 5f 41 50 50 2c 0a 09  09 09 49 42 41 52 5f 4f  |R_APP,....IBAR_O|
000008c0  4e 52 49 47 48 54 2c 0a  09 09 09 49 43 4f 4e 5f  |NRIGHT,....ICON_|
000008d0  49 53 53 50 52 49 54 45  20 7c 20 49 43 4f 4e 5f  |ISSPRITE | ICON_|
000008e0  48 43 45 4e 54 52 45 20  7c 20 49 43 4f 4e 5f 56  |HCENTRE | ICON_V|
000008f0  43 45 4e 54 52 45 20 7c  20 49 43 4f 4e 5f 43 4c  |CENTRE | ICON_CL|
00000900  49 43 4b 4e 4f 54 49 46  49 45 53 4f 4e 43 45 2c  |ICKNOTIFIESONCE,|
00000910  0a 09 09 09 73 70 72 6e  61 6d 65 29 3b 0a 09 6c  |....sprname);..l|
00000920  6f 61 64 74 65 6d 70 6c  61 74 65 73 28 29 3b 0a  |oadtemplates();.|
00000930  09 2f 2a 61 75 5f 6f 70  65 6e 77 69 6e 5f 66 72  |./*au_openwin_fr|
00000940  6f 6d 5f 74 65 6d 70 6c  61 74 65 64 61 74 61 28  |om_templatedata(|
00000950  26 77 69 6e 5f 64 61 74  61 5b 30 5d 2c 20 2d 31  |&win_data[0], -1|
00000960  29 3b 20 2a 2f 0a 09 77  68 69 6c 65 20 28 51 55  |); */..while (QU|
00000970  49 54 5f 46 4c 41 47 20  3d 3d 20 30 29 20 7b 0a  |IT_FLAG == 0) {.|
00000980  09 2f 2a 20 64 6f 20 73  6f 6d 65 20 70 6f 6c 6c  |./* do some poll|
00000990  69 6e 67 20 2a 2f 0a 09  09 70 6f 6c 6c 5f 72 65  |ing */...poll_re|
000009a0  73 75 6c 74 20 3d 20 61  75 5f 77 69 6d 70 5f 70  |sult = au_wimp_p|
000009b0  6f 6c 6c 28 50 4f 4c 4c  5f 4d 41 53 4b 2c 20 70  |oll(POLL_MASK, p|
000009c0  6f 6c 6c 5f 62 6c 6f 63  6b 29 3b 0a 09 09 73 77  |oll_block);...sw|
000009d0  69 74 63 68 20 28 70 6f  6c 6c 5f 72 65 73 75 6c  |itch (poll_resul|
000009e0  74 29 20 7b 0a 09 09 09  63 61 73 65 20 20 32 20  |t) {....case  2 |
000009f0  3a 20 6f 70 65 6e 77 69  6e 64 6f 77 28 70 6f 6c  |: openwindow(pol|
00000a00  6c 5f 62 6c 6f 63 6b 29  3b 0a 09 09 09 09 09 09  |l_block);.......|
00000a10  62 72 65 61 6b 3b 0a 09  09 09 63 61 73 65 20 20  |break;....case  |
00000a20  33 20 3a 20 63 6c 6f 73  65 77 69 6e 64 6f 77 28  |3 : closewindow(|
00000a30  70 6f 6c 6c 5f 62 6c 6f  63 6b 29 3b 0a 09 09 09  |poll_block);....|
00000a40  09 09 09 62 72 65 61 6b  3b 0a 09 09 09 63 61 73  |...break;....cas|
00000a50  65 20 20 36 20 3a 20 6d  6f 75 73 65 5f 63 6c 69  |e  6 : mouse_cli|
00000a60  63 6b 28 70 6f 6c 6c 5f  62 6c 6f 63 6b 29 3b 0a  |ck(poll_block);.|
00000a70  09 09 09 09 09 09 62 72  65 61 6b 3b 0a 09 09 09  |......break;....|
00000a80  63 61 73 65 20 20 39 20  3a 20 6d 65 6e 75 5f 73  |case  9 : menu_s|
00000a90  65 6c 65 63 74 69 6f 6e  28 70 6f 6c 6c 5f 62 6c  |election(poll_bl|
00000aa0  6f 63 6b 29 3b 0a 09 09  09 09 09 09 62 72 65 61  |ock);.......brea|
00000ab0  6b 3b 0a 09 09 09 63 61  73 65 20 31 37 20 3a 0a  |k;....case 17 :.|
00000ac0  09 09 09 63 61 73 65 20  31 38 20 3a 0a 09 09 09  |...case 18 :....|
00000ad0  63 61 73 65 20 31 39 20  3a 20 77 69 6d 70 5f 6d  |case 19 : wimp_m|
00000ae0  73 67 28 70 6f 6c 6c 5f  72 65 73 75 6c 74 2c 20  |sg(poll_result, |
00000af0  70 6f 6c 6c 5f 62 6c 6f  63 6b 29 3b 0a 09 09 09  |poll_block);....|
00000b00  09 09 09 62 72 65 61 6b  3b 0a 09 09 7d 0a 09 7d  |...break;...}..}|
00000b10  0a 09 61 75 5f 63 6c 6f  73 65 64 6f 77 6e 28 74  |..au_closedown(t|
00000b20  61 73 6b 5f 68 61 6e 64  6c 65 29 3b 0a 0a 09 66  |ask_handle);...f|
00000b30  6f 72 28 69 20 3d 20 30  3b 20 69 20 3c 20 4d 41  |or(i = 0; i < MA|
00000b40  58 5f 57 49 4e 44 4f 57  53 3b 20 69 2b 2b 29 20  |X_WINDOWS; i++) |
00000b50  7b 0a 09 09 66 72 65 65  28 77 69 6e 5f 64 61 74  |{...free(win_dat|
00000b60  61 5b 69 5d 2e 77 69 6e  5f 6e 61 6d 65 29 3b 0a  |a[i].win_name);.|
00000b70  09 09 66 72 65 65 28 77  69 6e 5f 64 61 74 61 5b  |..free(win_data[|
00000b80  69 5d 2e 62 75 66 66 65  72 29 3b 0a 09 09 66 72  |i].buffer);...fr|
00000b90  65 65 28 77 69 6e 5f 64  61 74 61 5b 69 5d 2e 77  |ee(win_data[i].w|
00000ba0  6f 72 6b 73 70 61 63 65  29 3b 0a 09 7d 0a 0a 09  |orkspace);..}...|
00000bb0  2f 2a 20 23 52 65 6d 65  6d 62 65 72 20 74 6f 20  |/* #Remember to |
00000bc0  66 72 65 65 20 6d 65 6e  75 20 73 70 61 63 65 21  |free menu space!|
00000bd0  20 28 72 65 63 75 72 73  69 6f 6e 3f 29 20 2a 2f  | (recursion?) */|
00000be0  0a 7d 0a 0a 76 6f 69 64  20 6d 6f 75 73 65 5f 63  |.}..void mouse_c|
00000bf0  6c 69 63 6b 28 75 6e 73  69 67 6e 65 64 20 63 68  |lick(unsigned ch|
00000c00  61 72 20 70 6f 6c 6c 5f  62 6c 6f 63 6b 5b 5d 29  |ar poll_block[])|
00000c10  0a 7b 0a 09 69 6e 74 09  63 6c 6b 3b 0a 09 6c 6f  |.{..int.clk;..lo|
00000c20  6e 67 20 69 6e 74 09 69  63 6f 6e 5f 6e 75 6d 3b  |ng int.icon_num;|
00000c30  0a 0a 09 2f 2a 20 44 65  74 65 72 6d 69 6e 65 20  |.../* Determine |
00000c40  77 68 69 63 68 20 62 75  74 74 6f 6e 20 77 61 73  |which button was|
00000c50  20 70 72 65 73 73 65 64  20 2a 2f 0a 09 63 6c 6b  | pressed */..clk|
00000c60  20 3d 20 28 69 6e 74 29  20 61 75 5f 62 79 74 65  | = (int) au_byte|
00000c70  74 6f 77 6f 72 64 28 70  6f 6c 6c 5f 62 6c 6f 63  |toword(poll_bloc|
00000c80  6b 2c 20 38 29 3b 20 0a  0a 09 69 66 28 28 61 75  |k, 8); ...if((au|
00000c90  5f 62 79 74 65 74 6f 77  6f 72 64 28 70 6f 6c 6c  |_bytetoword(poll|
00000ca0  5f 62 6c 6f 63 6b 2c 20  31 32 29 20 3d 3d 20 2d  |_block, 12) == -|
00000cb0  32 29 20 26 26 20 28 63  6c 6b 20 3d 3d 20 34 29  |2) && (clk == 4)|
00000cc0  29 20 7b 0a 09 6f 70 65  6e 5f 6d 61 69 6e 5f 77  |) {..open_main_w|
00000cd0  69 6e 64 6f 77 28 29 3b  0a 09 7d 0a 0a 09 69 66  |indow();..}...if|
00000ce0  28 28 61 75 5f 62 79 74  65 74 6f 77 6f 72 64 28  |((au_bytetoword(|
00000cf0  70 6f 6c 6c 5f 62 6c 6f  63 6b 2c 20 31 32 29 20  |poll_block, 12) |
00000d00  3d 3d 20 2d 32 29 20 26  26 20 28 63 6c 6b 20 3d  |== -2) && (clk =|
00000d10  3d 20 32 29 29 20 7b 0a  09 09 2f 2a 20 54 69 6d  |= 2)) {.../* Tim|
00000d20  65 20 74 6f 20 70 72 6f  64 75 63 65 20 61 20 6d  |e to produce a m|
00000d30  65 6e 75 20 2a 2f 0a 09  09 61 75 5f 62 75 69 6c  |enu */...au_buil|
00000d40  64 6d 65 6e 75 28 22 52  41 50 53 22 2c 20 26 6d  |dmenu("RAPS", &m|
00000d50  65 6e 5f 64 61 74 61 5b  30 5d 29 3b 0a 09 09 61  |en_data[0]);...a|
00000d60  75 5f 61 64 64 74 6f 6d  65 6e 75 28 22 49 6e 66  |u_addtomenu("Inf|
00000d70  6f 22 2c 20 30 2c 20 77  69 6e 5f 64 61 74 61 5b  |o", 0, win_data[|
00000d80  31 5d 2e 77 69 6e 5f 68  61 6e 64 6c 65 2c 20 30  |1].win_handle, 0|
00000d90  2c 20 26 6d 65 6e 5f 64  61 74 61 5b 30 5d 29 3b  |, &men_data[0]);|
00000da0  0a 09 09 61 75 5f 61 64  64 74 6f 6d 65 6e 75 28  |...au_addtomenu(|
00000db0  22 51 75 69 74 22 2c 20  4d 45 4e 55 5f 4c 41 53  |"Quit", MENU_LAS|
00000dc0  54 49 54 45 4d 2c 20 2d  31 2c 20 30 2c 20 26 6d  |TITEM, -1, 0, &m|
00000dd0  65 6e 5f 64 61 74 61 5b  30 5d 29 3b 0a 09 09 61  |en_data[0]);...a|
00000de0  75 5f 63 72 65 61 74 65  6d 65 6e 75 28 26 6d 65  |u_createmenu(&me|
00000df0  6e 5f 64 61 74 61 5b 30  5d 29 3b 0a 09 09 43 55  |n_data[0]);...CU|
00000e00  52 52 45 4e 54 5f 4d 45  4e 55 20 3d 20 31 3b 20  |RRENT_MENU = 1; |
00000e10  2f 2a 20 6b 65 65 70 20  74 72 61 63 6b 20 6f 66  |/* keep track of|
00000e20  20 74 68 65 20 6c 61 73  74 20 6d 65 6e 75 20 77  | the last menu w|
00000e30  65 20 6f 70 65 6e 65 64  20 2a 2f 0a 09 09 61 75  |e opened */...au|
00000e40  5f 6f 70 65 6e 6d 65 6e  75 28 26 6d 65 6e 5f 64  |_openmenu(&men_d|
00000e50  61 74 61 5b 30 5d 2c 20  28 69 6e 74 29 20 61 75  |ata[0], (int) au|
00000e60  5f 62 79 74 65 74 6f 77  6f 72 64 28 70 6f 6c 6c  |_bytetoword(poll|
00000e70  5f 62 6c 6f 63 6b 2c 20  30 29 20 2d 20 36 34 2c  |_block, 0) - 64,|
00000e80  20 28 34 34 2a 32 29 2b  39 36 29 3b 0a 09 09 72  | (44*2)+96);...r|
00000e90  65 74 75 72 6e 3b 0a 09  7d 0a 0a 09 2f 2a 20 43  |eturn;..}.../* C|
00000ea0  68 65 63 6b 20 74 6f 20  73 65 65 20 69 66 20 69  |heck to see if i|
00000eb0  74 20 77 61 73 20 69 6e  20 74 68 65 20 6d 61 69  |t was in the mai|
00000ec0  6e 20 77 69 6e 64 6f 77  20 2a 2f 0a 09 69 66 28  |n window */..if(|
00000ed0  28 61 75 5f 62 79 74 65  74 6f 77 6f 72 64 28 70  |(au_bytetoword(p|
00000ee0  6f 6c 6c 5f 62 6c 6f 63  6b 2c 20 31 32 29 20 3d  |oll_block, 12) =|
00000ef0  3d 20 77 69 6e 5f 64 61  74 61 5b 30 5d 2e 77 69  |= win_data[0].wi|
00000f00  6e 5f 68 61 6e 64 6c 65  29 20 26 26 20 28 63 6c  |n_handle) && (cl|
00000f10  6b 20 3d 3d 20 34 29 29  20 7b 0a 09 09 69 63 6f  |k == 4)) {...ico|
00000f20  6e 5f 6e 75 6d 20 3d 20  61 75 5f 62 79 74 65 74  |n_num = au_bytet|
00000f30  6f 77 6f 72 64 28 70 6f  6c 6c 5f 62 6c 6f 63 6b  |oword(poll_block|
00000f40  2c 20 31 36 29 3b 0a 09  09 73 77 69 74 63 68 20  |, 16);...switch |
00000f50  28 69 63 6f 6e 5f 6e 75  6d 29 20 7b 0a 09 09 09  |(icon_num) {....|
00000f60  63 61 73 65 20 50 52 45  56 5f 52 45 43 4f 52 44  |case PREV_RECORD|
00000f70  5f 49 43 4f 4e 20 3a 20  70 72 65 76 5f 72 65 63  |_ICON : prev_rec|
00000f80  6f 72 64 28 29 3b 0a 09  09 09 09 62 72 65 61 6b  |ord();.....break|
00000f90  3b 0a 09 09 09 63 61 73  65 20 4e 45 58 54 5f 52  |;....case NEXT_R|
00000fa0  45 43 4f 52 44 5f 49 43  4f 4e 20 3a 20 6e 65 78  |ECORD_ICON : nex|
00000fb0  74 5f 72 65 63 6f 72 64  28 29 3b 0a 09 09 09 09  |t_record();.....|
00000fc0  62 72 65 61 6b 3b 0a 09  09 09 63 61 73 65 20 55  |break;....case U|
00000fd0  50 44 41 54 45 5f 49 43  4f 4e 20 3a 20 75 70 64  |PDATE_ICON : upd|
00000fe0  61 74 65 5f 72 65 63 6f  72 64 28 29 3b 0a 09 09  |ate_record();...|
00000ff0  09 09 62 72 65 61 6b 3b  0a 09 09 7d 0a 09 7d 0a  |..break;...}..}.|
00001000  0a 09 72 65 74 75 72 6e  3b 0a 7d 0a 0a 76 6f 69  |..return;.}..voi|
00001010  64 20 6d 65 6e 75 5f 73  65 6c 65 63 74 69 6f 6e  |d menu_selection|
00001020  28 75 6e 73 69 67 6e 65  64 20 63 68 61 72 20 70  |(unsigned char p|
00001030  6f 6c 6c 5f 62 6c 6f 63  6b 5b 5d 29 0a 7b 0a 09  |oll_block[]).{..|
00001040  6c 6f 6e 67 20 69 6e 74  09 66 69 72 73 74 5f 68  |long int.first_h|
00001050  69 74 3b 0a 09 2f 2a 20  57 68 69 63 68 20 6d 65  |it;../* Which me|
00001060  6e 75 20 77 61 73 20 68  69 74 3f 20 2a 2f 0a 09  |nu was hit? */..|
00001070  69 66 20 28 43 55 52 52  45 4e 54 5f 4d 45 4e 55  |if (CURRENT_MENU|
00001080  20 3d 3d 20 31 29 20 7b  0a 09 09 2f 2a 20 54 68  | == 1) {.../* Th|
00001090  65 20 69 63 6f 6e 20 62  61 72 20 6d 65 6e 75 20  |e icon bar menu |
000010a0  67 6f 74 20 69 74 20 2d  20 64 65 63 69 70 68 65  |got it - deciphe|
000010b0  72 20 66 69 72 73 74 20  6d 65 6e 75 20 73 75 62  |r first menu sub|
000010c0  73 65 6c 65 63 74 69 6f  6e 20 2a 2f 0a 09 09 66  |selection */...f|
000010d0  69 72 73 74 5f 68 69 74  20 3d 20 61 75 5f 62 79  |irst_hit = au_by|
000010e0  74 65 74 6f 77 6f 72 64  28 70 6f 6c 6c 5f 62 6c  |tetoword(poll_bl|
000010f0  6f 63 6b 2c 20 30 29 3b  0a 09 09 69 66 20 28 66  |ock, 0);...if (f|
00001100  69 72 73 74 5f 68 69 74  20 3d 3d 20 51 55 49 54  |irst_hit == QUIT|
00001110  5f 4f 50 54 49 4f 4e 29  20 7b 0a 09 09 09 51 55  |_OPTION) {....QU|
00001120  49 54 5f 46 4c 41 47 20  3d 20 31 3b 0a 09 09 7d  |IT_FLAG = 1;...}|
00001130  0a 09 7d 0a 09 72 65 74  75 72 6e 3b 0a 7d 0a 0a  |..}..return;.}..|
00001140  76 6f 69 64 20 70 72 65  76 5f 72 65 63 6f 72 64  |void prev_record|
00001150  28 76 6f 69 64 29 0a 7b  0a 09 69 66 20 28 43 55  |(void).{..if (CU|
00001160  52 52 45 4e 54 5f 52 45  43 4f 52 44 5f 50 4f 49  |RRENT_RECORD_POI|
00001170  4e 54 45 52 2d 3e 70 72  65 76 5f 72 65 63 6f 72  |NTER->prev_recor|
00001180  64 20 21 3d 20 4e 55 4c  4c 29 20 7b 0a 09 09 2f  |d != NULL) {.../|
00001190  2a 20 53 61 76 65 20 77  69 6e 64 6f 77 20 69 6e  |* Save window in|
000011a0  66 6f 72 6d 61 74 69 6f  6e 3f 20 2a 2f 0a 09 09  |formation? */...|
000011b0  43 55 52 52 45 4e 54 5f  52 45 43 4f 52 44 5f 50  |CURRENT_RECORD_P|
000011c0  4f 49 4e 54 45 52 20 3d  20 43 55 52 52 45 4e 54  |OINTER = CURRENT|
000011d0  5f 52 45 43 4f 52 44 5f  50 4f 49 4e 54 45 52 2d  |_RECORD_POINTER-|
000011e0  3e 70 72 65 76 5f 72 65  63 6f 72 64 3b 0a 09 09  |>prev_record;...|
000011f0  43 55 52 52 45 4e 54 5f  52 45 43 4f 52 44 5f 4e  |CURRENT_RECORD_N|
00001200  55 4d 42 45 52 20 3d 20  43 55 52 52 45 4e 54 5f  |UMBER = CURRENT_|
00001210  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 2d 3e  |RECORD_POINTER->|
00001220  6a 75 6d 70 5f 6e 6f 3b  0a 09 09 2f 2a 20 77 6f  |jump_no;.../* wo|
00001230  75 6c 64 20 75 70 64 61  74 65 20 77 69 6e 64 6f  |uld update windo|
00001240  77 20 69 6e 66 6f 20 68  65 72 65 20 2a 2f 0a 09  |w info here */..|
00001250  09 75 70 64 61 74 65 5f  77 69 6e 64 6f 77 5f 69  |.update_window_i|
00001260  6e 66 6f 28 29 3b 0a 09  7d 0a 7d 0a 0a 76 6f 69  |nfo();..}.}..voi|
00001270  64 20 6e 65 78 74 5f 72  65 63 6f 72 64 28 76 6f  |d next_record(vo|
00001280  69 64 29 0a 7b 0a 09 69  66 20 28 43 55 52 52 45  |id).{..if (CURRE|
00001290  4e 54 5f 52 45 43 4f 52  44 5f 50 4f 49 4e 54 45  |NT_RECORD_POINTE|
000012a0  52 2d 3e 6e 65 78 74 5f  72 65 63 6f 72 64 20 21  |R->next_record !|
000012b0  3d 20 4e 55 4c 4c 29 20  7b 0a 09 09 43 55 52 52  |= NULL) {...CURR|
000012c0  45 4e 54 5f 52 45 43 4f  52 44 5f 50 4f 49 4e 54  |ENT_RECORD_POINT|
000012d0  45 52 20 3d 20 43 55 52  52 45 4e 54 5f 52 45 43  |ER = CURRENT_REC|
000012e0  4f 52 44 5f 50 4f 49 4e  54 45 52 2d 3e 6e 65 78  |ORD_POINTER->nex|
000012f0  74 5f 72 65 63 6f 72 64  3b 0a 09 09 43 55 52 52  |t_record;...CURR|
00001300  45 4e 54 5f 52 45 43 4f  52 44 5f 4e 55 4d 42 45  |ENT_RECORD_NUMBE|
00001310  52 20 3d 20 43 55 52 52  45 4e 54 5f 52 45 43 4f  |R = CURRENT_RECO|
00001320  52 44 5f 50 4f 49 4e 54  45 52 2d 3e 6a 75 6d 70  |RD_POINTER->jump|
00001330  5f 6e 6f 3b 0a 09 09 2f  2a 20 77 6f 75 6c 64 20  |_no;.../* would |
00001340  75 70 64 61 74 65 20 77  69 6e 64 6f 77 20 69 6e  |update window in|
00001350  66 6f 20 68 65 72 65 20  2a 2f 0a 09 09 75 70 64  |fo here */...upd|
00001360  61 74 65 5f 77 69 6e 64  6f 77 5f 69 6e 66 6f 28  |ate_window_info(|
00001370  29 3b 0a 09 7d 0a 7d 0a  0a 76 6f 69 64 20 75 70  |);..}.}..void up|
00001380  64 61 74 65 5f 72 65 63  6f 72 64 28 76 6f 69 64  |date_record(void|
00001390  29 0a 7b 0a 09 2f 2a 20  57 65 20 6e 65 65 64 20  |).{../* We need |
000013a0  61 20 74 65 6d 70 6f 72  61 72 79 20 73 74 72 69  |a temporary stri|
000013b0  6e 67 20 62 75 66 66 65  72 20 2a 2f 0a 09 63 68  |ng buffer */..ch|
000013c0  61 72 20 74 65 6d 70 5f  62 75 66 5b 32 35 35 5d  |ar temp_buf[255]|
000013d0  3b 0a 0a 09 2f 2a 20 53  61 76 65 20 77 69 6e 64  |;.../* Save wind|
000013e0  6f 77 20 69 6e 66 6f 72  6d 61 74 69 6f 6e 20 2a  |ow information *|
000013f0  2f 0a 09 61 75 5f 69 63  6f 6e 5f 67 65 74 5f 74  |/..au_icon_get_t|
00001400  65 78 74 28 43 55 52 52  45 4e 54 5f 52 45 43 4f  |ext(CURRENT_RECO|
00001410  52 44 5f 50 4f 49 4e 54  45 52 2d 3e 64 61 74 65  |RD_POINTER->date|
00001420  2c 20 77 69 6e 5f 64 61  74 61 5b 30 5d 2e 77 69  |, win_data[0].wi|
00001430  6e 5f 68 61 6e 64 6c 65  2c 20 44 41 54 45 5f 49  |n_handle, DATE_I|
00001440  43 4f 4e 29 3b 0a 09 61  75 5f 69 63 6f 6e 5f 67  |CON);..au_icon_g|
00001450  65 74 5f 74 65 78 74 28  43 55 52 52 45 4e 54 5f  |et_text(CURRENT_|
00001460  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 2d 3e  |RECORD_POINTER->|
00001470  61 69 72 63 72 61 66 74  2c 20 77 69 6e 5f 64 61  |aircraft, win_da|
00001480  74 61 5b 30 5d 2e 77 69  6e 5f 68 61 6e 64 6c 65  |ta[0].win_handle|
00001490  2c 20 41 49 52 43 52 41  46 54 5f 49 43 4f 4e 29  |, AIRCRAFT_ICON)|
000014a0  3b 0a 09 61 75 5f 69 63  6f 6e 5f 67 65 74 5f 74  |;..au_icon_get_t|
000014b0  65 78 74 28 43 55 52 52  45 4e 54 5f 52 45 43 4f  |ext(CURRENT_RECO|
000014c0  52 44 5f 50 4f 49 4e 54  45 52 2d 3e 64 72 6f 70  |RD_POINTER->drop|
000014d0  7a 6f 6e 65 2c 20 77 69  6e 5f 64 61 74 61 5b 30  |zone, win_data[0|
000014e0  5d 2e 77 69 6e 5f 68 61  6e 64 6c 65 2c 20 44 52  |].win_handle, DR|
000014f0  4f 50 5a 4f 4e 45 5f 49  43 4f 4e 29 3b 0a 09 61  |OPZONE_ICON);..a|
00001500  75 5f 69 63 6f 6e 5f 67  65 74 5f 74 65 78 74 28  |u_icon_get_text(|
00001510  43 55 52 52 45 4e 54 5f  52 45 43 4f 52 44 5f 50  |CURRENT_RECORD_P|
00001520  4f 49 4e 54 45 52 2d 3e  61 69 72 77 6f 72 6b 2c  |OINTER->airwork,|
00001530  20 77 69 6e 5f 64 61 74  61 5b 30 5d 2e 77 69 6e  | win_data[0].win|
00001540  5f 68 61 6e 64 6c 65 2c  20 41 49 52 57 4f 52 4b  |_handle, AIRWORK|
00001550  5f 49 43 4f 4e 29 3b 0a  09 61 75 5f 69 63 6f 6e  |_ICON);..au_icon|
00001560  5f 67 65 74 5f 74 65 78  74 28 43 55 52 52 45 4e  |_get_text(CURREN|
00001570  54 5f 52 45 43 4f 52 44  5f 50 4f 49 4e 54 45 52  |T_RECORD_POINTER|
00001580  2d 3e 72 65 6d 61 72 6b  73 31 2c 20 77 69 6e 5f  |->remarks1, win_|
00001590  64 61 74 61 5b 30 5d 2e  77 69 6e 5f 68 61 6e 64  |data[0].win_hand|
000015a0  6c 65 2c 20 52 45 4d 41  52 4b 53 31 5f 49 43 4f  |le, REMARKS1_ICO|
000015b0  4e 29 3b 0a 09 61 75 5f  69 63 6f 6e 5f 67 65 74  |N);..au_icon_get|
000015c0  5f 74 65 78 74 28 43 55  52 52 45 4e 54 5f 52 45  |_text(CURRENT_RE|
000015d0  43 4f 52 44 5f 50 4f 49  4e 54 45 52 2d 3e 72 65  |CORD_POINTER->re|
000015e0  6d 61 72 6b 73 32 2c 20  77 69 6e 5f 64 61 74 61  |marks2, win_data|
000015f0  5b 30 5d 2e 77 69 6e 5f  68 61 6e 64 6c 65 2c 20  |[0].win_handle, |
00001600  52 45 4d 41 52 4b 53 32  5f 49 43 4f 4e 29 3b 0a  |REMARKS2_ICON);.|
00001610  09 2f 2a 20 57 65 20 6e  65 65 64 20 74 6f 20 63  |./* We need to c|
00001620  6f 6e 76 65 72 74 20 74  65 78 74 20 74 6f 20 69  |onvert text to i|
00001630  6e 74 65 67 65 72 20 68  65 72 65 20 2a 2f 0a 09  |nteger here */..|
00001640  61 75 5f 69 63 6f 6e 5f  67 65 74 5f 74 65 78 74  |au_icon_get_text|
00001650  28 74 65 6d 70 5f 62 75  66 2c 20 77 69 6e 5f 64  |(temp_buf, win_d|
00001660  61 74 61 5b 30 5d 2e 77  69 6e 5f 68 61 6e 64 6c  |ata[0].win_handl|
00001670  65 2c 20 41 4c 54 49 54  55 44 45 5f 49 43 4f 4e  |e, ALTITUDE_ICON|
00001680  29 3b 0a 09 43 55 52 52  45 4e 54 5f 52 45 43 4f  |);..CURRENT_RECO|
00001690  52 44 5f 50 4f 49 4e 54  45 52 2d 3e 61 6c 74 69  |RD_POINTER->alti|
000016a0  74 75 64 65 20 3d 20 61  74 6f 69 28 74 65 6d 70  |tude = atoi(temp|
000016b0  5f 62 75 66 29 3b 0a 0a  09 2f 2a 20 41 6e 64 20  |_buf);.../* And |
000016c0  68 65 72 65 20 2a 2f 0a  09 61 75 5f 69 63 6f 6e  |here */..au_icon|
000016d0  5f 67 65 74 5f 74 65 78  74 28 74 65 6d 70 5f 62  |_get_text(temp_b|
000016e0  75 66 2c 20 77 69 6e 5f  64 61 74 61 5b 30 5d 2e  |uf, win_data[0].|
000016f0  77 69 6e 5f 68 61 6e 64  6c 65 2c 20 44 45 4c 41  |win_handle, DELA|
00001700  59 5f 49 43 4f 4e 29 3b  0a 09 43 55 52 52 45 4e  |Y_ICON);..CURREN|
00001710  54 5f 52 45 43 4f 52 44  5f 50 4f 49 4e 54 45 52  |T_RECORD_POINTER|
00001720  2d 3e 64 65 6c 61 79 20  3d 20 61 74 6f 69 28 74  |->delay = atoi(t|
00001730  65 6d 70 5f 62 75 66 29  3b 0a 09 2f 2a 20 52 65  |emp_buf);../* Re|
00001740  63 6f 72 64 20 69 73 20  6e 6f 77 20 73 61 76 65  |cord is now save|
00001750  64 20 69 6e 20 6d 65 6d  6f 72 79 20 2a 2f 0a 0a  |d in memory */..|
00001760  09 2f 2a 20 41 72 65 20  77 65 20 6f 6e 20 74 68  |./* Are we on th|
00001770  65 20 6c 61 73 74 20 72  65 63 6f 72 64 3f 20 49  |e last record? I|
00001780  66 20 73 6f 2c 20 77 65  20 61 64 64 20 61 20 6e  |f so, we add a n|
00001790  65 77 20 6f 6e 65 20 2a  2f 0a 09 69 66 20 28 43  |ew one */..if (C|
000017a0  55 52 52 45 4e 54 5f 52  45 43 4f 52 44 5f 50 4f  |URRENT_RECORD_PO|
000017b0  49 4e 54 45 52 2d 3e 6e  65 78 74 5f 72 65 63 6f  |INTER->next_reco|
000017c0  72 64 20 3d 3d 20 4e 55  4c 4c 29 20 7b 0a 09 09  |rd == NULL) {...|
000017d0  61 64 64 5f 72 65 63 6f  72 64 28 29 3b 0a 09 7d  |add_record();..}|
000017e0  0a 7d 0a 0a 76 6f 69 64  20 61 64 64 5f 72 65 63  |.}..void add_rec|
000017f0  6f 72 64 28 76 6f 69 64  29 0a 7b 0a 09 6a 75 6d  |ord(void).{..jum|
00001800  70 5f 64 61 74 61 09 2a  6e 65 77 5f 72 65 63 6f  |p_data.*new_reco|
00001810  72 64 3b 0a 0a 09 2f 2a  49 6e 66 6f 72 6d 61 74  |rd;.../*Informat|
00001820  69 6f 6e 20 66 72 6f 6d  20 77 69 6e 64 6f 77 20  |ion from window |
00001830  61 6c 72 65 61 64 79 20  73 61 76 65 64 20 2a 2f  |already saved */|
00001840  0a 0a 09 6e 65 77 5f 72  65 63 6f 72 64 20 3d 20  |...new_record = |
00001850  63 61 6c 6c 6f 63 28 31  2c 20 73 69 7a 65 6f 66  |calloc(1, sizeof|
00001860  28 6a 75 6d 70 5f 64 61  74 61 29 29 3b 0a 09 2f  |(jump_data));../|
00001870  2a 20 49 6e 69 74 69 61  6c 69 73 65 20 70 6f 69  |* Initialise poi|
00001880  6e 74 65 72 73 20 2a 2f  0a 09 6e 65 77 5f 72 65  |nters */..new_re|
00001890  63 6f 72 64 2d 3e 70 72  65 76 5f 72 65 63 6f 72  |cord->prev_recor|
000018a0  64 20 3d 20 43 55 52 52  45 4e 54 5f 52 45 43 4f  |d = CURRENT_RECO|
000018b0  52 44 5f 50 4f 49 4e 54  45 52 3b 0a 09 6e 65 77  |RD_POINTER;..new|
000018c0  5f 72 65 63 6f 72 64 2d  3e 6e 65 78 74 5f 72 65  |_record->next_re|
000018d0  63 6f 72 64 20 3d 20 4e  55 4c 4c 3b 0a 09 4c 41  |cord = NULL;..LA|
000018e0  53 54 5f 52 45 43 4f 52  44 5f 4e 55 4d 42 45 52  |ST_RECORD_NUMBER|
000018f0  20 3d 20 6e 65 77 5f 72  65 63 6f 72 64 2d 3e 6a  | = new_record->j|
00001900  75 6d 70 5f 6e 6f 20 3d  20 43 55 52 52 45 4e 54  |ump_no = CURRENT|
00001910  5f 52 45 43 4f 52 44 5f  50 4f 49 4e 54 45 52 2d  |_RECORD_POINTER-|
00001920  3e 6a 75 6d 70 5f 6e 6f  20 2b 20 31 3b 0a 09 43  |>jump_no + 1;..C|
00001930  55 52 52 45 4e 54 5f 52  45 43 4f 52 44 5f 50 4f  |URRENT_RECORD_PO|
00001940  49 4e 54 45 52 2d 3e 6e  65 78 74 5f 72 65 63 6f  |INTER->next_reco|
00001950  72 64 20 3d 20 6e 65 77  5f 72 65 63 6f 72 64 3b  |rd = new_record;|
00001960  0a 0a 09 2f 2a 20 53 77  69 74 63 68 20 76 69 65  |.../* Switch vie|
00001970  77 20 74 6f 20 74 68 65  20 6e 65 77 20 72 65 63  |w to the new rec|
00001980  6f 72 64 20 2a 2f 0a 09  43 55 52 52 45 4e 54 5f  |ord */..CURRENT_|
00001990  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 20 3d  |RECORD_POINTER =|
000019a0  20 6e 65 77 5f 72 65 63  6f 72 64 3b 0a 09 43 55  | new_record;..CU|
000019b0  52 52 45 4e 54 5f 52 45  43 4f 52 44 5f 4e 55 4d  |RRENT_RECORD_NUM|
000019c0  42 45 52 20 3d 20 43 55  52 52 45 4e 54 5f 52 45  |BER = CURRENT_RE|
000019d0  43 4f 52 44 5f 50 4f 49  4e 54 45 52 2d 3e 6a 75  |CORD_POINTER->ju|
000019e0  6d 70 5f 6e 6f 3b 0a 0a  09 2f 2a 20 55 70 64 61  |mp_no;.../* Upda|
000019f0  74 65 20 74 68 65 20 77  69 6e 64 6f 77 20 74 6f  |te the window to|
00001a00  20 64 69 73 70 6c 61 79  20 74 68 65 20 6e 65 77  | display the new|
00001a10  20 69 6e 66 6f 72 6d 61  74 69 6f 6e 20 2a 2f 0a  | information */.|
00001a20  09 75 70 64 61 74 65 5f  77 69 6e 64 6f 77 5f 69  |.update_window_i|
00001a30  6e 66 6f 28 29 3b 0a 7d  0a 0a 76 6f 69 64 20 75  |nfo();.}..void u|
00001a40  70 64 61 74 65 5f 77 69  6e 64 6f 77 5f 69 6e 66  |pdate_window_inf|
00001a50  6f 28 76 6f 69 64 29 0a  7b 0a 09 63 68 61 72 09  |o(void).{..char.|
00001a60  74 65 6d 70 5f 73 74 72  69 6e 67 5b 32 35 35 5d  |temp_string[255]|
00001a70  3b 0a 0a 09 61 75 5f 6c  6f 73 65 63 61 72 65 74  |;...au_losecaret|
00001a80  28 29 3b 0a 09 69 66 20  28 43 55 52 52 45 4e 54  |();..if (CURRENT|
00001a90  5f 52 45 43 4f 52 44 5f  50 4f 49 4e 54 45 52 2d  |_RECORD_POINTER-|
00001aa0  3e 6e 65 78 74 5f 72 65  63 6f 72 64 20 3d 3d 20  |>next_record == |
00001ab0  4e 55 4c 4c 29 20 7b 0a  09 09 61 75 5f 69 63 6f  |NULL) {...au_ico|
00001ac0  6e 5f 74 65 78 74 5f 63  68 61 6e 67 65 28 22 41  |n_text_change("A|
00001ad0  64 64 22 2c 20 77 69 6e  5f 64 61 74 61 5b 30 5d  |dd", win_data[0]|
00001ae0  2e 77 69 6e 5f 68 61 6e  64 6c 65 2c 20 55 50 44  |.win_handle, UPD|
00001af0  41 54 45 5f 49 43 4f 4e  29 3b 0a 09 7d 20 65 6c  |ATE_ICON);..} el|
00001b00  73 65 20 7b 0a 09 09 61  75 5f 69 63 6f 6e 5f 74  |se {...au_icon_t|
00001b10  65 78 74 5f 63 68 61 6e  67 65 28 22 55 70 64 61  |ext_change("Upda|
00001b20  74 65 22 2c 20 77 69 6e  5f 64 61 74 61 5b 30 5d  |te", win_data[0]|
00001b30  2e 77 69 6e 5f 68 61 6e  64 6c 65 2c 20 55 50 44  |.win_handle, UPD|
00001b40  41 54 45 5f 49 43 4f 4e  29 3b 0a 09 7d 0a 09 73  |ATE_ICON);..}..s|
00001b50  70 72 69 6e 74 66 28 74  65 6d 70 5f 73 74 72 69  |printf(temp_stri|
00001b60  6e 67 2c 20 22 25 64 22  2c 20 43 55 52 52 45 4e  |ng, "%d", CURREN|
00001b70  54 5f 52 45 43 4f 52 44  5f 50 4f 49 4e 54 45 52  |T_RECORD_POINTER|
00001b80  2d 3e 6a 75 6d 70 5f 6e  6f 29 3b 0a 09 61 75 5f  |->jump_no);..au_|
00001b90  69 63 6f 6e 5f 74 65 78  74 5f 63 68 61 6e 67 65  |icon_text_change|
00001ba0  28 74 65 6d 70 5f 73 74  72 69 6e 67 2c 20 77 69  |(temp_string, wi|
00001bb0  6e 5f 64 61 74 61 5b 30  5d 2e 77 69 6e 5f 68 61  |n_data[0].win_ha|
00001bc0  6e 64 6c 65 2c 20 43 55  52 52 45 4e 54 5f 52 45  |ndle, CURRENT_RE|
00001bd0  43 4f 52 44 5f 49 43 4f  4e 29 3b 0a 09 73 70 72  |CORD_ICON);..spr|
00001be0  69 6e 74 66 28 74 65 6d  70 5f 73 74 72 69 6e 67  |intf(temp_string|
00001bf0  2c 20 22 25 64 22 2c 20  4c 41 53 54 5f 52 45 43  |, "%d", LAST_REC|
00001c00  4f 52 44 5f 4e 55 4d 42  45 52 29 3b 0a 09 61 75  |ORD_NUMBER);..au|
00001c10  5f 69 63 6f 6e 5f 74 65  78 74 5f 63 68 61 6e 67  |_icon_text_chang|
00001c20  65 28 74 65 6d 70 5f 73  74 72 69 6e 67 2c 20 77  |e(temp_string, w|
00001c30  69 6e 5f 64 61 74 61 5b  30 5d 2e 77 69 6e 5f 68  |in_data[0].win_h|
00001c40  61 6e 64 6c 65 2c 20 4c  41 53 54 5f 52 45 43 4f  |andle, LAST_RECO|
00001c50  52 44 5f 49 43 4f 4e 29  3b 0a 0a 09 61 75 5f 69  |RD_ICON);...au_i|
00001c60  63 6f 6e 5f 74 65 78 74  5f 63 68 61 6e 67 65 28  |con_text_change(|
00001c70  43 55 52 52 45 4e 54 5f  52 45 43 4f 52 44 5f 50  |CURRENT_RECORD_P|
00001c80  4f 49 4e 54 45 52 2d 3e  64 61 74 65 20 2c 20 77  |OINTER->date , w|
00001c90  69 6e 5f 64 61 74 61 5b  30 5d 2e 77 69 6e 5f 68  |in_data[0].win_h|
00001ca0  61 6e 64 6c 65 2c 20 44  41 54 45 5f 49 43 4f 4e  |andle, DATE_ICON|
00001cb0  29 3b 0a 09 61 75 5f 69  63 6f 6e 5f 74 65 78 74  |);..au_icon_text|
00001cc0  5f 63 68 61 6e 67 65 28  43 55 52 52 45 4e 54 5f  |_change(CURRENT_|
00001cd0  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 2d 3e  |RECORD_POINTER->|
00001ce0  61 69 72 63 72 61 66 74  20 2c 20 77 69 6e 5f 64  |aircraft , win_d|
00001cf0  61 74 61 5b 30 5d 2e 77  69 6e 5f 68 61 6e 64 6c  |ata[0].win_handl|
00001d00  65 2c 20 41 49 52 43 52  41 46 54 5f 49 43 4f 4e  |e, AIRCRAFT_ICON|
00001d10  29 3b 0a 09 61 75 5f 69  63 6f 6e 5f 74 65 78 74  |);..au_icon_text|
00001d20  5f 63 68 61 6e 67 65 28  43 55 52 52 45 4e 54 5f  |_change(CURRENT_|
00001d30  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 2d 3e  |RECORD_POINTER->|
00001d40  64 72 6f 70 7a 6f 6e 65  20 2c 20 77 69 6e 5f 64  |dropzone , win_d|
00001d50  61 74 61 5b 30 5d 2e 77  69 6e 5f 68 61 6e 64 6c  |ata[0].win_handl|
00001d60  65 2c 20 44 52 4f 50 5a  4f 4e 45 5f 49 43 4f 4e  |e, DROPZONE_ICON|
00001d70  29 3b 0a 09 61 75 5f 69  63 6f 6e 5f 74 65 78 74  |);..au_icon_text|
00001d80  5f 63 68 61 6e 67 65 28  43 55 52 52 45 4e 54 5f  |_change(CURRENT_|
00001d90  52 45 43 4f 52 44 5f 50  4f 49 4e 54 45 52 2d 3e  |RECORD_POINTER->|
00001da0  61 69 72 77 6f 72 6b 20  2c 20 77 69 6e 5f 64 61  |airwork , win_da|
00001db0  74 61 5b 30 5d 2e 77 69  6e 5f 68 61 6e 64 6c 65  |ta[0].win_handle|
00001dc0  2c 20 41 49 52 57 4f 52  4b 5f 49 43 4f 4e 29 3b  |, AIRWORK_ICON);|
00001dd0  0a 09 61 75 5f 69 63 6f  6e 5f 74 65 78 74 5f 63  |..au_icon_text_c|
00001de0  68 61 6e 67 65 28 43 55  52 52 45 4e 54 5f 52 45  |hange(CURRENT_RE|
00001df0  43 4f 52 44 5f 50 4f 49  4e 54 45 52 2d 3e 72 65  |CORD_POINTER->re|
00001e00  6d 61 72 6b 73 31 20 2c  20 77 69 6e 5f 64 61 74  |marks1 , win_dat|
00001e10  61 5b 30 5d 2e 77 69 6e  5f 68 61 6e 64 6c 65 2c  |a[0].win_handle,|
00001e20  20 52 45 4d 41 52 4b 53  31 5f 49 43 4f 4e 29 3b  | REMARKS1_ICON);|
00001e30  0a 09 61 75 5f 69 63 6f  6e 5f 74 65 78 74 5f 63  |..au_icon_text_c|
00001e40  68 61 6e 67 65 28 43 55  52 52 45 4e 54 5f 52 45  |hange(CURRENT_RE|
00001e50  43 4f 52 44 5f 50 4f 49  4e 54 45 52 2d 3e 72 65  |CORD_POINTER->re|
00001e60  6d 61 72 6b 73 32 20 2c  20 77 69 6e 5f 64 61 74  |marks2 , win_dat|
00001e70  61 5b 30 5d 2e 77 69 6e  5f 68 61 6e 64 6c 65 2c  |a[0].win_handle,|
00001e80  20 52 45 4d 41 52 4b 53  32 5f 49 43 4f 4e 29 3b  | REMARKS2_ICON);|
00001e90  0a 0a 09 73 70 72 69 6e  74 66 28 74 65 6d 70 5f  |...sprintf(temp_|
00001ea0  73 74 72 69 6e 67 2c 20  22 25 64 22 2c 20 43 55  |string, "%d", CU|
00001eb0  52 52 45 4e 54 5f 52 45  43 4f 52 44 5f 50 4f 49  |RRENT_RECORD_POI|
00001ec0  4e 54 45 52 2d 3e 61 6c  74 69 74 75 64 65 29 3b  |NTER->altitude);|
00001ed0  0a 09 61 75 5f 69 63 6f  6e 5f 74 65 78 74 5f 63  |..au_icon_text_c|
00001ee0  68 61 6e 67 65 28 74 65  6d 70 5f 73 74 72 69 6e  |hange(temp_strin|
00001ef0  67 2c 20 77 69 6e 5f 64  61 74 61 5b 30 5d 2e 77  |g, win_data[0].w|
00001f00  69 6e 5f 68 61 6e 64 6c  65 2c 20 41 4c 54 49 54  |in_handle, ALTIT|
00001f10  55 44 45 5f 49 43 4f 4e  29 3b 0a 09 73 70 72 69  |UDE_ICON);..spri|
00001f20  6e 74 66 28 74 65 6d 70  5f 73 74 72 69 6e 67 2c  |ntf(temp_string,|
00001f30  20 22 25 64 22 2c 20 43  55 52 52 45 4e 54 5f 52  | "%d", CURRENT_R|
00001f40  45 43 4f 52 44 5f 50 4f  49 4e 54 45 52 2d 3e 64  |ECORD_POINTER->d|
00001f50  65 6c 61 79 29 3b 0a 09  61 75 5f 69 63 6f 6e 5f  |elay);..au_icon_|
00001f60  74 65 78 74 5f 63 68 61  6e 67 65 28 74 65 6d 70  |text_change(temp|
00001f70  5f 73 74 72 69 6e 67 2c  20 77 69 6e 5f 64 61 74  |_string, win_dat|
00001f80  61 5b 30 5d 2e 77 69 6e  5f 68 61 6e 64 6c 65 2c  |a[0].win_handle,|
00001f90  20 44 45 4c 41 59 5f 49  43 4f 4e 29 3b 0a 09 72  | DELAY_ICON);..r|
00001fa0  65 74 75 72 6e 3b 0a 7d  0a 0a 76 6f 69 64 20 6f  |eturn;.}..void o|
00001fb0  70 65 6e 5f 6d 61 69 6e  5f 77 69 6e 64 6f 77 28  |pen_main_window(|
00001fc0  76 6f 69 64 29 0a 7b 0a  09 5f 6b 65 72 6e 65 6c  |void).{.._kernel|
00001fd0  5f 73 77 69 5f 72 65 67  73 09 69 6e 2c 20 6f 75  |_swi_regs.in, ou|
00001fe0  74 3b 0a 09 75 6e 73 69  67 6e 65 64 20 63 68 61  |t;..unsigned cha|
00001ff0  72 09 74 65 6d 70 5f 62  75 66 66 65 72 5b 31 30  |r.temp_buffer[10|
00002000  32 34 5d 3b 0a 0a 2f 2a  20 57 65 20 6e 65 65 64  |24];../* We need|
00002010  20 74 6f 20 75 70 64 61  74 65 20 74 68 65 20 63  | to update the c|
00002020  75 72 72 65 6e 74 20 61  6e 64 20 6c 61 73 74 20  |urrent and last |
00002030  72 65 63 6f 72 64 20 6e  75 6d 62 65 72 73 20 69  |record numbers i|
00002040  6e 20 74 68 65 20 77 69  6e 64 6f 77 0a 20 2a 20  |n the window. * |
00002050  62 65 66 6f 72 65 20 6f  70 65 6e 69 6e 67 20 2a  |before opening *|
00002060  2f 0a 0a 09 75 70 64 61  74 65 5f 77 69 6e 64 6f  |/...update_windo|
00002070  77 5f 69 6e 66 6f 28 29  3b 0a 0a 2f 2a 20 4e 6f  |w_info();../* No|
00002080  77 20 6f 70 65 6e 20 74  68 65 20 77 69 6e 64 6f  |w open the windo|
00002090  77 20 2a 2f 0a 0a 09 61  75 5f 77 6f 72 64 74 6f  |w */...au_wordto|
000020a0  62 79 74 65 28 77 69 6e  5f 64 61 74 61 5b 30 5d  |byte(win_data[0]|
000020b0  2e 77 69 6e 5f 68 61 6e  64 6c 65 2c 20 74 65 6d  |.win_handle, tem|
000020c0  70 5f 62 75 66 66 65 72  2c 20 30 29 3b 0a 09 69  |p_buffer, 0);..i|
000020d0  6e 2e 72 5b 31 5d 20 3d  20 28 69 6e 74 29 20 74  |n.r[1] = (int) t|
000020e0  65 6d 70 5f 62 75 66 66  65 72 3b 0a 09 5f 6b 65  |emp_buffer;.._ke|
000020f0  72 6e 65 6c 5f 73 77 69  28 57 69 6d 70 5f 47 65  |rnel_swi(Wimp_Ge|
00002100  74 57 69 6e 64 6f 77 49  6e 66 6f 2c 20 26 69 6e  |tWindowInfo, &in|
00002110  2c 20 26 6f 75 74 29 3b  0a 09 5f 6b 65 72 6e 65  |, &out);.._kerne|
00002120  6c 5f 73 77 69 28 57 69  6d 70 5f 4f 70 65 6e 57  |l_swi(Wimp_OpenW|
00002130  69 6e 64 6f 77 2c 20 26  69 6e 2c 20 26 6f 75 74  |indow, &in, &out|
00002140  29 3b 0a 09 72 65 74 75  72 6e 3b 0a 7d 0a 0a 76  |);..return;.}..v|
00002150  6f 69 64 20 77 69 6d 70  5f 6d 73 67 28 69 6e 74  |oid wimp_msg(int|
00002160  20 72 65 73 75 6c 74 2c  20 75 6e 73 69 67 6e 65  | result, unsigne|
00002170  64 20 63 68 61 72 20 70  6f 6c 6c 62 6c 6f 63 6b  |d char pollblock|
00002180  5b 5d 29 0a 7b 0a 09 75  6e 73 69 67 6e 65 64 20  |[]).{..unsigned |
00002190  6c 6f 6e 67 20 69 6e 74  20 20 20 6d 65 73 73 61  |long int   messa|
000021a0  67 65 5f 61 63 74 69 6f  6e 3b 0a 09 0a 09 2f 2a  |ge_action;..../*|
000021b0  20 54 68 65 20 6e 65 78  74 20 6c 69 6e 65 20 74  | The next line t|
000021c0  61 6b 65 73 20 62 79 74  65 73 20 31 36 20 74 6f  |akes bytes 16 to|
000021d0  20 31 39 20 6f 66 20 74  68 65 20 70 6f 6c 6c 69  | 19 of the polli|
000021e0  6e 67 20 62 6c 6f 63 6b  20 61 6e 64 20 66 6f 72  |ng block and for|
000021f0  6d 73 20 74 68 65 6d 0a  09 20 20 20 69 6e 74 6f  |ms them..   into|
00002200  20 61 20 77 6f 72 64 20  68 6f 6c 64 69 6e 67 20  | a word holding |
00002210  74 68 65 20 6d 65 73 73  61 67 65 20 61 63 74 69  |the message acti|
00002220  6f 6e 20 6e 75 6d 62 65  72 20 2a 2f 0a 09 6d 65  |on number */..me|
00002230  73 73 61 67 65 5f 61 63  74 69 6f 6e 20 3d 20 61  |ssage_action = a|
00002240  75 5f 62 79 74 65 74 6f  77 6f 72 64 28 70 6f 6c  |u_bytetoword(pol|
00002250  6c 62 6c 6f 63 6b 2c 20  31 36 29 3b 0a 0a 09 73  |lblock, 16);...s|
00002260  77 69 74 63 68 20 28 6d  65 73 73 61 67 65 5f 61  |witch (message_a|
00002270  63 74 69 6f 6e 29 20 7b  0a 09 09 63 61 73 65 20  |ction) {...case |
00002280  30 20 3a 20 51 55 49 54  5f 46 4c 41 47 20 3d 20  |0 : QUIT_FLAG = |
00002290  31 3b 20 2f 2a 20 4d 65  73 73 61 67 65 5f 51 75  |1; /* Message_Qu|
000022a0  69 74 20 2d 20 74 69 6d  65 20 74 6f 20 67 6f 20  |it - time to go |
000022b0  2a 2f 0a 09 09 09 09 62  72 65 61 6b 3b 0a 09 7d  |*/.....break;..}|
000022c0  0a 09 72 65 74 75 72 6e  3b 0a 7d 0a 0a 0a 76 6f  |..return;.}...vo|
000022d0  69 64 20 6f 70 65 6e 77  69 6e 64 6f 77 28 75 6e  |id openwindow(un|
000022e0  73 69 67 6e 65 64 20 63  68 61 72 20 70 6f 6c 6c  |signed char poll|
000022f0  62 6c 6f 63 6b 5b 5d 29  0a 7b 0a 20 20 20 5f 6b  |block[]).{.   _k|
00002300  65 72 6e 65 6c 5f 73 77  69 5f 72 65 67 73 20 69  |ernel_swi_regs i|
00002310  6e 2c 20 6f 75 74 3b 0a  0a 20 20 20 69 6e 2e 72  |n, out;..   in.r|
00002320  5b 31 5d 20 3d 20 28 69  6e 74 29 20 70 6f 6c 6c  |[1] = (int) poll|
00002330  62 6c 6f 63 6b 3b 0a 20  20 20 5f 6b 65 72 6e 65  |block;.   _kerne|
00002340  6c 5f 73 77 69 28 57 69  6d 70 5f 4f 70 65 6e 57  |l_swi(Wimp_OpenW|
00002350  69 6e 64 6f 77 2c 20 26  69 6e 2c 20 26 6f 75 74  |indow, &in, &out|
00002360  29 3b 0a 20 20 20 72 65  74 75 72 6e 3b 0a 7d 0a  |);.   return;.}.|
00002370  0a 76 6f 69 64 20 63 6c  6f 73 65 77 69 6e 64 6f  |.void closewindo|
00002380  77 28 75 6e 73 69 67 6e  65 64 20 63 68 61 72 20  |w(unsigned char |
00002390  70 6f 6c 6c 62 6c 6f 63  6b 5b 5d 29 0a 7b 0a 20  |pollblock[]).{. |
000023a0  20 20 5f 6b 65 72 6e 65  6c 5f 73 77 69 5f 72 65  |  _kernel_swi_re|
000023b0  67 73 20 69 6e 2c 20 6f  75 74 3b 0a 0a 20 20 20  |gs in, out;..   |
000023c0  69 6e 2e 72 5b 31 5d 20  3d 20 28 69 6e 74 29 20  |in.r[1] = (int) |
000023d0  70 6f 6c 6c 62 6c 6f 63  6b 3b 0a 20 20 20 5f 6b  |pollblock;.   _k|
000023e0  65 72 6e 65 6c 5f 73 77  69 28 57 69 6d 70 5f 43  |ernel_swi(Wimp_C|
000023f0  6c 6f 73 65 57 69 6e 64  6f 77 2c 20 26 69 6e 2c  |loseWindow, &in,|
00002400  20 26 6f 75 74 29 3b 0a  20 20 20 72 65 74 75 72  | &out);.   retur|
00002410  6e 3b 0a 7d 0a 0a 76 6f  69 64 20 6c 6f 61 64 74  |n;.}..void loadt|
00002420  65 6d 70 6c 61 74 65 73  28 76 6f 69 64 29 0a 7b  |emplates(void).{|
00002430  0a 09 61 75 5f 6f 70 65  6e 74 65 6d 70 6c 61 74  |..au_opentemplat|
00002440  65 28 22 3c 52 41 50 53  24 44 69 72 3e 2e 54 65  |e("<RAPS$Dir>.Te|
00002450  6d 70 6c 61 74 65 73 22  29 3b 0a 09 69 66 28 61  |mplates");..if(a|
00002460  75 5f 6c 6f 61 64 74 65  6d 70 6c 61 74 65 28 22  |u_loadtemplate("|
00002470  4d 61 69 6e 57 69 6e 64  6f 77 22 2c 20 26 77 69  |MainWindow", &wi|
00002480  6e 5f 64 61 74 61 5b 30  5d 2c 20 30 29 20 3d 3d  |n_data[0], 0) ==|
00002490  20 30 29 20 7b 0a 09 09  61 75 5f 72 65 70 6f 72  | 0) {...au_repor|
000024a0  74 5f 65 72 72 6f 72 28  31 2c 20 22 54 65 6d 70  |t_error(1, "Temp|
000024b0  6c 61 74 65 20 6e 6f 74  20 66 6f 75 6e 64 21 22  |late not found!"|
000024c0  2c 20 31 2c 20 61 70 70  6e 61 6d 65 29 3b 0a 09  |, 1, appname);..|
000024d0  09 51 55 49 54 5f 46 4c  41 47 20 3d 20 31 3b 0a  |.QUIT_FLAG = 1;.|
000024e0  09 7d 0a 09 69 66 28 61  75 5f 6c 6f 61 64 74 65  |.}..if(au_loadte|
000024f0  6d 70 6c 61 74 65 28 22  50 72 6f 67 49 6e 66 6f  |mplate("ProgInfo|
00002500  22 2c 20 26 77 69 6e 5f  64 61 74 61 5b 31 5d 2c  |", &win_data[1],|
00002510  20 30 29 20 3d 3d 20 30  29 20 7b 0a 09 09 61 75  | 0) == 0) {...au|
00002520  5f 72 65 70 6f 72 74 5f  65 72 72 6f 72 28 31 2c  |_report_error(1,|
00002530  20 22 54 65 6d 70 6c 61  74 65 20 6e 6f 74 20 66  | "Template not f|
00002540  6f 75 6e 64 21 22 2c 20  31 2c 20 61 70 70 6e 61  |ound!", 1, appna|
00002550  6d 65 29 3b 0a 09 09 51  55 49 54 5f 46 4c 41 47  |me);...QUIT_FLAG|
00002560  20 3d 20 31 3b 0a 09 7d  0a 09 61 75 5f 63 6c 6f  | = 1;..}..au_clo|
00002570  73 65 74 65 6d 70 6c 61  74 65 28 29 3b 0a 7d 0a  |setemplate();.}.|
00002580  0a 76 6f 69 64 20 73 65  74 75 70 5f 64 61 74 61  |.void setup_data|
00002590  62 61 73 65 28 76 6f 69  64 29 0a 7b 0a 0a 09 2f  |base(void).{.../|
000025a0  2a 20 49 6e 69 74 69 61  6c 6c 79 2c 20 77 65 20  |* Initially, we |
000025b0  6e 65 65 64 20 74 6f 20  73 65 74 20 61 73 69 64  |need to set asid|
000025c0  65 20 6d 65 6d 6f 72 79  20 66 6f 72 20 74 68 65  |e memory for the|
000025d0  20 27 72 6f 6f 74 27 20  73 74 72 75 63 74 75 72  | 'root' structur|
000025e0  65 20 2a 2f 0a 0a 09 6a  6d 70 5f 64 61 74 61 5f  |e */...jmp_data_|
000025f0  72 6f 6f 74 20 3d 20 63  61 6c 6c 6f 63 28 31 2c  |root = calloc(1,|
00002600  20 73 69 7a 65 6f 66 28  6a 75 6d 70 5f 64 61 74  | sizeof(jump_dat|
00002610  61 29 29 3b 0a 09 2f 2a  20 49 6e 69 74 69 61 6c  |a));../* Initial|
00002620  69 73 65 20 70 6f 69 6e  74 65 72 73 20 2a 2f 0a  |ise pointers */.|
00002630  09 6a 6d 70 5f 64 61 74  61 5f 72 6f 6f 74 2d 3e  |.jmp_data_root->|
00002640  70 72 65 76 5f 72 65 63  6f 72 64 20 3d 20 6a 6d  |prev_record = jm|
00002650  70 5f 64 61 74 61 5f 72  6f 6f 74 2d 3e 6e 65 78  |p_data_root->nex|
00002660  74 5f 72 65 63 6f 72 64  20 3d 20 4e 55 4c 4c 3b  |t_record = NULL;|
00002670  0a 09 6a 6d 70 5f 64 61  74 61 5f 72 6f 6f 74 2d  |..jmp_data_root-|
00002680  3e 6a 75 6d 70 5f 6e 6f  20 3d 20 31 3b 0a 09 43  |>jump_no = 1;..C|
00002690  55 52 52 45 4e 54 5f 52  45 43 4f 52 44 5f 50 4f  |URRENT_RECORD_PO|
000026a0  49 4e 54 45 52 20 3d 20  6a 6d 70 5f 64 61 74 61  |INTER = jmp_data|
000026b0  5f 72 6f 6f 74 3b 0a 7d  0a                       |_root;.}.|
000026b9