Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199607.adf » Regulars » Wimp_C/!NewWimpC/c/AULib

Wimp_C/!NewWimpC/c/AULib

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_199607.adf » Regulars
Filename: Wimp_C/!NewWimpC/c/AULib
Read OK:
File size: 26CC bytes
Load address: 0000
Exec address: 0000
File contents
/* Acorn User library for WIMP programming in C */
/* By Steve Mumford, 14th April 1996 */

/* #Include the appropriate files - AULib.h contains everything we need */ 

#include "AUlib.h"

int
au_initialise(int v_number, char *appname, long int msglist[])
{
	_kernel_swi_regs	regs_in, regs_out;

	regs_in.r[0] = v_number;
	regs_in.r[1] = *(int *)"TASK";
	regs_in.r[2] = (int) appname;
	regs_in.r[3] = (int) msglist;

	_kernel_swi(Wimp_Initialise, &regs_in, &regs_out);
	return regs_out.r[1]; /* this is the task handle, returned for later use */
}

void
au_closedown(int taskhandle)
{
	_kernel_swi_regs	regs_in, regs_out;

	regs_in.r[0] = taskhandle;
	regs_in.r[1] = *(int *)"TASK";
	_kernel_swi(Wimp_CloseDown, &regs_in, &regs_out);
}

int
au_create_iconbar_icon(int priority, unsigned long int whichside, unsigned long int iconflags, char *sprname)
{
	_kernel_swi_regs	regs_in, regs_out;
	unsigned char icon_block[ICON_BLOCK_SIZE];
	/* We need to build up an icon information datablock */
	au_wordtobyte(whichside, icon_block, 0);
	au_wordtobyte(IBAR_BBOX_MINX, icon_block, 4);
	au_wordtobyte(IBAR_BBOX_MINY, icon_block, 8);
	au_wordtobyte(IBAR_BBOX_MAXX, icon_block, 12);
	au_wordtobyte(IBAR_BBOX_MAXY, icon_block, 16);
	au_wordtobyte(iconflags, icon_block, 20);

	/* Copy the icon name into the appropriate place */
	strcpy( (char *) &icon_block[24], sprname);
	regs_in.r[0] = priority;
	regs_in.r[1] = (int) icon_block;
	_kernel_swi(Wimp_CreateIcon, &regs_in, &regs_out);
	return regs_out.r[0]; /* Return the icon handle */
}

void
au_wordtobyte(unsigned long int input, unsigned char block[], int index)
{
	unsigned long int mask = 255;

	/* The opposite of btow() - this function takes a 32-bit integer, splits
	 * it up into 4 bytes, and stores those in 4 consecutive cells of a
	 * character array indexed by index. This is done by using a mask to
	 * extract the data in sequence, with the & bitwise-and operator */

	block[index++] = (char) (input & mask); 
	/* shift mask to get second byte, and supply result as byte size */
	mask <<= 8;
	block[index++] = (char) ((input & mask) >> 8);
	mask <<= 8;
	block[index++] = (char) ((input & mask) >> 16);
	mask <<= 8;
	block[index++] = (char) ((input & mask) >> 24);

	return;
}

unsigned long int
au_bytetoword(unsigned char block[], int index)
{
	unsigned long int result = 0;
	int loop;

	/* This routine takes a data block and a starting byte, and converts the
	 * next four bytes into a word - we have to start at the most significant
	 * byte and work backwards */

	index += 3;
	result = block[index--];
	for(loop = 0; loop < 3; loop++) {
		result = result << 8; /* this shifts bits in result left by 8 spaces */
		result += block[index--];
	}

	return result;
}

void
au_opentemplate(char *filename)
{
	_kernel_swi_regs	regs_in, regs_out;
	regs_in.r[1] = (int) filename;
	_kernel_swi(Wimp_OpenTemplate, &regs_in, &regs_out);
}

void
au_closetemplate(void)
{
	_kernel_swi_regs	regs_in, regs_out;
	/* No data needed for CloseTemplate */
	_kernel_swi(Wimp_CloseTemplate, &regs_in, &regs_out);
}

int
au_loadtemplate(char *template_name, window_data *win_data, int call)
{
	_kernel_swi_regs	regs_in, regs_out;
	int	workspace_length = 0;
	int	next_entry;

	/* interrogate file to find out how much space we need */
	regs_in.r[1] = 0; /* tell SWI to find sizes */
	regs_in.r[5] = (int) template_name; /* pass name to SWI */
	regs_in.r[6] = call; /* 0 for first call */

	_kernel_swi(Wimp_LoadTemplate, &regs_in, &regs_out);
	win_data->buffer = calloc(regs_out.r[1], sizeof(unsigned char));
	workspace_length = regs_out.r[2]; /* err on side of caution */
	win_data->workspace = calloc(workspace_length, sizeof(unsigned char));
	win_data->win_name = calloc(strlen( (char *) regs_out.r[5]), sizeof(char));
	strcpy(win_data->win_name, (char *) regs_out.r[5]);

	/* Now reload template from file into memory */
	regs_in.r[1] = (int) win_data->buffer;
	regs_in.r[2] = (int) win_data->workspace;
	regs_in.r[3] = (int) win_data->workspace + workspace_length;
	regs_in.r[4] = -1; /* NO FONTS CATERED FOR IN TEMPLATES YET */
	regs_in.r[5] = (int) win_data->win_name;
	regs_in.r[6] = call;

	_kernel_swi(Wimp_LoadTemplate, &regs_in, &regs_out);
	next_entry = regs_out.r[6];

	/* Create the window, store window handle */
	regs_in.r[1] = (int) win_data->buffer;
	_kernel_swi(Wimp_CreateWindow, &regs_in, &regs_out);
	win_data->win_handle = regs_out.r[0];
	return next_entry; /* in case of wildcarded searches */
}

int
au_report_error(int errno, char *errmess, int flags, char *app_name)
{
   unsigned char errorblock[260];
   _kernel_swi_regs in, out;

   /* Set up the standard error block with the error number and message
      (zero terminated) */
   au_wordtobyte(errno, errorblock, 0);
   strcpy( (char *) &errorblock[4], errmess);

   /* R0 - pointer to standard error block
      R1 - error window flags
      R2 - pointer to application name for error box title */

   in.r[0] = (int) errorblock;
   in.r[1] = flags;
   in.r[2] = (int) app_name;

   _kernel_swi(Wimp_ReportError, &in, &out);

   /* Returns 1 if OK selected, 2 if Cancel selected */
   return out.r[1];
}

void
au_openwin_from_templatedata(window_data *win_data, long int position)
{
	_kernel_swi_regs	regs_in, regs_out;
	unsigned char	openwindow_buffer[36];
	int	i;

	au_wordtobyte( (unsigned long int) win_data->win_handle, openwindow_buffer, 0);
	for(i = 0; i < 6; i++) {
		au_wordtobyte(au_bytetoword(win_data->buffer, i*4), openwindow_buffer, (i+1) * 4);
	}
	au_wordtobyte(position, openwindow_buffer, 28);
	regs_in.r[1] = (int) openwindow_buffer;
	_kernel_swi(Wimp_OpenWindow, &regs_in, &regs_out);
	return;
}

int
au_wimp_poll(int pollmask, unsigned char *pollblock)
{
	_kernel_swi_regs	regs_in, regs_out;

	regs_in.r[0] = pollmask;
	regs_in.r[1] = (int) pollblock;

	_kernel_swi(Wimp_Poll, &regs_in, &regs_out);
	return regs_out.r[0]; /* Return the event code */
}

void
au_icon_text_change(char *text, unsigned long int win_h, unsigned long int icon_h)
{
   _kernel_swi_regs regs_in, regs_out;
   char *text_pointer;
   unsigned char temp_buffer[255];

   /* Find out where the icon's indirected text is stored in memory and copy
      a new string to it */
   text_pointer = au_get_ptr_to_icontext(win_h, icon_h);
   strcpy(text_pointer, text);

   /* Now we need to inform the WIMP that the icon needs redrawing by setting
      the icon flags - we don't actually change them with this call, but this
      spurs the WIMP into action */

   au_wordtobyte(win_h, temp_buffer, 0);
   au_wordtobyte(icon_h, temp_buffer, 4);
   au_wordtobyte(0, temp_buffer, 8);
   au_wordtobyte(0, temp_buffer, 12);

   regs_in.r[1] = (int) temp_buffer;

   _kernel_swi(Wimp_SetIconState, &regs_in, &regs_out);
   return;
}

char *
au_get_ptr_to_icontext(unsigned long int winhdl, unsigned long int iconhdl)
{
   /* This procedure interrogates an icon to determine the address where its
      indirected text data is stored in memory, and returns it */

   unsigned char temp_buffer[255];
   _kernel_swi_regs regs_in, regs_out;
   char *result;

   au_wordtobyte(winhdl, temp_buffer, 0);
   au_wordtobyte(iconhdl, temp_buffer, 4);

   regs_in.r[1] = (int) temp_buffer;
   _kernel_swi(Wimp_GetIconState, &regs_in, &regs_out);

   result = (char *) au_bytetoword(temp_buffer, 28);
   return result;
}

void
au_buildmenu(char *title, menu_data *menu_dat)
{
	if(strlen(title) > 11) return; /* Do this more neatly! */
	/* Fill in the menu header with standard information */
	strcpy(menu_dat->title, title);
	menu_dat->colours = MENU_TITLEFORE | MENU_TITLEBACK | MENU_WORKFORE | MENU_WORKBACK;
	menu_dat->width = MENU_WIDTH;
	menu_dat->height = MENU_HEIGHT;
	menu_dat->vert_gap = MENU_VERTGAP;
	menu_dat->next_menuelem = NULL;
	menu_dat->size = sizeof(menu_data);
	return;
}

void
au_addtomenu(char *text, long int menu_flags, long int submenu, long int icon_flags, menu_data *menu_dat)
{
	menu_element *pointer;

	if(strlen(text) > 11) return;
	/* Work our way to end of menu list */
	if(menu_dat->next_menuelem == NULL) {
		menu_dat->next_menuelem = calloc(1, sizeof(menu_element));
		menu_dat->size += sizeof(menu_element);
		pointer = menu_dat->next_menuelem;
	} else {
		pointer = menu_dat->next_menuelem;
		while (pointer->next_menuelem != 0) {
			pointer = pointer->next_menuelem;
		}
		pointer->next_menuelem = calloc(1, sizeof(menu_element));
		menu_dat->size += sizeof(menu_element);
		pointer = pointer->next_menuelem;
	}
	/* set up data */
	strcpy(pointer->menu_text, text);
	pointer->flags = menu_flags;
	pointer->submenu = submenu;

	/* Apply standard icon flags */
	icon_flags = icon_flags | MENUITEM_FORE | MENUITEM_BACK | ICON_ISTEXT | ICON_ISFILLED;
	pointer->menu_iconflags = icon_flags;
	return;
}

void
au_createmenu(menu_data *menu_dat)
{
	menu_element	*pointer;
	int	i;

	/* Assign memory */
	menu_dat->datablock = calloc(1, menu_dat->size);
	/* Begin copying data */
	strcpy((char *)menu_dat->datablock, menu_dat->title);
	/*au_report_error(1, "bla", 1, "bla");*/
	au_wordtobyte(menu_dat->colours, menu_dat->datablock, 12);
	au_wordtobyte(menu_dat->width, menu_dat->datablock, 16);
	au_wordtobyte(menu_dat->height, menu_dat->datablock, 20);
	au_wordtobyte(menu_dat->vert_gap, menu_dat->datablock, 24);
	/* end of header info */
	i = 28;

	pointer = menu_dat->next_menuelem;

	while(pointer != NULL) {

		au_wordtobyte(pointer->flags, menu_dat->datablock, i);
		i += 4;
		au_wordtobyte(pointer->submenu, menu_dat->datablock, i);
		i += 4;
		au_wordtobyte(pointer->menu_iconflags, menu_dat->datablock, i);
		i += 4;
		strcpy((char *) &menu_dat->datablock[i], pointer->menu_text);
		i += 12;
		pointer = pointer->next_menuelem;
	}
	return;
}

void
au_openmenu(menu_data *menu_dat, int mouse_x, int mouse_y)
{
	_kernel_swi_regs	regs_in, regs_out;

	regs_in.r[1] = (int) menu_dat->datablock;
	regs_in.r[2] = mouse_x;
	regs_in.r[3] = mouse_y;
	_kernel_swi(Wimp_CreateMenu, &regs_in, &regs_out);
	return;
}
00000000  2f 2a 20 41 63 6f 72 6e  20 55 73 65 72 20 6c 69  |/* Acorn User li|
00000010  62 72 61 72 79 20 66 6f  72 20 57 49 4d 50 20 70  |brary for WIMP p|
00000020  72 6f 67 72 61 6d 6d 69  6e 67 20 69 6e 20 43 20  |rogramming in C |
00000030  2a 2f 0a 2f 2a 20 42 79  20 53 74 65 76 65 20 4d  |*/./* By Steve M|
00000040  75 6d 66 6f 72 64 2c 20  31 34 74 68 20 41 70 72  |umford, 14th Apr|
00000050  69 6c 20 31 39 39 36 20  2a 2f 0a 0a 2f 2a 20 23  |il 1996 */../* #|
00000060  49 6e 63 6c 75 64 65 20  74 68 65 20 61 70 70 72  |Include the appr|
00000070  6f 70 72 69 61 74 65 20  66 69 6c 65 73 20 2d 20  |opriate files - |
00000080  41 55 4c 69 62 2e 68 20  63 6f 6e 74 61 69 6e 73  |AULib.h contains|
00000090  20 65 76 65 72 79 74 68  69 6e 67 20 77 65 20 6e  | everything we n|
000000a0  65 65 64 20 2a 2f 20 0a  0a 23 69 6e 63 6c 75 64  |eed */ ..#includ|
000000b0  65 20 22 41 55 6c 69 62  2e 68 22 0a 0a 69 6e 74  |e "AUlib.h"..int|
000000c0  0a 61 75 5f 69 6e 69 74  69 61 6c 69 73 65 28 69  |.au_initialise(i|
000000d0  6e 74 20 76 5f 6e 75 6d  62 65 72 2c 20 63 68 61  |nt v_number, cha|
000000e0  72 20 2a 61 70 70 6e 61  6d 65 2c 20 6c 6f 6e 67  |r *appname, long|
000000f0  20 69 6e 74 20 6d 73 67  6c 69 73 74 5b 5d 29 0a  | int msglist[]).|
00000100  7b 0a 09 5f 6b 65 72 6e  65 6c 5f 73 77 69 5f 72  |{.._kernel_swi_r|
00000110  65 67 73 09 72 65 67 73  5f 69 6e 2c 20 72 65 67  |egs.regs_in, reg|
00000120  73 5f 6f 75 74 3b 0a 0a  09 72 65 67 73 5f 69 6e  |s_out;...regs_in|
00000130  2e 72 5b 30 5d 20 3d 20  76 5f 6e 75 6d 62 65 72  |.r[0] = v_number|
00000140  3b 0a 09 72 65 67 73 5f  69 6e 2e 72 5b 31 5d 20  |;..regs_in.r[1] |
00000150  3d 20 2a 28 69 6e 74 20  2a 29 22 54 41 53 4b 22  |= *(int *)"TASK"|
00000160  3b 0a 09 72 65 67 73 5f  69 6e 2e 72 5b 32 5d 20  |;..regs_in.r[2] |
00000170  3d 20 28 69 6e 74 29 20  61 70 70 6e 61 6d 65 3b  |= (int) appname;|
00000180  0a 09 72 65 67 73 5f 69  6e 2e 72 5b 33 5d 20 3d  |..regs_in.r[3] =|
00000190  20 28 69 6e 74 29 20 6d  73 67 6c 69 73 74 3b 0a  | (int) msglist;.|
000001a0  0a 09 5f 6b 65 72 6e 65  6c 5f 73 77 69 28 57 69  |.._kernel_swi(Wi|
000001b0  6d 70 5f 49 6e 69 74 69  61 6c 69 73 65 2c 20 26  |mp_Initialise, &|
000001c0  72 65 67 73 5f 69 6e 2c  20 26 72 65 67 73 5f 6f  |regs_in, &regs_o|
000001d0  75 74 29 3b 0a 09 72 65  74 75 72 6e 20 72 65 67  |ut);..return reg|
000001e0  73 5f 6f 75 74 2e 72 5b  31 5d 3b 20 2f 2a 20 74  |s_out.r[1]; /* t|
000001f0  68 69 73 20 69 73 20 74  68 65 20 74 61 73 6b 20  |his is the task |
00000200  68 61 6e 64 6c 65 2c 20  72 65 74 75 72 6e 65 64  |handle, returned|
00000210  20 66 6f 72 20 6c 61 74  65 72 20 75 73 65 20 2a  | for later use *|
00000220  2f 0a 7d 0a 0a 76 6f 69  64 0a 61 75 5f 63 6c 6f  |/.}..void.au_clo|
00000230  73 65 64 6f 77 6e 28 69  6e 74 20 74 61 73 6b 68  |sedown(int taskh|
00000240  61 6e 64 6c 65 29 0a 7b  0a 09 5f 6b 65 72 6e 65  |andle).{.._kerne|
00000250  6c 5f 73 77 69 5f 72 65  67 73 09 72 65 67 73 5f  |l_swi_regs.regs_|
00000260  69 6e 2c 20 72 65 67 73  5f 6f 75 74 3b 0a 0a 09  |in, regs_out;...|
00000270  72 65 67 73 5f 69 6e 2e  72 5b 30 5d 20 3d 20 74  |regs_in.r[0] = t|
00000280  61 73 6b 68 61 6e 64 6c  65 3b 0a 09 72 65 67 73  |askhandle;..regs|
00000290  5f 69 6e 2e 72 5b 31 5d  20 3d 20 2a 28 69 6e 74  |_in.r[1] = *(int|
000002a0  20 2a 29 22 54 41 53 4b  22 3b 0a 09 5f 6b 65 72  | *)"TASK";.._ker|
000002b0  6e 65 6c 5f 73 77 69 28  57 69 6d 70 5f 43 6c 6f  |nel_swi(Wimp_Clo|
000002c0  73 65 44 6f 77 6e 2c 20  26 72 65 67 73 5f 69 6e  |seDown, &regs_in|
000002d0  2c 20 26 72 65 67 73 5f  6f 75 74 29 3b 0a 7d 0a  |, &regs_out);.}.|
000002e0  0a 69 6e 74 0a 61 75 5f  63 72 65 61 74 65 5f 69  |.int.au_create_i|
000002f0  63 6f 6e 62 61 72 5f 69  63 6f 6e 28 69 6e 74 20  |conbar_icon(int |
00000300  70 72 69 6f 72 69 74 79  2c 20 75 6e 73 69 67 6e  |priority, unsign|
00000310  65 64 20 6c 6f 6e 67 20  69 6e 74 20 77 68 69 63  |ed long int whic|
00000320  68 73 69 64 65 2c 20 75  6e 73 69 67 6e 65 64 20  |hside, unsigned |
00000330  6c 6f 6e 67 20 69 6e 74  20 69 63 6f 6e 66 6c 61  |long int iconfla|
00000340  67 73 2c 20 63 68 61 72  20 2a 73 70 72 6e 61 6d  |gs, char *sprnam|
00000350  65 29 0a 7b 0a 09 5f 6b  65 72 6e 65 6c 5f 73 77  |e).{.._kernel_sw|
00000360  69 5f 72 65 67 73 09 72  65 67 73 5f 69 6e 2c 20  |i_regs.regs_in, |
00000370  72 65 67 73 5f 6f 75 74  3b 0a 09 75 6e 73 69 67  |regs_out;..unsig|
00000380  6e 65 64 20 63 68 61 72  20 69 63 6f 6e 5f 62 6c  |ned char icon_bl|
00000390  6f 63 6b 5b 49 43 4f 4e  5f 42 4c 4f 43 4b 5f 53  |ock[ICON_BLOCK_S|
000003a0  49 5a 45 5d 3b 0a 09 2f  2a 20 57 65 20 6e 65 65  |IZE];../* We nee|
000003b0  64 20 74 6f 20 62 75 69  6c 64 20 75 70 20 61 6e  |d to build up an|
000003c0  20 69 63 6f 6e 20 69 6e  66 6f 72 6d 61 74 69 6f  | icon informatio|
000003d0  6e 20 64 61 74 61 62 6c  6f 63 6b 20 2a 2f 0a 09  |n datablock */..|
000003e0  61 75 5f 77 6f 72 64 74  6f 62 79 74 65 28 77 68  |au_wordtobyte(wh|
000003f0  69 63 68 73 69 64 65 2c  20 69 63 6f 6e 5f 62 6c  |ichside, icon_bl|
00000400  6f 63 6b 2c 20 30 29 3b  0a 09 61 75 5f 77 6f 72  |ock, 0);..au_wor|
00000410  64 74 6f 62 79 74 65 28  49 42 41 52 5f 42 42 4f  |dtobyte(IBAR_BBO|
00000420  58 5f 4d 49 4e 58 2c 20  69 63 6f 6e 5f 62 6c 6f  |X_MINX, icon_blo|
00000430  63 6b 2c 20 34 29 3b 0a  09 61 75 5f 77 6f 72 64  |ck, 4);..au_word|
00000440  74 6f 62 79 74 65 28 49  42 41 52 5f 42 42 4f 58  |tobyte(IBAR_BBOX|
00000450  5f 4d 49 4e 59 2c 20 69  63 6f 6e 5f 62 6c 6f 63  |_MINY, icon_bloc|
00000460  6b 2c 20 38 29 3b 0a 09  61 75 5f 77 6f 72 64 74  |k, 8);..au_wordt|
00000470  6f 62 79 74 65 28 49 42  41 52 5f 42 42 4f 58 5f  |obyte(IBAR_BBOX_|
00000480  4d 41 58 58 2c 20 69 63  6f 6e 5f 62 6c 6f 63 6b  |MAXX, icon_block|
00000490  2c 20 31 32 29 3b 0a 09  61 75 5f 77 6f 72 64 74  |, 12);..au_wordt|
000004a0  6f 62 79 74 65 28 49 42  41 52 5f 42 42 4f 58 5f  |obyte(IBAR_BBOX_|
000004b0  4d 41 58 59 2c 20 69 63  6f 6e 5f 62 6c 6f 63 6b  |MAXY, icon_block|
000004c0  2c 20 31 36 29 3b 0a 09  61 75 5f 77 6f 72 64 74  |, 16);..au_wordt|
000004d0  6f 62 79 74 65 28 69 63  6f 6e 66 6c 61 67 73 2c  |obyte(iconflags,|
000004e0  20 69 63 6f 6e 5f 62 6c  6f 63 6b 2c 20 32 30 29  | icon_block, 20)|
000004f0  3b 0a 0a 09 2f 2a 20 43  6f 70 79 20 74 68 65 20  |;.../* Copy the |
00000500  69 63 6f 6e 20 6e 61 6d  65 20 69 6e 74 6f 20 74  |icon name into t|
00000510  68 65 20 61 70 70 72 6f  70 72 69 61 74 65 20 70  |he appropriate p|
00000520  6c 61 63 65 20 2a 2f 0a  09 73 74 72 63 70 79 28  |lace */..strcpy(|
00000530  20 28 63 68 61 72 20 2a  29 20 26 69 63 6f 6e 5f  | (char *) &icon_|
00000540  62 6c 6f 63 6b 5b 32 34  5d 2c 20 73 70 72 6e 61  |block[24], sprna|
00000550  6d 65 29 3b 0a 09 72 65  67 73 5f 69 6e 2e 72 5b  |me);..regs_in.r[|
00000560  30 5d 20 3d 20 70 72 69  6f 72 69 74 79 3b 0a 09  |0] = priority;..|
00000570  72 65 67 73 5f 69 6e 2e  72 5b 31 5d 20 3d 20 28  |regs_in.r[1] = (|
00000580  69 6e 74 29 20 69 63 6f  6e 5f 62 6c 6f 63 6b 3b  |int) icon_block;|
00000590  0a 09 5f 6b 65 72 6e 65  6c 5f 73 77 69 28 57 69  |.._kernel_swi(Wi|
000005a0  6d 70 5f 43 72 65 61 74  65 49 63 6f 6e 2c 20 26  |mp_CreateIcon, &|
000005b0  72 65 67 73 5f 69 6e 2c  20 26 72 65 67 73 5f 6f  |regs_in, &regs_o|
000005c0  75 74 29 3b 0a 09 72 65  74 75 72 6e 20 72 65 67  |ut);..return reg|
000005d0  73 5f 6f 75 74 2e 72 5b  30 5d 3b 20 2f 2a 20 52  |s_out.r[0]; /* R|
000005e0  65 74 75 72 6e 20 74 68  65 20 69 63 6f 6e 20 68  |eturn the icon h|
000005f0  61 6e 64 6c 65 20 2a 2f  0a 7d 0a 0a 76 6f 69 64  |andle */.}..void|
00000600  0a 61 75 5f 77 6f 72 64  74 6f 62 79 74 65 28 75  |.au_wordtobyte(u|
00000610  6e 73 69 67 6e 65 64 20  6c 6f 6e 67 20 69 6e 74  |nsigned long int|
00000620  20 69 6e 70 75 74 2c 20  75 6e 73 69 67 6e 65 64  | input, unsigned|
00000630  20 63 68 61 72 20 62 6c  6f 63 6b 5b 5d 2c 20 69  | char block[], i|
00000640  6e 74 20 69 6e 64 65 78  29 0a 7b 0a 09 75 6e 73  |nt index).{..uns|
00000650  69 67 6e 65 64 20 6c 6f  6e 67 20 69 6e 74 20 6d  |igned long int m|
00000660  61 73 6b 20 3d 20 32 35  35 3b 0a 0a 09 2f 2a 20  |ask = 255;.../* |
00000670  54 68 65 20 6f 70 70 6f  73 69 74 65 20 6f 66 20  |The opposite of |
00000680  62 74 6f 77 28 29 20 2d  20 74 68 69 73 20 66 75  |btow() - this fu|
00000690  6e 63 74 69 6f 6e 20 74  61 6b 65 73 20 61 20 33  |nction takes a 3|
000006a0  32 2d 62 69 74 20 69 6e  74 65 67 65 72 2c 20 73  |2-bit integer, s|
000006b0  70 6c 69 74 73 0a 09 20  2a 20 69 74 20 75 70 20  |plits.. * it up |
000006c0  69 6e 74 6f 20 34 20 62  79 74 65 73 2c 20 61 6e  |into 4 bytes, an|
000006d0  64 20 73 74 6f 72 65 73  20 74 68 6f 73 65 20 69  |d stores those i|
000006e0  6e 20 34 20 63 6f 6e 73  65 63 75 74 69 76 65 20  |n 4 consecutive |
000006f0  63 65 6c 6c 73 20 6f 66  20 61 0a 09 20 2a 20 63  |cells of a.. * c|
00000700  68 61 72 61 63 74 65 72  20 61 72 72 61 79 20 69  |haracter array i|
00000710  6e 64 65 78 65 64 20 62  79 20 69 6e 64 65 78 2e  |ndexed by index.|
00000720  20 54 68 69 73 20 69 73  20 64 6f 6e 65 20 62 79  | This is done by|
00000730  20 75 73 69 6e 67 20 61  20 6d 61 73 6b 20 74 6f  | using a mask to|
00000740  0a 09 20 2a 20 65 78 74  72 61 63 74 20 74 68 65  |.. * extract the|
00000750  20 64 61 74 61 20 69 6e  20 73 65 71 75 65 6e 63  | data in sequenc|
00000760  65 2c 20 77 69 74 68 20  74 68 65 20 26 20 62 69  |e, with the & bi|
00000770  74 77 69 73 65 2d 61 6e  64 20 6f 70 65 72 61 74  |twise-and operat|
00000780  6f 72 20 2a 2f 0a 0a 09  62 6c 6f 63 6b 5b 69 6e  |or */...block[in|
00000790  64 65 78 2b 2b 5d 20 3d  20 28 63 68 61 72 29 20  |dex++] = (char) |
000007a0  28 69 6e 70 75 74 20 26  20 6d 61 73 6b 29 3b 20  |(input & mask); |
000007b0  0a 09 2f 2a 20 73 68 69  66 74 20 6d 61 73 6b 20  |../* shift mask |
000007c0  74 6f 20 67 65 74 20 73  65 63 6f 6e 64 20 62 79  |to get second by|
000007d0  74 65 2c 20 61 6e 64 20  73 75 70 70 6c 79 20 72  |te, and supply r|
000007e0  65 73 75 6c 74 20 61 73  20 62 79 74 65 20 73 69  |esult as byte si|
000007f0  7a 65 20 2a 2f 0a 09 6d  61 73 6b 20 3c 3c 3d 20  |ze */..mask <<= |
00000800  38 3b 0a 09 62 6c 6f 63  6b 5b 69 6e 64 65 78 2b  |8;..block[index+|
00000810  2b 5d 20 3d 20 28 63 68  61 72 29 20 28 28 69 6e  |+] = (char) ((in|
00000820  70 75 74 20 26 20 6d 61  73 6b 29 20 3e 3e 20 38  |put & mask) >> 8|
00000830  29 3b 0a 09 6d 61 73 6b  20 3c 3c 3d 20 38 3b 0a  |);..mask <<= 8;.|
00000840  09 62 6c 6f 63 6b 5b 69  6e 64 65 78 2b 2b 5d 20  |.block[index++] |
00000850  3d 20 28 63 68 61 72 29  20 28 28 69 6e 70 75 74  |= (char) ((input|
00000860  20 26 20 6d 61 73 6b 29  20 3e 3e 20 31 36 29 3b  | & mask) >> 16);|
00000870  0a 09 6d 61 73 6b 20 3c  3c 3d 20 38 3b 0a 09 62  |..mask <<= 8;..b|
00000880  6c 6f 63 6b 5b 69 6e 64  65 78 2b 2b 5d 20 3d 20  |lock[index++] = |
00000890  28 63 68 61 72 29 20 28  28 69 6e 70 75 74 20 26  |(char) ((input &|
000008a0  20 6d 61 73 6b 29 20 3e  3e 20 32 34 29 3b 0a 0a  | mask) >> 24);..|
000008b0  09 72 65 74 75 72 6e 3b  0a 7d 0a 0a 75 6e 73 69  |.return;.}..unsi|
000008c0  67 6e 65 64 20 6c 6f 6e  67 20 69 6e 74 0a 61 75  |gned long int.au|
000008d0  5f 62 79 74 65 74 6f 77  6f 72 64 28 75 6e 73 69  |_bytetoword(unsi|
000008e0  67 6e 65 64 20 63 68 61  72 20 62 6c 6f 63 6b 5b  |gned char block[|
000008f0  5d 2c 20 69 6e 74 20 69  6e 64 65 78 29 0a 7b 0a  |], int index).{.|
00000900  09 75 6e 73 69 67 6e 65  64 20 6c 6f 6e 67 20 69  |.unsigned long i|
00000910  6e 74 20 72 65 73 75 6c  74 20 3d 20 30 3b 0a 09  |nt result = 0;..|
00000920  69 6e 74 20 6c 6f 6f 70  3b 0a 0a 09 2f 2a 20 54  |int loop;.../* T|
00000930  68 69 73 20 72 6f 75 74  69 6e 65 20 74 61 6b 65  |his routine take|
00000940  73 20 61 20 64 61 74 61  20 62 6c 6f 63 6b 20 61  |s a data block a|
00000950  6e 64 20 61 20 73 74 61  72 74 69 6e 67 20 62 79  |nd a starting by|
00000960  74 65 2c 20 61 6e 64 20  63 6f 6e 76 65 72 74 73  |te, and converts|
00000970  20 74 68 65 0a 09 20 2a  20 6e 65 78 74 20 66 6f  | the.. * next fo|
00000980  75 72 20 62 79 74 65 73  20 69 6e 74 6f 20 61 20  |ur bytes into a |
00000990  77 6f 72 64 20 2d 20 77  65 20 68 61 76 65 20 74  |word - we have t|
000009a0  6f 20 73 74 61 72 74 20  61 74 20 74 68 65 20 6d  |o start at the m|
000009b0  6f 73 74 20 73 69 67 6e  69 66 69 63 61 6e 74 0a  |ost significant.|
000009c0  09 20 2a 20 62 79 74 65  20 61 6e 64 20 77 6f 72  |. * byte and wor|
000009d0  6b 20 62 61 63 6b 77 61  72 64 73 20 2a 2f 0a 0a  |k backwards */..|
000009e0  09 69 6e 64 65 78 20 2b  3d 20 33 3b 0a 09 72 65  |.index += 3;..re|
000009f0  73 75 6c 74 20 3d 20 62  6c 6f 63 6b 5b 69 6e 64  |sult = block[ind|
00000a00  65 78 2d 2d 5d 3b 0a 09  66 6f 72 28 6c 6f 6f 70  |ex--];..for(loop|
00000a10  20 3d 20 30 3b 20 6c 6f  6f 70 20 3c 20 33 3b 20  | = 0; loop < 3; |
00000a20  6c 6f 6f 70 2b 2b 29 20  7b 0a 09 09 72 65 73 75  |loop++) {...resu|
00000a30  6c 74 20 3d 20 72 65 73  75 6c 74 20 3c 3c 20 38  |lt = result << 8|
00000a40  3b 20 2f 2a 20 74 68 69  73 20 73 68 69 66 74 73  |; /* this shifts|
00000a50  20 62 69 74 73 20 69 6e  20 72 65 73 75 6c 74 20  | bits in result |
00000a60  6c 65 66 74 20 62 79 20  38 20 73 70 61 63 65 73  |left by 8 spaces|
00000a70  20 2a 2f 0a 09 09 72 65  73 75 6c 74 20 2b 3d 20  | */...result += |
00000a80  62 6c 6f 63 6b 5b 69 6e  64 65 78 2d 2d 5d 3b 0a  |block[index--];.|
00000a90  09 7d 0a 0a 09 72 65 74  75 72 6e 20 72 65 73 75  |.}...return resu|
00000aa0  6c 74 3b 0a 7d 0a 0a 76  6f 69 64 0a 61 75 5f 6f  |lt;.}..void.au_o|
00000ab0  70 65 6e 74 65 6d 70 6c  61 74 65 28 63 68 61 72  |pentemplate(char|
00000ac0  20 2a 66 69 6c 65 6e 61  6d 65 29 0a 7b 0a 09 5f  | *filename).{.._|
00000ad0  6b 65 72 6e 65 6c 5f 73  77 69 5f 72 65 67 73 09  |kernel_swi_regs.|
00000ae0  72 65 67 73 5f 69 6e 2c  20 72 65 67 73 5f 6f 75  |regs_in, regs_ou|
00000af0  74 3b 0a 09 72 65 67 73  5f 69 6e 2e 72 5b 31 5d  |t;..regs_in.r[1]|
00000b00  20 3d 20 28 69 6e 74 29  20 66 69 6c 65 6e 61 6d  | = (int) filenam|
00000b10  65 3b 0a 09 5f 6b 65 72  6e 65 6c 5f 73 77 69 28  |e;.._kernel_swi(|
00000b20  57 69 6d 70 5f 4f 70 65  6e 54 65 6d 70 6c 61 74  |Wimp_OpenTemplat|
00000b30  65 2c 20 26 72 65 67 73  5f 69 6e 2c 20 26 72 65  |e, &regs_in, &re|
00000b40  67 73 5f 6f 75 74 29 3b  0a 7d 0a 0a 76 6f 69 64  |gs_out);.}..void|
00000b50  0a 61 75 5f 63 6c 6f 73  65 74 65 6d 70 6c 61 74  |.au_closetemplat|
00000b60  65 28 76 6f 69 64 29 0a  7b 0a 09 5f 6b 65 72 6e  |e(void).{.._kern|
00000b70  65 6c 5f 73 77 69 5f 72  65 67 73 09 72 65 67 73  |el_swi_regs.regs|
00000b80  5f 69 6e 2c 20 72 65 67  73 5f 6f 75 74 3b 0a 09  |_in, regs_out;..|
00000b90  2f 2a 20 4e 6f 20 64 61  74 61 20 6e 65 65 64 65  |/* No data neede|
00000ba0  64 20 66 6f 72 20 43 6c  6f 73 65 54 65 6d 70 6c  |d for CloseTempl|
00000bb0  61 74 65 20 2a 2f 0a 09  5f 6b 65 72 6e 65 6c 5f  |ate */.._kernel_|
00000bc0  73 77 69 28 57 69 6d 70  5f 43 6c 6f 73 65 54 65  |swi(Wimp_CloseTe|
00000bd0  6d 70 6c 61 74 65 2c 20  26 72 65 67 73 5f 69 6e  |mplate, &regs_in|
00000be0  2c 20 26 72 65 67 73 5f  6f 75 74 29 3b 0a 7d 0a  |, &regs_out);.}.|
00000bf0  0a 69 6e 74 0a 61 75 5f  6c 6f 61 64 74 65 6d 70  |.int.au_loadtemp|
00000c00  6c 61 74 65 28 63 68 61  72 20 2a 74 65 6d 70 6c  |late(char *templ|
00000c10  61 74 65 5f 6e 61 6d 65  2c 20 77 69 6e 64 6f 77  |ate_name, window|
00000c20  5f 64 61 74 61 20 2a 77  69 6e 5f 64 61 74 61 2c  |_data *win_data,|
00000c30  20 69 6e 74 20 63 61 6c  6c 29 0a 7b 0a 09 5f 6b  | int call).{.._k|
00000c40  65 72 6e 65 6c 5f 73 77  69 5f 72 65 67 73 09 72  |ernel_swi_regs.r|
00000c50  65 67 73 5f 69 6e 2c 20  72 65 67 73 5f 6f 75 74  |egs_in, regs_out|
00000c60  3b 0a 09 69 6e 74 09 77  6f 72 6b 73 70 61 63 65  |;..int.workspace|
00000c70  5f 6c 65 6e 67 74 68 20  3d 20 30 3b 0a 09 69 6e  |_length = 0;..in|
00000c80  74 09 6e 65 78 74 5f 65  6e 74 72 79 3b 0a 0a 09  |t.next_entry;...|
00000c90  2f 2a 20 69 6e 74 65 72  72 6f 67 61 74 65 20 66  |/* interrogate f|
00000ca0  69 6c 65 20 74 6f 20 66  69 6e 64 20 6f 75 74 20  |ile to find out |
00000cb0  68 6f 77 20 6d 75 63 68  20 73 70 61 63 65 20 77  |how much space w|
00000cc0  65 20 6e 65 65 64 20 2a  2f 0a 09 72 65 67 73 5f  |e need */..regs_|
00000cd0  69 6e 2e 72 5b 31 5d 20  3d 20 30 3b 20 2f 2a 20  |in.r[1] = 0; /* |
00000ce0  74 65 6c 6c 20 53 57 49  20 74 6f 20 66 69 6e 64  |tell SWI to find|
00000cf0  20 73 69 7a 65 73 20 2a  2f 0a 09 72 65 67 73 5f  | sizes */..regs_|
00000d00  69 6e 2e 72 5b 35 5d 20  3d 20 28 69 6e 74 29 20  |in.r[5] = (int) |
00000d10  74 65 6d 70 6c 61 74 65  5f 6e 61 6d 65 3b 20 2f  |template_name; /|
00000d20  2a 20 70 61 73 73 20 6e  61 6d 65 20 74 6f 20 53  |* pass name to S|
00000d30  57 49 20 2a 2f 0a 09 72  65 67 73 5f 69 6e 2e 72  |WI */..regs_in.r|
00000d40  5b 36 5d 20 3d 20 63 61  6c 6c 3b 20 2f 2a 20 30  |[6] = call; /* 0|
00000d50  20 66 6f 72 20 66 69 72  73 74 20 63 61 6c 6c 20  | for first call |
00000d60  2a 2f 0a 0a 09 5f 6b 65  72 6e 65 6c 5f 73 77 69  |*/..._kernel_swi|
00000d70  28 57 69 6d 70 5f 4c 6f  61 64 54 65 6d 70 6c 61  |(Wimp_LoadTempla|
00000d80  74 65 2c 20 26 72 65 67  73 5f 69 6e 2c 20 26 72  |te, &regs_in, &r|
00000d90  65 67 73 5f 6f 75 74 29  3b 0a 09 77 69 6e 5f 64  |egs_out);..win_d|
00000da0  61 74 61 2d 3e 62 75 66  66 65 72 20 3d 20 63 61  |ata->buffer = ca|
00000db0  6c 6c 6f 63 28 72 65 67  73 5f 6f 75 74 2e 72 5b  |lloc(regs_out.r[|
00000dc0  31 5d 2c 20 73 69 7a 65  6f 66 28 75 6e 73 69 67  |1], sizeof(unsig|
00000dd0  6e 65 64 20 63 68 61 72  29 29 3b 0a 09 77 6f 72  |ned char));..wor|
00000de0  6b 73 70 61 63 65 5f 6c  65 6e 67 74 68 20 3d 20  |kspace_length = |
00000df0  72 65 67 73 5f 6f 75 74  2e 72 5b 32 5d 3b 20 2f  |regs_out.r[2]; /|
00000e00  2a 20 65 72 72 20 6f 6e  20 73 69 64 65 20 6f 66  |* err on side of|
00000e10  20 63 61 75 74 69 6f 6e  20 2a 2f 0a 09 77 69 6e  | caution */..win|
00000e20  5f 64 61 74 61 2d 3e 77  6f 72 6b 73 70 61 63 65  |_data->workspace|
00000e30  20 3d 20 63 61 6c 6c 6f  63 28 77 6f 72 6b 73 70  | = calloc(worksp|
00000e40  61 63 65 5f 6c 65 6e 67  74 68 2c 20 73 69 7a 65  |ace_length, size|
00000e50  6f 66 28 75 6e 73 69 67  6e 65 64 20 63 68 61 72  |of(unsigned char|
00000e60  29 29 3b 0a 09 77 69 6e  5f 64 61 74 61 2d 3e 77  |));..win_data->w|
00000e70  69 6e 5f 6e 61 6d 65 20  3d 20 63 61 6c 6c 6f 63  |in_name = calloc|
00000e80  28 73 74 72 6c 65 6e 28  20 28 63 68 61 72 20 2a  |(strlen( (char *|
00000e90  29 20 72 65 67 73 5f 6f  75 74 2e 72 5b 35 5d 29  |) regs_out.r[5])|
00000ea0  2c 20 73 69 7a 65 6f 66  28 63 68 61 72 29 29 3b  |, sizeof(char));|
00000eb0  0a 09 73 74 72 63 70 79  28 77 69 6e 5f 64 61 74  |..strcpy(win_dat|
00000ec0  61 2d 3e 77 69 6e 5f 6e  61 6d 65 2c 20 28 63 68  |a->win_name, (ch|
00000ed0  61 72 20 2a 29 20 72 65  67 73 5f 6f 75 74 2e 72  |ar *) regs_out.r|
00000ee0  5b 35 5d 29 3b 0a 0a 09  2f 2a 20 4e 6f 77 20 72  |[5]);.../* Now r|
00000ef0  65 6c 6f 61 64 20 74 65  6d 70 6c 61 74 65 20 66  |eload template f|
00000f00  72 6f 6d 20 66 69 6c 65  20 69 6e 74 6f 20 6d 65  |rom file into me|
00000f10  6d 6f 72 79 20 2a 2f 0a  09 72 65 67 73 5f 69 6e  |mory */..regs_in|
00000f20  2e 72 5b 31 5d 20 3d 20  28 69 6e 74 29 20 77 69  |.r[1] = (int) wi|
00000f30  6e 5f 64 61 74 61 2d 3e  62 75 66 66 65 72 3b 0a  |n_data->buffer;.|
00000f40  09 72 65 67 73 5f 69 6e  2e 72 5b 32 5d 20 3d 20  |.regs_in.r[2] = |
00000f50  28 69 6e 74 29 20 77 69  6e 5f 64 61 74 61 2d 3e  |(int) win_data->|
00000f60  77 6f 72 6b 73 70 61 63  65 3b 0a 09 72 65 67 73  |workspace;..regs|
00000f70  5f 69 6e 2e 72 5b 33 5d  20 3d 20 28 69 6e 74 29  |_in.r[3] = (int)|
00000f80  20 77 69 6e 5f 64 61 74  61 2d 3e 77 6f 72 6b 73  | win_data->works|
00000f90  70 61 63 65 20 2b 20 77  6f 72 6b 73 70 61 63 65  |pace + workspace|
00000fa0  5f 6c 65 6e 67 74 68 3b  0a 09 72 65 67 73 5f 69  |_length;..regs_i|
00000fb0  6e 2e 72 5b 34 5d 20 3d  20 2d 31 3b 20 2f 2a 20  |n.r[4] = -1; /* |
00000fc0  4e 4f 20 46 4f 4e 54 53  20 43 41 54 45 52 45 44  |NO FONTS CATERED|
00000fd0  20 46 4f 52 20 49 4e 20  54 45 4d 50 4c 41 54 45  | FOR IN TEMPLATE|
00000fe0  53 20 59 45 54 20 2a 2f  0a 09 72 65 67 73 5f 69  |S YET */..regs_i|
00000ff0  6e 2e 72 5b 35 5d 20 3d  20 28 69 6e 74 29 20 77  |n.r[5] = (int) w|
00001000  69 6e 5f 64 61 74 61 2d  3e 77 69 6e 5f 6e 61 6d  |in_data->win_nam|
00001010  65 3b 0a 09 72 65 67 73  5f 69 6e 2e 72 5b 36 5d  |e;..regs_in.r[6]|
00001020  20 3d 20 63 61 6c 6c 3b  0a 0a 09 5f 6b 65 72 6e  | = call;..._kern|
00001030  65 6c 5f 73 77 69 28 57  69 6d 70 5f 4c 6f 61 64  |el_swi(Wimp_Load|
00001040  54 65 6d 70 6c 61 74 65  2c 20 26 72 65 67 73 5f  |Template, &regs_|
00001050  69 6e 2c 20 26 72 65 67  73 5f 6f 75 74 29 3b 0a  |in, &regs_out);.|
00001060  09 6e 65 78 74 5f 65 6e  74 72 79 20 3d 20 72 65  |.next_entry = re|
00001070  67 73 5f 6f 75 74 2e 72  5b 36 5d 3b 0a 0a 09 2f  |gs_out.r[6];.../|
00001080  2a 20 43 72 65 61 74 65  20 74 68 65 20 77 69 6e  |* Create the win|
00001090  64 6f 77 2c 20 73 74 6f  72 65 20 77 69 6e 64 6f  |dow, store windo|
000010a0  77 20 68 61 6e 64 6c 65  20 2a 2f 0a 09 72 65 67  |w handle */..reg|
000010b0  73 5f 69 6e 2e 72 5b 31  5d 20 3d 20 28 69 6e 74  |s_in.r[1] = (int|
000010c0  29 20 77 69 6e 5f 64 61  74 61 2d 3e 62 75 66 66  |) win_data->buff|
000010d0  65 72 3b 0a 09 5f 6b 65  72 6e 65 6c 5f 73 77 69  |er;.._kernel_swi|
000010e0  28 57 69 6d 70 5f 43 72  65 61 74 65 57 69 6e 64  |(Wimp_CreateWind|
000010f0  6f 77 2c 20 26 72 65 67  73 5f 69 6e 2c 20 26 72  |ow, &regs_in, &r|
00001100  65 67 73 5f 6f 75 74 29  3b 0a 09 77 69 6e 5f 64  |egs_out);..win_d|
00001110  61 74 61 2d 3e 77 69 6e  5f 68 61 6e 64 6c 65 20  |ata->win_handle |
00001120  3d 20 72 65 67 73 5f 6f  75 74 2e 72 5b 30 5d 3b  |= regs_out.r[0];|
00001130  0a 09 72 65 74 75 72 6e  20 6e 65 78 74 5f 65 6e  |..return next_en|
00001140  74 72 79 3b 20 2f 2a 20  69 6e 20 63 61 73 65 20  |try; /* in case |
00001150  6f 66 20 77 69 6c 64 63  61 72 64 65 64 20 73 65  |of wildcarded se|
00001160  61 72 63 68 65 73 20 2a  2f 0a 7d 0a 0a 69 6e 74  |arches */.}..int|
00001170  0a 61 75 5f 72 65 70 6f  72 74 5f 65 72 72 6f 72  |.au_report_error|
00001180  28 69 6e 74 20 65 72 72  6e 6f 2c 20 63 68 61 72  |(int errno, char|
00001190  20 2a 65 72 72 6d 65 73  73 2c 20 69 6e 74 20 66  | *errmess, int f|
000011a0  6c 61 67 73 2c 20 63 68  61 72 20 2a 61 70 70 5f  |lags, char *app_|
000011b0  6e 61 6d 65 29 0a 7b 0a  20 20 20 75 6e 73 69 67  |name).{.   unsig|
000011c0  6e 65 64 20 63 68 61 72  20 65 72 72 6f 72 62 6c  |ned char errorbl|
000011d0  6f 63 6b 5b 32 36 30 5d  3b 0a 20 20 20 5f 6b 65  |ock[260];.   _ke|
000011e0  72 6e 65 6c 5f 73 77 69  5f 72 65 67 73 20 69 6e  |rnel_swi_regs in|
000011f0  2c 20 6f 75 74 3b 0a 0a  20 20 20 2f 2a 20 53 65  |, out;..   /* Se|
00001200  74 20 75 70 20 74 68 65  20 73 74 61 6e 64 61 72  |t up the standar|
00001210  64 20 65 72 72 6f 72 20  62 6c 6f 63 6b 20 77 69  |d error block wi|
00001220  74 68 20 74 68 65 20 65  72 72 6f 72 20 6e 75 6d  |th the error num|
00001230  62 65 72 20 61 6e 64 20  6d 65 73 73 61 67 65 0a  |ber and message.|
00001240  20 20 20 20 20 20 28 7a  65 72 6f 20 74 65 72 6d  |      (zero term|
00001250  69 6e 61 74 65 64 29 20  2a 2f 0a 20 20 20 61 75  |inated) */.   au|
00001260  5f 77 6f 72 64 74 6f 62  79 74 65 28 65 72 72 6e  |_wordtobyte(errn|
00001270  6f 2c 20 65 72 72 6f 72  62 6c 6f 63 6b 2c 20 30  |o, errorblock, 0|
00001280  29 3b 0a 20 20 20 73 74  72 63 70 79 28 20 28 63  |);.   strcpy( (c|
00001290  68 61 72 20 2a 29 20 26  65 72 72 6f 72 62 6c 6f  |har *) &errorblo|
000012a0  63 6b 5b 34 5d 2c 20 65  72 72 6d 65 73 73 29 3b  |ck[4], errmess);|
000012b0  0a 0a 20 20 20 2f 2a 20  52 30 20 2d 20 70 6f 69  |..   /* R0 - poi|
000012c0  6e 74 65 72 20 74 6f 20  73 74 61 6e 64 61 72 64  |nter to standard|
000012d0  20 65 72 72 6f 72 20 62  6c 6f 63 6b 0a 20 20 20  | error block.   |
000012e0  20 20 20 52 31 20 2d 20  65 72 72 6f 72 20 77 69  |   R1 - error wi|
000012f0  6e 64 6f 77 20 66 6c 61  67 73 0a 20 20 20 20 20  |ndow flags.     |
00001300  20 52 32 20 2d 20 70 6f  69 6e 74 65 72 20 74 6f  | R2 - pointer to|
00001310  20 61 70 70 6c 69 63 61  74 69 6f 6e 20 6e 61 6d  | application nam|
00001320  65 20 66 6f 72 20 65 72  72 6f 72 20 62 6f 78 20  |e for error box |
00001330  74 69 74 6c 65 20 2a 2f  0a 0a 20 20 20 69 6e 2e  |title */..   in.|
00001340  72 5b 30 5d 20 3d 20 28  69 6e 74 29 20 65 72 72  |r[0] = (int) err|
00001350  6f 72 62 6c 6f 63 6b 3b  0a 20 20 20 69 6e 2e 72  |orblock;.   in.r|
00001360  5b 31 5d 20 3d 20 66 6c  61 67 73 3b 0a 20 20 20  |[1] = flags;.   |
00001370  69 6e 2e 72 5b 32 5d 20  3d 20 28 69 6e 74 29 20  |in.r[2] = (int) |
00001380  61 70 70 5f 6e 61 6d 65  3b 0a 0a 20 20 20 5f 6b  |app_name;..   _k|
00001390  65 72 6e 65 6c 5f 73 77  69 28 57 69 6d 70 5f 52  |ernel_swi(Wimp_R|
000013a0  65 70 6f 72 74 45 72 72  6f 72 2c 20 26 69 6e 2c  |eportError, &in,|
000013b0  20 26 6f 75 74 29 3b 0a  0a 20 20 20 2f 2a 20 52  | &out);..   /* R|
000013c0  65 74 75 72 6e 73 20 31  20 69 66 20 4f 4b 20 73  |eturns 1 if OK s|
000013d0  65 6c 65 63 74 65 64 2c  20 32 20 69 66 20 43 61  |elected, 2 if Ca|
000013e0  6e 63 65 6c 20 73 65 6c  65 63 74 65 64 20 2a 2f  |ncel selected */|
000013f0  0a 20 20 20 72 65 74 75  72 6e 20 6f 75 74 2e 72  |.   return out.r|
00001400  5b 31 5d 3b 0a 7d 0a 0a  76 6f 69 64 0a 61 75 5f  |[1];.}..void.au_|
00001410  6f 70 65 6e 77 69 6e 5f  66 72 6f 6d 5f 74 65 6d  |openwin_from_tem|
00001420  70 6c 61 74 65 64 61 74  61 28 77 69 6e 64 6f 77  |platedata(window|
00001430  5f 64 61 74 61 20 2a 77  69 6e 5f 64 61 74 61 2c  |_data *win_data,|
00001440  20 6c 6f 6e 67 20 69 6e  74 20 70 6f 73 69 74 69  | long int positi|
00001450  6f 6e 29 0a 7b 0a 09 5f  6b 65 72 6e 65 6c 5f 73  |on).{.._kernel_s|
00001460  77 69 5f 72 65 67 73 09  72 65 67 73 5f 69 6e 2c  |wi_regs.regs_in,|
00001470  20 72 65 67 73 5f 6f 75  74 3b 0a 09 75 6e 73 69  | regs_out;..unsi|
00001480  67 6e 65 64 20 63 68 61  72 09 6f 70 65 6e 77 69  |gned char.openwi|
00001490  6e 64 6f 77 5f 62 75 66  66 65 72 5b 33 36 5d 3b  |ndow_buffer[36];|
000014a0  0a 09 69 6e 74 09 69 3b  0a 0a 09 61 75 5f 77 6f  |..int.i;...au_wo|
000014b0  72 64 74 6f 62 79 74 65  28 20 28 75 6e 73 69 67  |rdtobyte( (unsig|
000014c0  6e 65 64 20 6c 6f 6e 67  20 69 6e 74 29 20 77 69  |ned long int) wi|
000014d0  6e 5f 64 61 74 61 2d 3e  77 69 6e 5f 68 61 6e 64  |n_data->win_hand|
000014e0  6c 65 2c 20 6f 70 65 6e  77 69 6e 64 6f 77 5f 62  |le, openwindow_b|
000014f0  75 66 66 65 72 2c 20 30  29 3b 0a 09 66 6f 72 28  |uffer, 0);..for(|
00001500  69 20 3d 20 30 3b 20 69  20 3c 20 36 3b 20 69 2b  |i = 0; i < 6; i+|
00001510  2b 29 20 7b 0a 09 09 61  75 5f 77 6f 72 64 74 6f  |+) {...au_wordto|
00001520  62 79 74 65 28 61 75 5f  62 79 74 65 74 6f 77 6f  |byte(au_bytetowo|
00001530  72 64 28 77 69 6e 5f 64  61 74 61 2d 3e 62 75 66  |rd(win_data->buf|
00001540  66 65 72 2c 20 69 2a 34  29 2c 20 6f 70 65 6e 77  |fer, i*4), openw|
00001550  69 6e 64 6f 77 5f 62 75  66 66 65 72 2c 20 28 69  |indow_buffer, (i|
00001560  2b 31 29 20 2a 20 34 29  3b 0a 09 7d 0a 09 61 75  |+1) * 4);..}..au|
00001570  5f 77 6f 72 64 74 6f 62  79 74 65 28 70 6f 73 69  |_wordtobyte(posi|
00001580  74 69 6f 6e 2c 20 6f 70  65 6e 77 69 6e 64 6f 77  |tion, openwindow|
00001590  5f 62 75 66 66 65 72 2c  20 32 38 29 3b 0a 09 72  |_buffer, 28);..r|
000015a0  65 67 73 5f 69 6e 2e 72  5b 31 5d 20 3d 20 28 69  |egs_in.r[1] = (i|
000015b0  6e 74 29 20 6f 70 65 6e  77 69 6e 64 6f 77 5f 62  |nt) openwindow_b|
000015c0  75 66 66 65 72 3b 0a 09  5f 6b 65 72 6e 65 6c 5f  |uffer;.._kernel_|
000015d0  73 77 69 28 57 69 6d 70  5f 4f 70 65 6e 57 69 6e  |swi(Wimp_OpenWin|
000015e0  64 6f 77 2c 20 26 72 65  67 73 5f 69 6e 2c 20 26  |dow, &regs_in, &|
000015f0  72 65 67 73 5f 6f 75 74  29 3b 0a 09 72 65 74 75  |regs_out);..retu|
00001600  72 6e 3b 0a 7d 0a 0a 69  6e 74 0a 61 75 5f 77 69  |rn;.}..int.au_wi|
00001610  6d 70 5f 70 6f 6c 6c 28  69 6e 74 20 70 6f 6c 6c  |mp_poll(int poll|
00001620  6d 61 73 6b 2c 20 75 6e  73 69 67 6e 65 64 20 63  |mask, unsigned c|
00001630  68 61 72 20 2a 70 6f 6c  6c 62 6c 6f 63 6b 29 0a  |har *pollblock).|
00001640  7b 0a 09 5f 6b 65 72 6e  65 6c 5f 73 77 69 5f 72  |{.._kernel_swi_r|
00001650  65 67 73 09 72 65 67 73  5f 69 6e 2c 20 72 65 67  |egs.regs_in, reg|
00001660  73 5f 6f 75 74 3b 0a 0a  09 72 65 67 73 5f 69 6e  |s_out;...regs_in|
00001670  2e 72 5b 30 5d 20 3d 20  70 6f 6c 6c 6d 61 73 6b  |.r[0] = pollmask|
00001680  3b 0a 09 72 65 67 73 5f  69 6e 2e 72 5b 31 5d 20  |;..regs_in.r[1] |
00001690  3d 20 28 69 6e 74 29 20  70 6f 6c 6c 62 6c 6f 63  |= (int) pollbloc|
000016a0  6b 3b 0a 0a 09 5f 6b 65  72 6e 65 6c 5f 73 77 69  |k;..._kernel_swi|
000016b0  28 57 69 6d 70 5f 50 6f  6c 6c 2c 20 26 72 65 67  |(Wimp_Poll, &reg|
000016c0  73 5f 69 6e 2c 20 26 72  65 67 73 5f 6f 75 74 29  |s_in, &regs_out)|
000016d0  3b 0a 09 72 65 74 75 72  6e 20 72 65 67 73 5f 6f  |;..return regs_o|
000016e0  75 74 2e 72 5b 30 5d 3b  20 2f 2a 20 52 65 74 75  |ut.r[0]; /* Retu|
000016f0  72 6e 20 74 68 65 20 65  76 65 6e 74 20 63 6f 64  |rn the event cod|
00001700  65 20 2a 2f 0a 7d 0a 0a  76 6f 69 64 0a 61 75 5f  |e */.}..void.au_|
00001710  69 63 6f 6e 5f 74 65 78  74 5f 63 68 61 6e 67 65  |icon_text_change|
00001720  28 63 68 61 72 20 2a 74  65 78 74 2c 20 75 6e 73  |(char *text, uns|
00001730  69 67 6e 65 64 20 6c 6f  6e 67 20 69 6e 74 20 77  |igned long int w|
00001740  69 6e 5f 68 2c 20 75 6e  73 69 67 6e 65 64 20 6c  |in_h, unsigned l|
00001750  6f 6e 67 20 69 6e 74 20  69 63 6f 6e 5f 68 29 0a  |ong int icon_h).|
00001760  7b 0a 20 20 20 5f 6b 65  72 6e 65 6c 5f 73 77 69  |{.   _kernel_swi|
00001770  5f 72 65 67 73 20 72 65  67 73 5f 69 6e 2c 20 72  |_regs regs_in, r|
00001780  65 67 73 5f 6f 75 74 3b  0a 20 20 20 63 68 61 72  |egs_out;.   char|
00001790  20 2a 74 65 78 74 5f 70  6f 69 6e 74 65 72 3b 0a  | *text_pointer;.|
000017a0  20 20 20 75 6e 73 69 67  6e 65 64 20 63 68 61 72  |   unsigned char|
000017b0  20 74 65 6d 70 5f 62 75  66 66 65 72 5b 32 35 35  | temp_buffer[255|
000017c0  5d 3b 0a 0a 20 20 20 2f  2a 20 46 69 6e 64 20 6f  |];..   /* Find o|
000017d0  75 74 20 77 68 65 72 65  20 74 68 65 20 69 63 6f  |ut where the ico|
000017e0  6e 27 73 20 69 6e 64 69  72 65 63 74 65 64 20 74  |n's indirected t|
000017f0  65 78 74 20 69 73 20 73  74 6f 72 65 64 20 69 6e  |ext is stored in|
00001800  20 6d 65 6d 6f 72 79 20  61 6e 64 20 63 6f 70 79  | memory and copy|
00001810  0a 20 20 20 20 20 20 61  20 6e 65 77 20 73 74 72  |.      a new str|
00001820  69 6e 67 20 74 6f 20 69  74 20 2a 2f 0a 20 20 20  |ing to it */.   |
00001830  74 65 78 74 5f 70 6f 69  6e 74 65 72 20 3d 20 61  |text_pointer = a|
00001840  75 5f 67 65 74 5f 70 74  72 5f 74 6f 5f 69 63 6f  |u_get_ptr_to_ico|
00001850  6e 74 65 78 74 28 77 69  6e 5f 68 2c 20 69 63 6f  |ntext(win_h, ico|
00001860  6e 5f 68 29 3b 0a 20 20  20 73 74 72 63 70 79 28  |n_h);.   strcpy(|
00001870  74 65 78 74 5f 70 6f 69  6e 74 65 72 2c 20 74 65  |text_pointer, te|
00001880  78 74 29 3b 0a 0a 20 20  20 2f 2a 20 4e 6f 77 20  |xt);..   /* Now |
00001890  77 65 20 6e 65 65 64 20  74 6f 20 69 6e 66 6f 72  |we need to infor|
000018a0  6d 20 74 68 65 20 57 49  4d 50 20 74 68 61 74 20  |m the WIMP that |
000018b0  74 68 65 20 69 63 6f 6e  20 6e 65 65 64 73 20 72  |the icon needs r|
000018c0  65 64 72 61 77 69 6e 67  20 62 79 20 73 65 74 74  |edrawing by sett|
000018d0  69 6e 67 0a 20 20 20 20  20 20 74 68 65 20 69 63  |ing.      the ic|
000018e0  6f 6e 20 66 6c 61 67 73  20 2d 20 77 65 20 64 6f  |on flags - we do|
000018f0  6e 27 74 20 61 63 74 75  61 6c 6c 79 20 63 68 61  |n't actually cha|
00001900  6e 67 65 20 74 68 65 6d  20 77 69 74 68 20 74 68  |nge them with th|
00001910  69 73 20 63 61 6c 6c 2c  20 62 75 74 20 74 68 69  |is call, but thi|
00001920  73 0a 20 20 20 20 20 20  73 70 75 72 73 20 74 68  |s.      spurs th|
00001930  65 20 57 49 4d 50 20 69  6e 74 6f 20 61 63 74 69  |e WIMP into acti|
00001940  6f 6e 20 2a 2f 0a 0a 20  20 20 61 75 5f 77 6f 72  |on */..   au_wor|
00001950  64 74 6f 62 79 74 65 28  77 69 6e 5f 68 2c 20 74  |dtobyte(win_h, t|
00001960  65 6d 70 5f 62 75 66 66  65 72 2c 20 30 29 3b 0a  |emp_buffer, 0);.|
00001970  20 20 20 61 75 5f 77 6f  72 64 74 6f 62 79 74 65  |   au_wordtobyte|
00001980  28 69 63 6f 6e 5f 68 2c  20 74 65 6d 70 5f 62 75  |(icon_h, temp_bu|
00001990  66 66 65 72 2c 20 34 29  3b 0a 20 20 20 61 75 5f  |ffer, 4);.   au_|
000019a0  77 6f 72 64 74 6f 62 79  74 65 28 30 2c 20 74 65  |wordtobyte(0, te|
000019b0  6d 70 5f 62 75 66 66 65  72 2c 20 38 29 3b 0a 20  |mp_buffer, 8);. |
000019c0  20 20 61 75 5f 77 6f 72  64 74 6f 62 79 74 65 28  |  au_wordtobyte(|
000019d0  30 2c 20 74 65 6d 70 5f  62 75 66 66 65 72 2c 20  |0, temp_buffer, |
000019e0  31 32 29 3b 0a 0a 20 20  20 72 65 67 73 5f 69 6e  |12);..   regs_in|
000019f0  2e 72 5b 31 5d 20 3d 20  28 69 6e 74 29 20 74 65  |.r[1] = (int) te|
00001a00  6d 70 5f 62 75 66 66 65  72 3b 0a 0a 20 20 20 5f  |mp_buffer;..   _|
00001a10  6b 65 72 6e 65 6c 5f 73  77 69 28 57 69 6d 70 5f  |kernel_swi(Wimp_|
00001a20  53 65 74 49 63 6f 6e 53  74 61 74 65 2c 20 26 72  |SetIconState, &r|
00001a30  65 67 73 5f 69 6e 2c 20  26 72 65 67 73 5f 6f 75  |egs_in, &regs_ou|
00001a40  74 29 3b 0a 20 20 20 72  65 74 75 72 6e 3b 0a 7d  |t);.   return;.}|
00001a50  0a 0a 63 68 61 72 20 2a  0a 61 75 5f 67 65 74 5f  |..char *.au_get_|
00001a60  70 74 72 5f 74 6f 5f 69  63 6f 6e 74 65 78 74 28  |ptr_to_icontext(|
00001a70  75 6e 73 69 67 6e 65 64  20 6c 6f 6e 67 20 69 6e  |unsigned long in|
00001a80  74 20 77 69 6e 68 64 6c  2c 20 75 6e 73 69 67 6e  |t winhdl, unsign|
00001a90  65 64 20 6c 6f 6e 67 20  69 6e 74 20 69 63 6f 6e  |ed long int icon|
00001aa0  68 64 6c 29 0a 7b 0a 20  20 20 2f 2a 20 54 68 69  |hdl).{.   /* Thi|
00001ab0  73 20 70 72 6f 63 65 64  75 72 65 20 69 6e 74 65  |s procedure inte|
00001ac0  72 72 6f 67 61 74 65 73  20 61 6e 20 69 63 6f 6e  |rrogates an icon|
00001ad0  20 74 6f 20 64 65 74 65  72 6d 69 6e 65 20 74 68  | to determine th|
00001ae0  65 20 61 64 64 72 65 73  73 20 77 68 65 72 65 20  |e address where |
00001af0  69 74 73 0a 20 20 20 20  20 20 69 6e 64 69 72 65  |its.      indire|
00001b00  63 74 65 64 20 74 65 78  74 20 64 61 74 61 20 69  |cted text data i|
00001b10  73 20 73 74 6f 72 65 64  20 69 6e 20 6d 65 6d 6f  |s stored in memo|
00001b20  72 79 2c 20 61 6e 64 20  72 65 74 75 72 6e 73 20  |ry, and returns |
00001b30  69 74 20 2a 2f 0a 0a 20  20 20 75 6e 73 69 67 6e  |it */..   unsign|
00001b40  65 64 20 63 68 61 72 20  74 65 6d 70 5f 62 75 66  |ed char temp_buf|
00001b50  66 65 72 5b 32 35 35 5d  3b 0a 20 20 20 5f 6b 65  |fer[255];.   _ke|
00001b60  72 6e 65 6c 5f 73 77 69  5f 72 65 67 73 20 72 65  |rnel_swi_regs re|
00001b70  67 73 5f 69 6e 2c 20 72  65 67 73 5f 6f 75 74 3b  |gs_in, regs_out;|
00001b80  0a 20 20 20 63 68 61 72  20 2a 72 65 73 75 6c 74  |.   char *result|
00001b90  3b 0a 0a 20 20 20 61 75  5f 77 6f 72 64 74 6f 62  |;..   au_wordtob|
00001ba0  79 74 65 28 77 69 6e 68  64 6c 2c 20 74 65 6d 70  |yte(winhdl, temp|
00001bb0  5f 62 75 66 66 65 72 2c  20 30 29 3b 0a 20 20 20  |_buffer, 0);.   |
00001bc0  61 75 5f 77 6f 72 64 74  6f 62 79 74 65 28 69 63  |au_wordtobyte(ic|
00001bd0  6f 6e 68 64 6c 2c 20 74  65 6d 70 5f 62 75 66 66  |onhdl, temp_buff|
00001be0  65 72 2c 20 34 29 3b 0a  0a 20 20 20 72 65 67 73  |er, 4);..   regs|
00001bf0  5f 69 6e 2e 72 5b 31 5d  20 3d 20 28 69 6e 74 29  |_in.r[1] = (int)|
00001c00  20 74 65 6d 70 5f 62 75  66 66 65 72 3b 0a 20 20  | temp_buffer;.  |
00001c10  20 5f 6b 65 72 6e 65 6c  5f 73 77 69 28 57 69 6d  | _kernel_swi(Wim|
00001c20  70 5f 47 65 74 49 63 6f  6e 53 74 61 74 65 2c 20  |p_GetIconState, |
00001c30  26 72 65 67 73 5f 69 6e  2c 20 26 72 65 67 73 5f  |&regs_in, &regs_|
00001c40  6f 75 74 29 3b 0a 0a 20  20 20 72 65 73 75 6c 74  |out);..   result|
00001c50  20 3d 20 28 63 68 61 72  20 2a 29 20 61 75 5f 62  | = (char *) au_b|
00001c60  79 74 65 74 6f 77 6f 72  64 28 74 65 6d 70 5f 62  |ytetoword(temp_b|
00001c70  75 66 66 65 72 2c 20 32  38 29 3b 0a 20 20 20 72  |uffer, 28);.   r|
00001c80  65 74 75 72 6e 20 72 65  73 75 6c 74 3b 0a 7d 0a  |eturn result;.}.|
00001c90  0a 76 6f 69 64 0a 61 75  5f 62 75 69 6c 64 6d 65  |.void.au_buildme|
00001ca0  6e 75 28 63 68 61 72 20  2a 74 69 74 6c 65 2c 20  |nu(char *title, |
00001cb0  6d 65 6e 75 5f 64 61 74  61 20 2a 6d 65 6e 75 5f  |menu_data *menu_|
00001cc0  64 61 74 29 0a 7b 0a 09  69 66 28 73 74 72 6c 65  |dat).{..if(strle|
00001cd0  6e 28 74 69 74 6c 65 29  20 3e 20 31 31 29 20 72  |n(title) > 11) r|
00001ce0  65 74 75 72 6e 3b 20 2f  2a 20 44 6f 20 74 68 69  |eturn; /* Do thi|
00001cf0  73 20 6d 6f 72 65 20 6e  65 61 74 6c 79 21 20 2a  |s more neatly! *|
00001d00  2f 0a 09 2f 2a 20 46 69  6c 6c 20 69 6e 20 74 68  |/../* Fill in th|
00001d10  65 20 6d 65 6e 75 20 68  65 61 64 65 72 20 77 69  |e menu header wi|
00001d20  74 68 20 73 74 61 6e 64  61 72 64 20 69 6e 66 6f  |th standard info|
00001d30  72 6d 61 74 69 6f 6e 20  2a 2f 0a 09 73 74 72 63  |rmation */..strc|
00001d40  70 79 28 6d 65 6e 75 5f  64 61 74 2d 3e 74 69 74  |py(menu_dat->tit|
00001d50  6c 65 2c 20 74 69 74 6c  65 29 3b 0a 09 6d 65 6e  |le, title);..men|
00001d60  75 5f 64 61 74 2d 3e 63  6f 6c 6f 75 72 73 20 3d  |u_dat->colours =|
00001d70  20 4d 45 4e 55 5f 54 49  54 4c 45 46 4f 52 45 20  | MENU_TITLEFORE |
00001d80  7c 20 4d 45 4e 55 5f 54  49 54 4c 45 42 41 43 4b  || MENU_TITLEBACK|
00001d90  20 7c 20 4d 45 4e 55 5f  57 4f 52 4b 46 4f 52 45  | | MENU_WORKFORE|
00001da0  20 7c 20 4d 45 4e 55 5f  57 4f 52 4b 42 41 43 4b  | | MENU_WORKBACK|
00001db0  3b 0a 09 6d 65 6e 75 5f  64 61 74 2d 3e 77 69 64  |;..menu_dat->wid|
00001dc0  74 68 20 3d 20 4d 45 4e  55 5f 57 49 44 54 48 3b  |th = MENU_WIDTH;|
00001dd0  0a 09 6d 65 6e 75 5f 64  61 74 2d 3e 68 65 69 67  |..menu_dat->heig|
00001de0  68 74 20 3d 20 4d 45 4e  55 5f 48 45 49 47 48 54  |ht = MENU_HEIGHT|
00001df0  3b 0a 09 6d 65 6e 75 5f  64 61 74 2d 3e 76 65 72  |;..menu_dat->ver|
00001e00  74 5f 67 61 70 20 3d 20  4d 45 4e 55 5f 56 45 52  |t_gap = MENU_VER|
00001e10  54 47 41 50 3b 0a 09 6d  65 6e 75 5f 64 61 74 2d  |TGAP;..menu_dat-|
00001e20  3e 6e 65 78 74 5f 6d 65  6e 75 65 6c 65 6d 20 3d  |>next_menuelem =|
00001e30  20 4e 55 4c 4c 3b 0a 09  6d 65 6e 75 5f 64 61 74  | NULL;..menu_dat|
00001e40  2d 3e 73 69 7a 65 20 3d  20 73 69 7a 65 6f 66 28  |->size = sizeof(|
00001e50  6d 65 6e 75 5f 64 61 74  61 29 3b 0a 09 72 65 74  |menu_data);..ret|
00001e60  75 72 6e 3b 0a 7d 0a 0a  76 6f 69 64 0a 61 75 5f  |urn;.}..void.au_|
00001e70  61 64 64 74 6f 6d 65 6e  75 28 63 68 61 72 20 2a  |addtomenu(char *|
00001e80  74 65 78 74 2c 20 6c 6f  6e 67 20 69 6e 74 20 6d  |text, long int m|
00001e90  65 6e 75 5f 66 6c 61 67  73 2c 20 6c 6f 6e 67 20  |enu_flags, long |
00001ea0  69 6e 74 20 73 75 62 6d  65 6e 75 2c 20 6c 6f 6e  |int submenu, lon|
00001eb0  67 20 69 6e 74 20 69 63  6f 6e 5f 66 6c 61 67 73  |g int icon_flags|
00001ec0  2c 20 6d 65 6e 75 5f 64  61 74 61 20 2a 6d 65 6e  |, menu_data *men|
00001ed0  75 5f 64 61 74 29 0a 7b  0a 09 6d 65 6e 75 5f 65  |u_dat).{..menu_e|
00001ee0  6c 65 6d 65 6e 74 20 2a  70 6f 69 6e 74 65 72 3b  |lement *pointer;|
00001ef0  0a 0a 09 69 66 28 73 74  72 6c 65 6e 28 74 65 78  |...if(strlen(tex|
00001f00  74 29 20 3e 20 31 31 29  20 72 65 74 75 72 6e 3b  |t) > 11) return;|
00001f10  0a 09 2f 2a 20 57 6f 72  6b 20 6f 75 72 20 77 61  |../* Work our wa|
00001f20  79 20 74 6f 20 65 6e 64  20 6f 66 20 6d 65 6e 75  |y to end of menu|
00001f30  20 6c 69 73 74 20 2a 2f  0a 09 69 66 28 6d 65 6e  | list */..if(men|
00001f40  75 5f 64 61 74 2d 3e 6e  65 78 74 5f 6d 65 6e 75  |u_dat->next_menu|
00001f50  65 6c 65 6d 20 3d 3d 20  4e 55 4c 4c 29 20 7b 0a  |elem == NULL) {.|
00001f60  09 09 6d 65 6e 75 5f 64  61 74 2d 3e 6e 65 78 74  |..menu_dat->next|
00001f70  5f 6d 65 6e 75 65 6c 65  6d 20 3d 20 63 61 6c 6c  |_menuelem = call|
00001f80  6f 63 28 31 2c 20 73 69  7a 65 6f 66 28 6d 65 6e  |oc(1, sizeof(men|
00001f90  75 5f 65 6c 65 6d 65 6e  74 29 29 3b 0a 09 09 6d  |u_element));...m|
00001fa0  65 6e 75 5f 64 61 74 2d  3e 73 69 7a 65 20 2b 3d  |enu_dat->size +=|
00001fb0  20 73 69 7a 65 6f 66 28  6d 65 6e 75 5f 65 6c 65  | sizeof(menu_ele|
00001fc0  6d 65 6e 74 29 3b 0a 09  09 70 6f 69 6e 74 65 72  |ment);...pointer|
00001fd0  20 3d 20 6d 65 6e 75 5f  64 61 74 2d 3e 6e 65 78  | = menu_dat->nex|
00001fe0  74 5f 6d 65 6e 75 65 6c  65 6d 3b 0a 09 7d 20 65  |t_menuelem;..} e|
00001ff0  6c 73 65 20 7b 0a 09 09  70 6f 69 6e 74 65 72 20  |lse {...pointer |
00002000  3d 20 6d 65 6e 75 5f 64  61 74 2d 3e 6e 65 78 74  |= menu_dat->next|
00002010  5f 6d 65 6e 75 65 6c 65  6d 3b 0a 09 09 77 68 69  |_menuelem;...whi|
00002020  6c 65 20 28 70 6f 69 6e  74 65 72 2d 3e 6e 65 78  |le (pointer->nex|
00002030  74 5f 6d 65 6e 75 65 6c  65 6d 20 21 3d 20 30 29  |t_menuelem != 0)|
00002040  20 7b 0a 09 09 09 70 6f  69 6e 74 65 72 20 3d 20  | {....pointer = |
00002050  70 6f 69 6e 74 65 72 2d  3e 6e 65 78 74 5f 6d 65  |pointer->next_me|
00002060  6e 75 65 6c 65 6d 3b 0a  09 09 7d 0a 09 09 70 6f  |nuelem;...}...po|
00002070  69 6e 74 65 72 2d 3e 6e  65 78 74 5f 6d 65 6e 75  |inter->next_menu|
00002080  65 6c 65 6d 20 3d 20 63  61 6c 6c 6f 63 28 31 2c  |elem = calloc(1,|
00002090  20 73 69 7a 65 6f 66 28  6d 65 6e 75 5f 65 6c 65  | sizeof(menu_ele|
000020a0  6d 65 6e 74 29 29 3b 0a  09 09 6d 65 6e 75 5f 64  |ment));...menu_d|
000020b0  61 74 2d 3e 73 69 7a 65  20 2b 3d 20 73 69 7a 65  |at->size += size|
000020c0  6f 66 28 6d 65 6e 75 5f  65 6c 65 6d 65 6e 74 29  |of(menu_element)|
000020d0  3b 0a 09 09 70 6f 69 6e  74 65 72 20 3d 20 70 6f  |;...pointer = po|
000020e0  69 6e 74 65 72 2d 3e 6e  65 78 74 5f 6d 65 6e 75  |inter->next_menu|
000020f0  65 6c 65 6d 3b 0a 09 7d  0a 09 2f 2a 20 73 65 74  |elem;..}../* set|
00002100  20 75 70 20 64 61 74 61  20 2a 2f 0a 09 73 74 72  | up data */..str|
00002110  63 70 79 28 70 6f 69 6e  74 65 72 2d 3e 6d 65 6e  |cpy(pointer->men|
00002120  75 5f 74 65 78 74 2c 20  74 65 78 74 29 3b 0a 09  |u_text, text);..|
00002130  70 6f 69 6e 74 65 72 2d  3e 66 6c 61 67 73 20 3d  |pointer->flags =|
00002140  20 6d 65 6e 75 5f 66 6c  61 67 73 3b 0a 09 70 6f  | menu_flags;..po|
00002150  69 6e 74 65 72 2d 3e 73  75 62 6d 65 6e 75 20 3d  |inter->submenu =|
00002160  20 73 75 62 6d 65 6e 75  3b 0a 0a 09 2f 2a 20 41  | submenu;.../* A|
00002170  70 70 6c 79 20 73 74 61  6e 64 61 72 64 20 69 63  |pply standard ic|
00002180  6f 6e 20 66 6c 61 67 73  20 2a 2f 0a 09 69 63 6f  |on flags */..ico|
00002190  6e 5f 66 6c 61 67 73 20  3d 20 69 63 6f 6e 5f 66  |n_flags = icon_f|
000021a0  6c 61 67 73 20 7c 20 4d  45 4e 55 49 54 45 4d 5f  |lags | MENUITEM_|
000021b0  46 4f 52 45 20 7c 20 4d  45 4e 55 49 54 45 4d 5f  |FORE | MENUITEM_|
000021c0  42 41 43 4b 20 7c 20 49  43 4f 4e 5f 49 53 54 45  |BACK | ICON_ISTE|
000021d0  58 54 20 7c 20 49 43 4f  4e 5f 49 53 46 49 4c 4c  |XT | ICON_ISFILL|
000021e0  45 44 3b 0a 09 70 6f 69  6e 74 65 72 2d 3e 6d 65  |ED;..pointer->me|
000021f0  6e 75 5f 69 63 6f 6e 66  6c 61 67 73 20 3d 20 69  |nu_iconflags = i|
00002200  63 6f 6e 5f 66 6c 61 67  73 3b 0a 09 72 65 74 75  |con_flags;..retu|
00002210  72 6e 3b 0a 7d 0a 0a 76  6f 69 64 0a 61 75 5f 63  |rn;.}..void.au_c|
00002220  72 65 61 74 65 6d 65 6e  75 28 6d 65 6e 75 5f 64  |reatemenu(menu_d|
00002230  61 74 61 20 2a 6d 65 6e  75 5f 64 61 74 29 0a 7b  |ata *menu_dat).{|
00002240  0a 09 6d 65 6e 75 5f 65  6c 65 6d 65 6e 74 09 2a  |..menu_element.*|
00002250  70 6f 69 6e 74 65 72 3b  0a 09 69 6e 74 09 69 3b  |pointer;..int.i;|
00002260  0a 0a 09 2f 2a 20 41 73  73 69 67 6e 20 6d 65 6d  |.../* Assign mem|
00002270  6f 72 79 20 2a 2f 0a 09  6d 65 6e 75 5f 64 61 74  |ory */..menu_dat|
00002280  2d 3e 64 61 74 61 62 6c  6f 63 6b 20 3d 20 63 61  |->datablock = ca|
00002290  6c 6c 6f 63 28 31 2c 20  6d 65 6e 75 5f 64 61 74  |lloc(1, menu_dat|
000022a0  2d 3e 73 69 7a 65 29 3b  0a 09 2f 2a 20 42 65 67  |->size);../* Beg|
000022b0  69 6e 20 63 6f 70 79 69  6e 67 20 64 61 74 61 20  |in copying data |
000022c0  2a 2f 0a 09 73 74 72 63  70 79 28 28 63 68 61 72  |*/..strcpy((char|
000022d0  20 2a 29 6d 65 6e 75 5f  64 61 74 2d 3e 64 61 74  | *)menu_dat->dat|
000022e0  61 62 6c 6f 63 6b 2c 20  6d 65 6e 75 5f 64 61 74  |ablock, menu_dat|
000022f0  2d 3e 74 69 74 6c 65 29  3b 0a 09 2f 2a 61 75 5f  |->title);../*au_|
00002300  72 65 70 6f 72 74 5f 65  72 72 6f 72 28 31 2c 20  |report_error(1, |
00002310  22 62 6c 61 22 2c 20 31  2c 20 22 62 6c 61 22 29  |"bla", 1, "bla")|
00002320  3b 2a 2f 0a 09 61 75 5f  77 6f 72 64 74 6f 62 79  |;*/..au_wordtoby|
00002330  74 65 28 6d 65 6e 75 5f  64 61 74 2d 3e 63 6f 6c  |te(menu_dat->col|
00002340  6f 75 72 73 2c 20 6d 65  6e 75 5f 64 61 74 2d 3e  |ours, menu_dat->|
00002350  64 61 74 61 62 6c 6f 63  6b 2c 20 31 32 29 3b 0a  |datablock, 12);.|
00002360  09 61 75 5f 77 6f 72 64  74 6f 62 79 74 65 28 6d  |.au_wordtobyte(m|
00002370  65 6e 75 5f 64 61 74 2d  3e 77 69 64 74 68 2c 20  |enu_dat->width, |
00002380  6d 65 6e 75 5f 64 61 74  2d 3e 64 61 74 61 62 6c  |menu_dat->databl|
00002390  6f 63 6b 2c 20 31 36 29  3b 0a 09 61 75 5f 77 6f  |ock, 16);..au_wo|
000023a0  72 64 74 6f 62 79 74 65  28 6d 65 6e 75 5f 64 61  |rdtobyte(menu_da|
000023b0  74 2d 3e 68 65 69 67 68  74 2c 20 6d 65 6e 75 5f  |t->height, menu_|
000023c0  64 61 74 2d 3e 64 61 74  61 62 6c 6f 63 6b 2c 20  |dat->datablock, |
000023d0  32 30 29 3b 0a 09 61 75  5f 77 6f 72 64 74 6f 62  |20);..au_wordtob|
000023e0  79 74 65 28 6d 65 6e 75  5f 64 61 74 2d 3e 76 65  |yte(menu_dat->ve|
000023f0  72 74 5f 67 61 70 2c 20  6d 65 6e 75 5f 64 61 74  |rt_gap, menu_dat|
00002400  2d 3e 64 61 74 61 62 6c  6f 63 6b 2c 20 32 34 29  |->datablock, 24)|
00002410  3b 0a 09 2f 2a 20 65 6e  64 20 6f 66 20 68 65 61  |;../* end of hea|
00002420  64 65 72 20 69 6e 66 6f  20 2a 2f 0a 09 69 20 3d  |der info */..i =|
00002430  20 32 38 3b 0a 0a 09 70  6f 69 6e 74 65 72 20 3d  | 28;...pointer =|
00002440  20 6d 65 6e 75 5f 64 61  74 2d 3e 6e 65 78 74 5f  | menu_dat->next_|
00002450  6d 65 6e 75 65 6c 65 6d  3b 0a 0a 09 77 68 69 6c  |menuelem;...whil|
00002460  65 28 70 6f 69 6e 74 65  72 20 21 3d 20 4e 55 4c  |e(pointer != NUL|
00002470  4c 29 20 7b 0a 0a 09 09  61 75 5f 77 6f 72 64 74  |L) {....au_wordt|
00002480  6f 62 79 74 65 28 70 6f  69 6e 74 65 72 2d 3e 66  |obyte(pointer->f|
00002490  6c 61 67 73 2c 20 6d 65  6e 75 5f 64 61 74 2d 3e  |lags, menu_dat->|
000024a0  64 61 74 61 62 6c 6f 63  6b 2c 20 69 29 3b 0a 09  |datablock, i);..|
000024b0  09 69 20 2b 3d 20 34 3b  0a 09 09 61 75 5f 77 6f  |.i += 4;...au_wo|
000024c0  72 64 74 6f 62 79 74 65  28 70 6f 69 6e 74 65 72  |rdtobyte(pointer|
000024d0  2d 3e 73 75 62 6d 65 6e  75 2c 20 6d 65 6e 75 5f  |->submenu, menu_|
000024e0  64 61 74 2d 3e 64 61 74  61 62 6c 6f 63 6b 2c 20  |dat->datablock, |
000024f0  69 29 3b 0a 09 09 69 20  2b 3d 20 34 3b 0a 09 09  |i);...i += 4;...|
00002500  61 75 5f 77 6f 72 64 74  6f 62 79 74 65 28 70 6f  |au_wordtobyte(po|
00002510  69 6e 74 65 72 2d 3e 6d  65 6e 75 5f 69 63 6f 6e  |inter->menu_icon|
00002520  66 6c 61 67 73 2c 20 6d  65 6e 75 5f 64 61 74 2d  |flags, menu_dat-|
00002530  3e 64 61 74 61 62 6c 6f  63 6b 2c 20 69 29 3b 0a  |>datablock, i);.|
00002540  09 09 69 20 2b 3d 20 34  3b 0a 09 09 73 74 72 63  |..i += 4;...strc|
00002550  70 79 28 28 63 68 61 72  20 2a 29 20 26 6d 65 6e  |py((char *) &men|
00002560  75 5f 64 61 74 2d 3e 64  61 74 61 62 6c 6f 63 6b  |u_dat->datablock|
00002570  5b 69 5d 2c 20 70 6f 69  6e 74 65 72 2d 3e 6d 65  |[i], pointer->me|
00002580  6e 75 5f 74 65 78 74 29  3b 0a 09 09 69 20 2b 3d  |nu_text);...i +=|
00002590  20 31 32 3b 0a 09 09 70  6f 69 6e 74 65 72 20 3d  | 12;...pointer =|
000025a0  20 70 6f 69 6e 74 65 72  2d 3e 6e 65 78 74 5f 6d  | pointer->next_m|
000025b0  65 6e 75 65 6c 65 6d 3b  0a 09 7d 0a 09 72 65 74  |enuelem;..}..ret|
000025c0  75 72 6e 3b 0a 7d 0a 0a  76 6f 69 64 0a 61 75 5f  |urn;.}..void.au_|
000025d0  6f 70 65 6e 6d 65 6e 75  28 6d 65 6e 75 5f 64 61  |openmenu(menu_da|
000025e0  74 61 20 2a 6d 65 6e 75  5f 64 61 74 2c 20 69 6e  |ta *menu_dat, in|
000025f0  74 20 6d 6f 75 73 65 5f  78 2c 20 69 6e 74 20 6d  |t mouse_x, int m|
00002600  6f 75 73 65 5f 79 29 0a  7b 0a 09 5f 6b 65 72 6e  |ouse_y).{.._kern|
00002610  65 6c 5f 73 77 69 5f 72  65 67 73 09 72 65 67 73  |el_swi_regs.regs|
00002620  5f 69 6e 2c 20 72 65 67  73 5f 6f 75 74 3b 0a 0a  |_in, regs_out;..|
00002630  09 72 65 67 73 5f 69 6e  2e 72 5b 31 5d 20 3d 20  |.regs_in.r[1] = |
00002640  28 69 6e 74 29 20 6d 65  6e 75 5f 64 61 74 2d 3e  |(int) menu_dat->|
00002650  64 61 74 61 62 6c 6f 63  6b 3b 0a 09 72 65 67 73  |datablock;..regs|
00002660  5f 69 6e 2e 72 5b 32 5d  20 3d 20 6d 6f 75 73 65  |_in.r[2] = mouse|
00002670  5f 78 3b 0a 09 72 65 67  73 5f 69 6e 2e 72 5b 33  |_x;..regs_in.r[3|
00002680  5d 20 3d 20 6d 6f 75 73  65 5f 79 3b 0a 09 5f 6b  |] = mouse_y;.._k|
00002690  65 72 6e 65 6c 5f 73 77  69 28 57 69 6d 70 5f 43  |ernel_swi(Wimp_C|
000026a0  72 65 61 74 65 4d 65 6e  75 2c 20 26 72 65 67 73  |reateMenu, &regs|
000026b0  5f 69 6e 2c 20 26 72 65  67 73 5f 6f 75 74 29 3b  |_in, &regs_out);|
000026c0  0a 09 72 65 74 75 72 6e  3b 0a 7d 0a              |..return;.}.|
000026cc