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

WimpC/!RAPS/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_199610.adf » Regulars
Filename: WimpC/!RAPS/c/AULib
Read OK:
File size: 28AB 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]) + 1, 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;
}

void
au_icon_get_text(char *dest_string, unsigned long int win_hdl, unsigned long int icon_hdl)
{
	char	*text_pointer;

	/* Assumes dest_string has enough space */
	text_pointer = au_get_ptr_to_icontext(win_hdl, icon_hdl);
	strcpy(dest_string, text_pointer);
	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_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;
}

void
au_losecaret(void)
{
	_kernel_swi_regs	regs_in, regs_out;

	regs_in.r[0] = -1;
	regs_in.r[1] = -1;
	regs_in.r[0] = -1;
	regs_in.r[0] = -1;
	regs_in.r[4] = -1;
	regs_in.r[5] = -1;

	_kernel_swi(Wimp_SetCaretPosition, &regs_in, &regs_out);
}
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  20 2b 20 31 2c 20 73 69  7a 65 6f 66 28 63 68 61  | + 1, sizeof(cha|
00000eb0  72 29 29 3b 0a 09 73 74  72 63 70 79 28 77 69 6e  |r));..strcpy(win|
00000ec0  5f 64 61 74 61 2d 3e 77  69 6e 5f 6e 61 6d 65 2c  |_data->win_name,|
00000ed0  20 28 63 68 61 72 20 2a  29 20 72 65 67 73 5f 6f  | (char *) regs_o|
00000ee0  75 74 2e 72 5b 35 5d 29  3b 0a 0a 09 2f 2a 20 4e  |ut.r[5]);.../* N|
00000ef0  6f 77 20 72 65 6c 6f 61  64 20 74 65 6d 70 6c 61  |ow reload templa|
00000f00  74 65 20 66 72 6f 6d 20  66 69 6c 65 20 69 6e 74  |te from file int|
00000f10  6f 20 6d 65 6d 6f 72 79  20 2a 2f 0a 09 72 65 67  |o memory */..reg|
00000f20  73 5f 69 6e 2e 72 5b 31  5d 20 3d 20 28 69 6e 74  |s_in.r[1] = (int|
00000f30  29 20 77 69 6e 5f 64 61  74 61 2d 3e 62 75 66 66  |) win_data->buff|
00000f40  65 72 3b 0a 09 72 65 67  73 5f 69 6e 2e 72 5b 32  |er;..regs_in.r[2|
00000f50  5d 20 3d 20 28 69 6e 74  29 20 77 69 6e 5f 64 61  |] = (int) win_da|
00000f60  74 61 2d 3e 77 6f 72 6b  73 70 61 63 65 3b 0a 09  |ta->workspace;..|
00000f70  72 65 67 73 5f 69 6e 2e  72 5b 33 5d 20 3d 20 28  |regs_in.r[3] = (|
00000f80  69 6e 74 29 20 77 69 6e  5f 64 61 74 61 2d 3e 77  |int) win_data->w|
00000f90  6f 72 6b 73 70 61 63 65  20 2b 20 77 6f 72 6b 73  |orkspace + works|
00000fa0  70 61 63 65 5f 6c 65 6e  67 74 68 3b 0a 09 72 65  |pace_length;..re|
00000fb0  67 73 5f 69 6e 2e 72 5b  34 5d 20 3d 20 2d 31 3b  |gs_in.r[4] = -1;|
00000fc0  20 2f 2a 20 4e 4f 20 46  4f 4e 54 53 20 43 41 54  | /* NO FONTS CAT|
00000fd0  45 52 45 44 20 46 4f 52  20 49 4e 20 54 45 4d 50  |ERED FOR IN TEMP|
00000fe0  4c 41 54 45 53 20 59 45  54 20 2a 2f 0a 09 72 65  |LATES YET */..re|
00000ff0  67 73 5f 69 6e 2e 72 5b  35 5d 20 3d 20 28 69 6e  |gs_in.r[5] = (in|
00001000  74 29 20 77 69 6e 5f 64  61 74 61 2d 3e 77 69 6e  |t) win_data->win|
00001010  5f 6e 61 6d 65 3b 0a 09  72 65 67 73 5f 69 6e 2e  |_name;..regs_in.|
00001020  72 5b 36 5d 20 3d 20 63  61 6c 6c 3b 0a 0a 09 5f  |r[6] = call;..._|
00001030  6b 65 72 6e 65 6c 5f 73  77 69 28 57 69 6d 70 5f  |kernel_swi(Wimp_|
00001040  4c 6f 61 64 54 65 6d 70  6c 61 74 65 2c 20 26 72  |LoadTemplate, &r|
00001050  65 67 73 5f 69 6e 2c 20  26 72 65 67 73 5f 6f 75  |egs_in, &regs_ou|
00001060  74 29 3b 0a 09 6e 65 78  74 5f 65 6e 74 72 79 20  |t);..next_entry |
00001070  3d 20 72 65 67 73 5f 6f  75 74 2e 72 5b 36 5d 3b  |= regs_out.r[6];|
00001080  0a 0a 09 2f 2a 20 43 72  65 61 74 65 20 74 68 65  |.../* Create the|
00001090  20 77 69 6e 64 6f 77 2c  20 73 74 6f 72 65 20 77  | window, store w|
000010a0  69 6e 64 6f 77 20 68 61  6e 64 6c 65 20 2a 2f 0a  |indow handle */.|
000010b0  09 72 65 67 73 5f 69 6e  2e 72 5b 31 5d 20 3d 20  |.regs_in.r[1] = |
000010c0  28 69 6e 74 29 20 77 69  6e 5f 64 61 74 61 2d 3e  |(int) win_data->|
000010d0  62 75 66 66 65 72 3b 0a  09 5f 6b 65 72 6e 65 6c  |buffer;.._kernel|
000010e0  5f 73 77 69 28 57 69 6d  70 5f 43 72 65 61 74 65  |_swi(Wimp_Create|
000010f0  57 69 6e 64 6f 77 2c 20  26 72 65 67 73 5f 69 6e  |Window, &regs_in|
00001100  2c 20 26 72 65 67 73 5f  6f 75 74 29 3b 0a 09 77  |, &regs_out);..w|
00001110  69 6e 5f 64 61 74 61 2d  3e 77 69 6e 5f 68 61 6e  |in_data->win_han|
00001120  64 6c 65 20 3d 20 72 65  67 73 5f 6f 75 74 2e 72  |dle = regs_out.r|
00001130  5b 30 5d 3b 0a 09 72 65  74 75 72 6e 20 6e 65 78  |[0];..return nex|
00001140  74 5f 65 6e 74 72 79 3b  20 2f 2a 20 69 6e 20 63  |t_entry; /* in c|
00001150  61 73 65 20 6f 66 20 77  69 6c 64 63 61 72 64 65  |ase of wildcarde|
00001160  64 20 73 65 61 72 63 68  65 73 20 2a 2f 0a 7d 0a  |d searches */.}.|
00001170  0a 69 6e 74 0a 61 75 5f  72 65 70 6f 72 74 5f 65  |.int.au_report_e|
00001180  72 72 6f 72 28 69 6e 74  20 65 72 72 6e 6f 2c 20  |rror(int errno, |
00001190  63 68 61 72 20 2a 65 72  72 6d 65 73 73 2c 20 69  |char *errmess, i|
000011a0  6e 74 20 66 6c 61 67 73  2c 20 63 68 61 72 20 2a  |nt flags, char *|
000011b0  61 70 70 5f 6e 61 6d 65  29 0a 7b 0a 20 20 20 75  |app_name).{.   u|
000011c0  6e 73 69 67 6e 65 64 20  63 68 61 72 20 65 72 72  |nsigned char err|
000011d0  6f 72 62 6c 6f 63 6b 5b  32 36 30 5d 3b 0a 20 20  |orblock[260];.  |
000011e0  20 5f 6b 65 72 6e 65 6c  5f 73 77 69 5f 72 65 67  | _kernel_swi_reg|
000011f0  73 20 69 6e 2c 20 6f 75  74 3b 0a 0a 20 20 20 2f  |s in, out;..   /|
00001200  2a 20 53 65 74 20 75 70  20 74 68 65 20 73 74 61  |* Set up the sta|
00001210  6e 64 61 72 64 20 65 72  72 6f 72 20 62 6c 6f 63  |ndard error bloc|
00001220  6b 20 77 69 74 68 20 74  68 65 20 65 72 72 6f 72  |k with the error|
00001230  20 6e 75 6d 62 65 72 20  61 6e 64 20 6d 65 73 73  | number and mess|
00001240  61 67 65 0a 20 20 20 20  20 20 28 7a 65 72 6f 20  |age.      (zero |
00001250  74 65 72 6d 69 6e 61 74  65 64 29 20 2a 2f 0a 20  |terminated) */. |
00001260  20 20 61 75 5f 77 6f 72  64 74 6f 62 79 74 65 28  |  au_wordtobyte(|
00001270  65 72 72 6e 6f 2c 20 65  72 72 6f 72 62 6c 6f 63  |errno, errorbloc|
00001280  6b 2c 20 30 29 3b 0a 20  20 20 73 74 72 63 70 79  |k, 0);.   strcpy|
00001290  28 20 28 63 68 61 72 20  2a 29 20 26 65 72 72 6f  |( (char *) &erro|
000012a0  72 62 6c 6f 63 6b 5b 34  5d 2c 20 65 72 72 6d 65  |rblock[4], errme|
000012b0  73 73 29 3b 0a 0a 20 20  20 2f 2a 20 52 30 20 2d  |ss);..   /* R0 -|
000012c0  20 70 6f 69 6e 74 65 72  20 74 6f 20 73 74 61 6e  | pointer to stan|
000012d0  64 61 72 64 20 65 72 72  6f 72 20 62 6c 6f 63 6b  |dard error block|
000012e0  0a 20 20 20 20 20 20 52  31 20 2d 20 65 72 72 6f  |.      R1 - erro|
000012f0  72 20 77 69 6e 64 6f 77  20 66 6c 61 67 73 0a 20  |r window flags. |
00001300  20 20 20 20 20 52 32 20  2d 20 70 6f 69 6e 74 65  |     R2 - pointe|
00001310  72 20 74 6f 20 61 70 70  6c 69 63 61 74 69 6f 6e  |r to application|
00001320  20 6e 61 6d 65 20 66 6f  72 20 65 72 72 6f 72 20  | name for error |
00001330  62 6f 78 20 74 69 74 6c  65 20 2a 2f 0a 0a 20 20  |box title */..  |
00001340  20 69 6e 2e 72 5b 30 5d  20 3d 20 28 69 6e 74 29  | in.r[0] = (int)|
00001350  20 65 72 72 6f 72 62 6c  6f 63 6b 3b 0a 20 20 20  | errorblock;.   |
00001360  69 6e 2e 72 5b 31 5d 20  3d 20 66 6c 61 67 73 3b  |in.r[1] = flags;|
00001370  0a 20 20 20 69 6e 2e 72  5b 32 5d 20 3d 20 28 69  |.   in.r[2] = (i|
00001380  6e 74 29 20 61 70 70 5f  6e 61 6d 65 3b 0a 0a 20  |nt) app_name;.. |
00001390  20 20 5f 6b 65 72 6e 65  6c 5f 73 77 69 28 57 69  |  _kernel_swi(Wi|
000013a0  6d 70 5f 52 65 70 6f 72  74 45 72 72 6f 72 2c 20  |mp_ReportError, |
000013b0  26 69 6e 2c 20 26 6f 75  74 29 3b 0a 0a 20 20 20  |&in, &out);..   |
000013c0  2f 2a 20 52 65 74 75 72  6e 73 20 31 20 69 66 20  |/* Returns 1 if |
000013d0  4f 4b 20 73 65 6c 65 63  74 65 64 2c 20 32 20 69  |OK selected, 2 i|
000013e0  66 20 43 61 6e 63 65 6c  20 73 65 6c 65 63 74 65  |f Cancel selecte|
000013f0  64 20 2a 2f 0a 20 20 20  72 65 74 75 72 6e 20 6f  |d */.   return o|
00001400  75 74 2e 72 5b 31 5d 3b  0a 7d 0a 0a 76 6f 69 64  |ut.r[1];.}..void|
00001410  0a 61 75 5f 6f 70 65 6e  77 69 6e 5f 66 72 6f 6d  |.au_openwin_from|
00001420  5f 74 65 6d 70 6c 61 74  65 64 61 74 61 28 77 69  |_templatedata(wi|
00001430  6e 64 6f 77 5f 64 61 74  61 20 2a 77 69 6e 5f 64  |ndow_data *win_d|
00001440  61 74 61 2c 20 6c 6f 6e  67 20 69 6e 74 20 70 6f  |ata, long int po|
00001450  73 69 74 69 6f 6e 29 0a  7b 0a 09 5f 6b 65 72 6e  |sition).{.._kern|
00001460  65 6c 5f 73 77 69 5f 72  65 67 73 09 72 65 67 73  |el_swi_regs.regs|
00001470  5f 69 6e 2c 20 72 65 67  73 5f 6f 75 74 3b 0a 09  |_in, regs_out;..|
00001480  75 6e 73 69 67 6e 65 64  20 63 68 61 72 09 6f 70  |unsigned char.op|
00001490  65 6e 77 69 6e 64 6f 77  5f 62 75 66 66 65 72 5b  |enwindow_buffer[|
000014a0  33 36 5d 3b 0a 09 69 6e  74 09 69 3b 0a 0a 09 61  |36];..int.i;...a|
000014b0  75 5f 77 6f 72 64 74 6f  62 79 74 65 28 20 28 75  |u_wordtobyte( (u|
000014c0  6e 73 69 67 6e 65 64 20  6c 6f 6e 67 20 69 6e 74  |nsigned long int|
000014d0  29 20 77 69 6e 5f 64 61  74 61 2d 3e 77 69 6e 5f  |) win_data->win_|
000014e0  68 61 6e 64 6c 65 2c 20  6f 70 65 6e 77 69 6e 64  |handle, openwind|
000014f0  6f 77 5f 62 75 66 66 65  72 2c 20 30 29 3b 0a 09  |ow_buffer, 0);..|
00001500  66 6f 72 28 69 20 3d 20  30 3b 20 69 20 3c 20 36  |for(i = 0; i < 6|
00001510  3b 20 69 2b 2b 29 20 7b  0a 09 09 61 75 5f 77 6f  |; i++) {...au_wo|
00001520  72 64 74 6f 62 79 74 65  28 61 75 5f 62 79 74 65  |rdtobyte(au_byte|
00001530  74 6f 77 6f 72 64 28 77  69 6e 5f 64 61 74 61 2d  |toword(win_data-|
00001540  3e 62 75 66 66 65 72 2c  20 69 2a 34 29 2c 20 6f  |>buffer, i*4), o|
00001550  70 65 6e 77 69 6e 64 6f  77 5f 62 75 66 66 65 72  |penwindow_buffer|
00001560  2c 20 28 69 2b 31 29 20  2a 20 34 29 3b 0a 09 7d  |, (i+1) * 4);..}|
00001570  0a 09 61 75 5f 77 6f 72  64 74 6f 62 79 74 65 28  |..au_wordtobyte(|
00001580  70 6f 73 69 74 69 6f 6e  2c 20 6f 70 65 6e 77 69  |position, openwi|
00001590  6e 64 6f 77 5f 62 75 66  66 65 72 2c 20 32 38 29  |ndow_buffer, 28)|
000015a0  3b 0a 09 72 65 67 73 5f  69 6e 2e 72 5b 31 5d 20  |;..regs_in.r[1] |
000015b0  3d 20 28 69 6e 74 29 20  6f 70 65 6e 77 69 6e 64  |= (int) openwind|
000015c0  6f 77 5f 62 75 66 66 65  72 3b 0a 09 5f 6b 65 72  |ow_buffer;.._ker|
000015d0  6e 65 6c 5f 73 77 69 28  57 69 6d 70 5f 4f 70 65  |nel_swi(Wimp_Ope|
000015e0  6e 57 69 6e 64 6f 77 2c  20 26 72 65 67 73 5f 69  |nWindow, &regs_i|
000015f0  6e 2c 20 26 72 65 67 73  5f 6f 75 74 29 3b 0a 09  |n, &regs_out);..|
00001600  72 65 74 75 72 6e 3b 0a  7d 0a 0a 69 6e 74 0a 61  |return;.}..int.a|
00001610  75 5f 77 69 6d 70 5f 70  6f 6c 6c 28 69 6e 74 20  |u_wimp_poll(int |
00001620  70 6f 6c 6c 6d 61 73 6b  2c 20 75 6e 73 69 67 6e  |pollmask, unsign|
00001630  65 64 20 63 68 61 72 20  2a 70 6f 6c 6c 62 6c 6f  |ed char *pollblo|
00001640  63 6b 29 0a 7b 0a 09 5f  6b 65 72 6e 65 6c 5f 73  |ck).{.._kernel_s|
00001650  77 69 5f 72 65 67 73 09  72 65 67 73 5f 69 6e 2c  |wi_regs.regs_in,|
00001660  20 72 65 67 73 5f 6f 75  74 3b 0a 0a 09 72 65 67  | regs_out;...reg|
00001670  73 5f 69 6e 2e 72 5b 30  5d 20 3d 20 70 6f 6c 6c  |s_in.r[0] = poll|
00001680  6d 61 73 6b 3b 0a 09 72  65 67 73 5f 69 6e 2e 72  |mask;..regs_in.r|
00001690  5b 31 5d 20 3d 20 28 69  6e 74 29 20 70 6f 6c 6c  |[1] = (int) poll|
000016a0  62 6c 6f 63 6b 3b 0a 0a  09 5f 6b 65 72 6e 65 6c  |block;..._kernel|
000016b0  5f 73 77 69 28 57 69 6d  70 5f 50 6f 6c 6c 2c 20  |_swi(Wimp_Poll, |
000016c0  26 72 65 67 73 5f 69 6e  2c 20 26 72 65 67 73 5f  |&regs_in, &regs_|
000016d0  6f 75 74 29 3b 0a 09 72  65 74 75 72 6e 20 72 65  |out);..return re|
000016e0  67 73 5f 6f 75 74 2e 72  5b 30 5d 3b 20 2f 2a 20  |gs_out.r[0]; /* |
000016f0  52 65 74 75 72 6e 20 74  68 65 20 65 76 65 6e 74  |Return the event|
00001700  20 63 6f 64 65 20 2a 2f  0a 7d 0a 0a 76 6f 69 64  | code */.}..void|
00001710  0a 61 75 5f 69 63 6f 6e  5f 74 65 78 74 5f 63 68  |.au_icon_text_ch|
00001720  61 6e 67 65 28 63 68 61  72 20 2a 74 65 78 74 2c  |ange(char *text,|
00001730  20 75 6e 73 69 67 6e 65  64 20 6c 6f 6e 67 20 69  | unsigned long i|
00001740  6e 74 20 77 69 6e 5f 68  2c 20 75 6e 73 69 67 6e  |nt win_h, unsign|
00001750  65 64 20 6c 6f 6e 67 20  69 6e 74 20 69 63 6f 6e  |ed long int icon|
00001760  5f 68 29 0a 7b 0a 20 20  20 5f 6b 65 72 6e 65 6c  |_h).{.   _kernel|
00001770  5f 73 77 69 5f 72 65 67  73 20 72 65 67 73 5f 69  |_swi_regs regs_i|
00001780  6e 2c 20 72 65 67 73 5f  6f 75 74 3b 0a 20 20 20  |n, regs_out;.   |
00001790  63 68 61 72 20 2a 74 65  78 74 5f 70 6f 69 6e 74  |char *text_point|
000017a0  65 72 3b 0a 20 20 20 75  6e 73 69 67 6e 65 64 20  |er;.   unsigned |
000017b0  63 68 61 72 20 74 65 6d  70 5f 62 75 66 66 65 72  |char temp_buffer|
000017c0  5b 32 35 35 5d 3b 0a 0a  20 20 20 2f 2a 20 46 69  |[255];..   /* Fi|
000017d0  6e 64 20 6f 75 74 20 77  68 65 72 65 20 74 68 65  |nd out where the|
000017e0  20 69 63 6f 6e 27 73 20  69 6e 64 69 72 65 63 74  | icon's indirect|
000017f0  65 64 20 74 65 78 74 20  69 73 20 73 74 6f 72 65  |ed text is store|
00001800  64 20 69 6e 20 6d 65 6d  6f 72 79 20 61 6e 64 20  |d in memory and |
00001810  63 6f 70 79 0a 20 20 20  20 20 20 61 20 6e 65 77  |copy.      a new|
00001820  20 73 74 72 69 6e 67 20  74 6f 20 69 74 20 2a 2f  | string to it */|
00001830  0a 20 20 20 74 65 78 74  5f 70 6f 69 6e 74 65 72  |.   text_pointer|
00001840  20 3d 20 61 75 5f 67 65  74 5f 70 74 72 5f 74 6f  | = au_get_ptr_to|
00001850  5f 69 63 6f 6e 74 65 78  74 28 77 69 6e 5f 68 2c  |_icontext(win_h,|
00001860  20 69 63 6f 6e 5f 68 29  3b 0a 20 20 20 73 74 72  | icon_h);.   str|
00001870  63 70 79 28 74 65 78 74  5f 70 6f 69 6e 74 65 72  |cpy(text_pointer|
00001880  2c 20 74 65 78 74 29 3b  0a 0a 20 20 20 2f 2a 20  |, text);..   /* |
00001890  4e 6f 77 20 77 65 20 6e  65 65 64 20 74 6f 20 69  |Now we need to i|
000018a0  6e 66 6f 72 6d 20 74 68  65 20 57 49 4d 50 20 74  |nform the WIMP t|
000018b0  68 61 74 20 74 68 65 20  69 63 6f 6e 20 6e 65 65  |hat the icon nee|
000018c0  64 73 20 72 65 64 72 61  77 69 6e 67 20 62 79 20  |ds redrawing by |
000018d0  73 65 74 74 69 6e 67 0a  20 20 20 20 20 20 74 68  |setting.      th|
000018e0  65 20 69 63 6f 6e 20 66  6c 61 67 73 20 2d 20 77  |e icon flags - w|
000018f0  65 20 64 6f 6e 27 74 20  61 63 74 75 61 6c 6c 79  |e don't actually|
00001900  20 63 68 61 6e 67 65 20  74 68 65 6d 20 77 69 74  | change them wit|
00001910  68 20 74 68 69 73 20 63  61 6c 6c 2c 20 62 75 74  |h this call, but|
00001920  20 74 68 69 73 0a 20 20  20 20 20 20 73 70 75 72  | this.      spur|
00001930  73 20 74 68 65 20 57 49  4d 50 20 69 6e 74 6f 20  |s the WIMP into |
00001940  61 63 74 69 6f 6e 20 2a  2f 0a 0a 20 20 20 61 75  |action */..   au|
00001950  5f 77 6f 72 64 74 6f 62  79 74 65 28 77 69 6e 5f  |_wordtobyte(win_|
00001960  68 2c 20 74 65 6d 70 5f  62 75 66 66 65 72 2c 20  |h, temp_buffer, |
00001970  30 29 3b 0a 20 20 20 61  75 5f 77 6f 72 64 74 6f  |0);.   au_wordto|
00001980  62 79 74 65 28 69 63 6f  6e 5f 68 2c 20 74 65 6d  |byte(icon_h, tem|
00001990  70 5f 62 75 66 66 65 72  2c 20 34 29 3b 0a 20 20  |p_buffer, 4);.  |
000019a0  20 61 75 5f 77 6f 72 64  74 6f 62 79 74 65 28 30  | au_wordtobyte(0|
000019b0  2c 20 74 65 6d 70 5f 62  75 66 66 65 72 2c 20 38  |, temp_buffer, 8|
000019c0  29 3b 0a 20 20 20 61 75  5f 77 6f 72 64 74 6f 62  |);.   au_wordtob|
000019d0  79 74 65 28 30 2c 20 74  65 6d 70 5f 62 75 66 66  |yte(0, temp_buff|
000019e0  65 72 2c 20 31 32 29 3b  0a 0a 20 20 20 72 65 67  |er, 12);..   reg|
000019f0  73 5f 69 6e 2e 72 5b 31  5d 20 3d 20 28 69 6e 74  |s_in.r[1] = (int|
00001a00  29 20 74 65 6d 70 5f 62  75 66 66 65 72 3b 0a 0a  |) temp_buffer;..|
00001a10  20 20 20 5f 6b 65 72 6e  65 6c 5f 73 77 69 28 57  |   _kernel_swi(W|
00001a20  69 6d 70 5f 53 65 74 49  63 6f 6e 53 74 61 74 65  |imp_SetIconState|
00001a30  2c 20 26 72 65 67 73 5f  69 6e 2c 20 26 72 65 67  |, &regs_in, &reg|
00001a40  73 5f 6f 75 74 29 3b 0a  20 20 20 72 65 74 75 72  |s_out);.   retur|
00001a50  6e 3b 0a 7d 0a 0a 76 6f  69 64 0a 61 75 5f 69 63  |n;.}..void.au_ic|
00001a60  6f 6e 5f 67 65 74 5f 74  65 78 74 28 63 68 61 72  |on_get_text(char|
00001a70  20 2a 64 65 73 74 5f 73  74 72 69 6e 67 2c 20 75  | *dest_string, u|
00001a80  6e 73 69 67 6e 65 64 20  6c 6f 6e 67 20 69 6e 74  |nsigned long int|
00001a90  20 77 69 6e 5f 68 64 6c  2c 20 75 6e 73 69 67 6e  | win_hdl, unsign|
00001aa0  65 64 20 6c 6f 6e 67 20  69 6e 74 20 69 63 6f 6e  |ed long int icon|
00001ab0  5f 68 64 6c 29 0a 7b 0a  09 63 68 61 72 09 2a 74  |_hdl).{..char.*t|
00001ac0  65 78 74 5f 70 6f 69 6e  74 65 72 3b 0a 0a 09 2f  |ext_pointer;.../|
00001ad0  2a 20 41 73 73 75 6d 65  73 20 64 65 73 74 5f 73  |* Assumes dest_s|
00001ae0  74 72 69 6e 67 20 68 61  73 20 65 6e 6f 75 67 68  |tring has enough|
00001af0  20 73 70 61 63 65 20 2a  2f 0a 09 74 65 78 74 5f  | space */..text_|
00001b00  70 6f 69 6e 74 65 72 20  3d 20 61 75 5f 67 65 74  |pointer = au_get|
00001b10  5f 70 74 72 5f 74 6f 5f  69 63 6f 6e 74 65 78 74  |_ptr_to_icontext|
00001b20  28 77 69 6e 5f 68 64 6c  2c 20 69 63 6f 6e 5f 68  |(win_hdl, icon_h|
00001b30  64 6c 29 3b 0a 09 73 74  72 63 70 79 28 64 65 73  |dl);..strcpy(des|
00001b40  74 5f 73 74 72 69 6e 67  2c 20 74 65 78 74 5f 70  |t_string, text_p|
00001b50  6f 69 6e 74 65 72 29 3b  0a 09 72 65 74 75 72 6e  |ointer);..return|
00001b60  3b 0a 7d 0a 0a 63 68 61  72 20 2a 0a 61 75 5f 67  |;.}..char *.au_g|
00001b70  65 74 5f 70 74 72 5f 74  6f 5f 69 63 6f 6e 74 65  |et_ptr_to_iconte|
00001b80  78 74 28 75 6e 73 69 67  6e 65 64 20 6c 6f 6e 67  |xt(unsigned long|
00001b90  20 69 6e 74 20 77 69 6e  68 64 6c 2c 20 75 6e 73  | int winhdl, uns|
00001ba0  69 67 6e 65 64 20 6c 6f  6e 67 20 69 6e 74 20 69  |igned long int i|
00001bb0  63 6f 6e 68 64 6c 29 0a  7b 0a 20 20 20 2f 2a 20  |conhdl).{.   /* |
00001bc0  54 68 69 73 20 70 72 6f  63 65 64 75 72 65 20 69  |This procedure i|
00001bd0  6e 74 65 72 72 6f 67 61  74 65 73 20 61 6e 20 69  |nterrogates an i|
00001be0  63 6f 6e 20 74 6f 20 64  65 74 65 72 6d 69 6e 65  |con to determine|
00001bf0  20 74 68 65 20 61 64 64  72 65 73 73 20 77 68 65  | the address whe|
00001c00  72 65 20 69 74 73 0a 20  20 20 20 20 20 69 6e 64  |re its.      ind|
00001c10  69 72 65 63 74 65 64 20  74 65 78 74 20 64 61 74  |irected text dat|
00001c20  61 20 69 73 20 73 74 6f  72 65 64 20 69 6e 20 6d  |a is stored in m|
00001c30  65 6d 6f 72 79 2c 20 61  6e 64 20 72 65 74 75 72  |emory, and retur|
00001c40  6e 73 20 69 74 20 2a 2f  0a 0a 20 20 20 75 6e 73  |ns it */..   uns|
00001c50  69 67 6e 65 64 20 63 68  61 72 20 74 65 6d 70 5f  |igned char temp_|
00001c60  62 75 66 66 65 72 5b 32  35 35 5d 3b 0a 20 20 20  |buffer[255];.   |
00001c70  5f 6b 65 72 6e 65 6c 5f  73 77 69 5f 72 65 67 73  |_kernel_swi_regs|
00001c80  20 72 65 67 73 5f 69 6e  2c 20 72 65 67 73 5f 6f  | regs_in, regs_o|
00001c90  75 74 3b 0a 20 20 20 63  68 61 72 20 2a 72 65 73  |ut;.   char *res|
00001ca0  75 6c 74 3b 0a 0a 20 20  20 61 75 5f 77 6f 72 64  |ult;..   au_word|
00001cb0  74 6f 62 79 74 65 28 77  69 6e 68 64 6c 2c 20 74  |tobyte(winhdl, t|
00001cc0  65 6d 70 5f 62 75 66 66  65 72 2c 20 30 29 3b 0a  |emp_buffer, 0);.|
00001cd0  20 20 20 61 75 5f 77 6f  72 64 74 6f 62 79 74 65  |   au_wordtobyte|
00001ce0  28 69 63 6f 6e 68 64 6c  2c 20 74 65 6d 70 5f 62  |(iconhdl, temp_b|
00001cf0  75 66 66 65 72 2c 20 34  29 3b 0a 0a 20 20 20 72  |uffer, 4);..   r|
00001d00  65 67 73 5f 69 6e 2e 72  5b 31 5d 20 3d 20 28 69  |egs_in.r[1] = (i|
00001d10  6e 74 29 20 74 65 6d 70  5f 62 75 66 66 65 72 3b  |nt) temp_buffer;|
00001d20  0a 20 20 20 5f 6b 65 72  6e 65 6c 5f 73 77 69 28  |.   _kernel_swi(|
00001d30  57 69 6d 70 5f 47 65 74  49 63 6f 6e 53 74 61 74  |Wimp_GetIconStat|
00001d40  65 2c 20 26 72 65 67 73  5f 69 6e 2c 20 26 72 65  |e, &regs_in, &re|
00001d50  67 73 5f 6f 75 74 29 3b  0a 0a 20 20 20 72 65 73  |gs_out);..   res|
00001d60  75 6c 74 20 3d 20 28 63  68 61 72 20 2a 29 20 61  |ult = (char *) a|
00001d70  75 5f 62 79 74 65 74 6f  77 6f 72 64 28 74 65 6d  |u_bytetoword(tem|
00001d80  70 5f 62 75 66 66 65 72  2c 20 32 38 29 3b 0a 20  |p_buffer, 28);. |
00001d90  20 20 72 65 74 75 72 6e  20 72 65 73 75 6c 74 3b  |  return result;|
00001da0  0a 7d 0a 0a 76 6f 69 64  0a 61 75 5f 62 75 69 6c  |.}..void.au_buil|
00001db0  64 6d 65 6e 75 28 63 68  61 72 20 2a 74 69 74 6c  |dmenu(char *titl|
00001dc0  65 2c 20 6d 65 6e 75 5f  64 61 74 61 20 2a 6d 65  |e, menu_data *me|
00001dd0  6e 75 5f 64 61 74 29 0a  7b 0a 09 69 66 28 73 74  |nu_dat).{..if(st|
00001de0  72 6c 65 6e 28 74 69 74  6c 65 29 20 3e 20 31 31  |rlen(title) > 11|
00001df0  29 20 72 65 74 75 72 6e  3b 20 2f 2a 20 44 6f 20  |) return; /* Do |
00001e00  74 68 69 73 20 6d 6f 72  65 20 6e 65 61 74 6c 79  |this more neatly|
00001e10  21 20 2a 2f 0a 09 2f 2a  20 46 69 6c 6c 20 69 6e  |! */../* Fill in|
00001e20  20 74 68 65 20 6d 65 6e  75 20 68 65 61 64 65 72  | the menu header|
00001e30  20 77 69 74 68 20 73 74  61 6e 64 61 72 64 20 69  | with standard i|
00001e40  6e 66 6f 72 6d 61 74 69  6f 6e 20 2a 2f 0a 09 73  |nformation */..s|
00001e50  74 72 63 70 79 28 6d 65  6e 75 5f 64 61 74 2d 3e  |trcpy(menu_dat->|
00001e60  74 69 74 6c 65 2c 20 74  69 74 6c 65 29 3b 0a 09  |title, title);..|
00001e70  6d 65 6e 75 5f 64 61 74  2d 3e 63 6f 6c 6f 75 72  |menu_dat->colour|
00001e80  73 20 3d 20 4d 45 4e 55  5f 54 49 54 4c 45 46 4f  |s = MENU_TITLEFO|
00001e90  52 45 20 7c 20 4d 45 4e  55 5f 54 49 54 4c 45 42  |RE | MENU_TITLEB|
00001ea0  41 43 4b 20 7c 20 4d 45  4e 55 5f 57 4f 52 4b 46  |ACK | MENU_WORKF|
00001eb0  4f 52 45 20 7c 20 4d 45  4e 55 5f 57 4f 52 4b 42  |ORE | MENU_WORKB|
00001ec0  41 43 4b 3b 0a 09 6d 65  6e 75 5f 64 61 74 2d 3e  |ACK;..menu_dat->|
00001ed0  77 69 64 74 68 20 3d 20  4d 45 4e 55 5f 57 49 44  |width = MENU_WID|
00001ee0  54 48 3b 0a 09 6d 65 6e  75 5f 64 61 74 2d 3e 68  |TH;..menu_dat->h|
00001ef0  65 69 67 68 74 20 3d 20  4d 45 4e 55 5f 48 45 49  |eight = MENU_HEI|
00001f00  47 48 54 3b 0a 09 6d 65  6e 75 5f 64 61 74 2d 3e  |GHT;..menu_dat->|
00001f10  76 65 72 74 5f 67 61 70  20 3d 20 4d 45 4e 55 5f  |vert_gap = MENU_|
00001f20  56 45 52 54 47 41 50 3b  0a 09 6d 65 6e 75 5f 64  |VERTGAP;..menu_d|
00001f30  61 74 2d 3e 6e 65 78 74  5f 6d 65 6e 75 65 6c 65  |at->next_menuele|
00001f40  6d 20 3d 20 4e 55 4c 4c  3b 0a 09 6d 65 6e 75 5f  |m = NULL;..menu_|
00001f50  64 61 74 2d 3e 73 69 7a  65 20 3d 20 73 69 7a 65  |dat->size = size|
00001f60  6f 66 28 6d 65 6e 75 5f  64 61 74 61 29 3b 0a 09  |of(menu_data);..|
00001f70  72 65 74 75 72 6e 3b 0a  7d 0a 0a 76 6f 69 64 0a  |return;.}..void.|
00001f80  61 75 5f 61 64 64 74 6f  6d 65 6e 75 28 63 68 61  |au_addtomenu(cha|
00001f90  72 20 2a 74 65 78 74 2c  20 6c 6f 6e 67 20 69 6e  |r *text, long in|
00001fa0  74 20 6d 65 6e 75 5f 66  6c 61 67 73 2c 20 6c 6f  |t menu_flags, lo|
00001fb0  6e 67 20 69 6e 74 20 73  75 62 6d 65 6e 75 2c 20  |ng int submenu, |
00001fc0  6c 6f 6e 67 20 69 6e 74  20 69 63 6f 6e 5f 66 6c  |long int icon_fl|
00001fd0  61 67 73 2c 20 6d 65 6e  75 5f 64 61 74 61 20 2a  |ags, menu_data *|
00001fe0  6d 65 6e 75 5f 64 61 74  29 0a 7b 0a 09 6d 65 6e  |menu_dat).{..men|
00001ff0  75 5f 65 6c 65 6d 65 6e  74 20 2a 70 6f 69 6e 74  |u_element *point|
00002000  65 72 3b 0a 0a 09 69 66  28 73 74 72 6c 65 6e 28  |er;...if(strlen(|
00002010  74 65 78 74 29 20 3e 20  31 31 29 20 72 65 74 75  |text) > 11) retu|
00002020  72 6e 3b 0a 09 2f 2a 20  57 6f 72 6b 20 6f 75 72  |rn;../* Work our|
00002030  20 77 61 79 20 74 6f 20  65 6e 64 20 6f 66 20 6d  | way to end of m|
00002040  65 6e 75 20 6c 69 73 74  20 2a 2f 0a 09 69 66 28  |enu list */..if(|
00002050  6d 65 6e 75 5f 64 61 74  2d 3e 6e 65 78 74 5f 6d  |menu_dat->next_m|
00002060  65 6e 75 65 6c 65 6d 20  3d 3d 20 4e 55 4c 4c 29  |enuelem == NULL)|
00002070  20 7b 0a 09 09 6d 65 6e  75 5f 64 61 74 2d 3e 6e  | {...menu_dat->n|
00002080  65 78 74 5f 6d 65 6e 75  65 6c 65 6d 20 3d 20 63  |ext_menuelem = c|
00002090  61 6c 6c 6f 63 28 31 2c  20 73 69 7a 65 6f 66 28  |alloc(1, sizeof(|
000020a0  6d 65 6e 75 5f 65 6c 65  6d 65 6e 74 29 29 3b 0a  |menu_element));.|
000020b0  09 09 6d 65 6e 75 5f 64  61 74 2d 3e 73 69 7a 65  |..menu_dat->size|
000020c0  20 2b 3d 20 73 69 7a 65  6f 66 28 6d 65 6e 75 5f  | += sizeof(menu_|
000020d0  65 6c 65 6d 65 6e 74 29  3b 0a 09 09 70 6f 69 6e  |element);...poin|
000020e0  74 65 72 20 3d 20 6d 65  6e 75 5f 64 61 74 2d 3e  |ter = menu_dat->|
000020f0  6e 65 78 74 5f 6d 65 6e  75 65 6c 65 6d 3b 0a 09  |next_menuelem;..|
00002100  7d 20 65 6c 73 65 20 7b  0a 09 09 70 6f 69 6e 74  |} else {...point|
00002110  65 72 20 3d 20 6d 65 6e  75 5f 64 61 74 2d 3e 6e  |er = menu_dat->n|
00002120  65 78 74 5f 6d 65 6e 75  65 6c 65 6d 3b 0a 09 09  |ext_menuelem;...|
00002130  77 68 69 6c 65 20 28 70  6f 69 6e 74 65 72 2d 3e  |while (pointer->|
00002140  6e 65 78 74 5f 6d 65 6e  75 65 6c 65 6d 20 21 3d  |next_menuelem !=|
00002150  20 30 29 20 7b 0a 09 09  09 70 6f 69 6e 74 65 72  | 0) {....pointer|
00002160  20 3d 20 70 6f 69 6e 74  65 72 2d 3e 6e 65 78 74  | = pointer->next|
00002170  5f 6d 65 6e 75 65 6c 65  6d 3b 0a 09 09 7d 0a 09  |_menuelem;...}..|
00002180  09 70 6f 69 6e 74 65 72  2d 3e 6e 65 78 74 5f 6d  |.pointer->next_m|
00002190  65 6e 75 65 6c 65 6d 20  3d 20 63 61 6c 6c 6f 63  |enuelem = calloc|
000021a0  28 31 2c 20 73 69 7a 65  6f 66 28 6d 65 6e 75 5f  |(1, sizeof(menu_|
000021b0  65 6c 65 6d 65 6e 74 29  29 3b 0a 09 09 6d 65 6e  |element));...men|
000021c0  75 5f 64 61 74 2d 3e 73  69 7a 65 20 2b 3d 20 73  |u_dat->size += s|
000021d0  69 7a 65 6f 66 28 6d 65  6e 75 5f 65 6c 65 6d 65  |izeof(menu_eleme|
000021e0  6e 74 29 3b 0a 09 09 70  6f 69 6e 74 65 72 20 3d  |nt);...pointer =|
000021f0  20 70 6f 69 6e 74 65 72  2d 3e 6e 65 78 74 5f 6d  | pointer->next_m|
00002200  65 6e 75 65 6c 65 6d 3b  0a 09 7d 0a 09 2f 2a 20  |enuelem;..}../* |
00002210  73 65 74 20 75 70 20 64  61 74 61 20 2a 2f 0a 09  |set up data */..|
00002220  73 74 72 63 70 79 28 70  6f 69 6e 74 65 72 2d 3e  |strcpy(pointer->|
00002230  6d 65 6e 75 5f 74 65 78  74 2c 20 74 65 78 74 29  |menu_text, text)|
00002240  3b 0a 09 70 6f 69 6e 74  65 72 2d 3e 66 6c 61 67  |;..pointer->flag|
00002250  73 20 3d 20 6d 65 6e 75  5f 66 6c 61 67 73 3b 0a  |s = menu_flags;.|
00002260  09 70 6f 69 6e 74 65 72  2d 3e 73 75 62 6d 65 6e  |.pointer->submen|
00002270  75 20 3d 20 73 75 62 6d  65 6e 75 3b 0a 0a 09 2f  |u = submenu;.../|
00002280  2a 20 41 70 70 6c 79 20  73 74 61 6e 64 61 72 64  |* Apply standard|
00002290  20 69 63 6f 6e 20 66 6c  61 67 73 20 2a 2f 0a 09  | icon flags */..|
000022a0  69 63 6f 6e 5f 66 6c 61  67 73 20 3d 20 69 63 6f  |icon_flags = ico|
000022b0  6e 5f 66 6c 61 67 73 20  7c 20 4d 45 4e 55 49 54  |n_flags | MENUIT|
000022c0  45 4d 5f 46 4f 52 45 20  7c 20 4d 45 4e 55 49 54  |EM_FORE | MENUIT|
000022d0  45 4d 5f 42 41 43 4b 20  7c 20 49 43 4f 4e 5f 49  |EM_BACK | ICON_I|
000022e0  53 54 45 58 54 20 7c 20  49 43 4f 4e 5f 49 53 46  |STEXT | ICON_ISF|
000022f0  49 4c 4c 45 44 3b 0a 09  70 6f 69 6e 74 65 72 2d  |ILLED;..pointer-|
00002300  3e 6d 65 6e 75 5f 69 63  6f 6e 66 6c 61 67 73 20  |>menu_iconflags |
00002310  3d 20 69 63 6f 6e 5f 66  6c 61 67 73 3b 0a 09 72  |= icon_flags;..r|
00002320  65 74 75 72 6e 3b 0a 7d  0a 0a 76 6f 69 64 0a 61  |eturn;.}..void.a|
00002330  75 5f 63 72 65 61 74 65  6d 65 6e 75 28 6d 65 6e  |u_createmenu(men|
00002340  75 5f 64 61 74 61 20 2a  6d 65 6e 75 5f 64 61 74  |u_data *menu_dat|
00002350  29 0a 7b 0a 09 6d 65 6e  75 5f 65 6c 65 6d 65 6e  |).{..menu_elemen|
00002360  74 09 2a 70 6f 69 6e 74  65 72 3b 0a 09 69 6e 74  |t.*pointer;..int|
00002370  09 69 3b 0a 0a 09 2f 2a  20 41 73 73 69 67 6e 20  |.i;.../* Assign |
00002380  6d 65 6d 6f 72 79 20 2a  2f 0a 09 6d 65 6e 75 5f  |memory */..menu_|
00002390  64 61 74 2d 3e 64 61 74  61 62 6c 6f 63 6b 20 3d  |dat->datablock =|
000023a0  20 63 61 6c 6c 6f 63 28  31 2c 20 6d 65 6e 75 5f  | calloc(1, menu_|
000023b0  64 61 74 2d 3e 73 69 7a  65 29 3b 0a 09 2f 2a 20  |dat->size);../* |
000023c0  42 65 67 69 6e 20 63 6f  70 79 69 6e 67 20 64 61  |Begin copying da|
000023d0  74 61 20 2a 2f 0a 09 73  74 72 63 70 79 28 28 63  |ta */..strcpy((c|
000023e0  68 61 72 20 2a 29 6d 65  6e 75 5f 64 61 74 2d 3e  |har *)menu_dat->|
000023f0  64 61 74 61 62 6c 6f 63  6b 2c 20 6d 65 6e 75 5f  |datablock, menu_|
00002400  64 61 74 2d 3e 74 69 74  6c 65 29 3b 0a 09 61 75  |dat->title);..au|
00002410  5f 77 6f 72 64 74 6f 62  79 74 65 28 6d 65 6e 75  |_wordtobyte(menu|
00002420  5f 64 61 74 2d 3e 63 6f  6c 6f 75 72 73 2c 20 6d  |_dat->colours, m|
00002430  65 6e 75 5f 64 61 74 2d  3e 64 61 74 61 62 6c 6f  |enu_dat->datablo|
00002440  63 6b 2c 20 31 32 29 3b  0a 09 61 75 5f 77 6f 72  |ck, 12);..au_wor|
00002450  64 74 6f 62 79 74 65 28  6d 65 6e 75 5f 64 61 74  |dtobyte(menu_dat|
00002460  2d 3e 77 69 64 74 68 2c  20 6d 65 6e 75 5f 64 61  |->width, menu_da|
00002470  74 2d 3e 64 61 74 61 62  6c 6f 63 6b 2c 20 31 36  |t->datablock, 16|
00002480  29 3b 0a 09 61 75 5f 77  6f 72 64 74 6f 62 79 74  |);..au_wordtobyt|
00002490  65 28 6d 65 6e 75 5f 64  61 74 2d 3e 68 65 69 67  |e(menu_dat->heig|
000024a0  68 74 2c 20 6d 65 6e 75  5f 64 61 74 2d 3e 64 61  |ht, menu_dat->da|
000024b0  74 61 62 6c 6f 63 6b 2c  20 32 30 29 3b 0a 09 61  |tablock, 20);..a|
000024c0  75 5f 77 6f 72 64 74 6f  62 79 74 65 28 6d 65 6e  |u_wordtobyte(men|
000024d0  75 5f 64 61 74 2d 3e 76  65 72 74 5f 67 61 70 2c  |u_dat->vert_gap,|
000024e0  20 6d 65 6e 75 5f 64 61  74 2d 3e 64 61 74 61 62  | menu_dat->datab|
000024f0  6c 6f 63 6b 2c 20 32 34  29 3b 0a 09 2f 2a 20 65  |lock, 24);../* e|
00002500  6e 64 20 6f 66 20 68 65  61 64 65 72 20 69 6e 66  |nd of header inf|
00002510  6f 20 2a 2f 0a 09 69 20  3d 20 32 38 3b 0a 0a 09  |o */..i = 28;...|
00002520  70 6f 69 6e 74 65 72 20  3d 20 6d 65 6e 75 5f 64  |pointer = menu_d|
00002530  61 74 2d 3e 6e 65 78 74  5f 6d 65 6e 75 65 6c 65  |at->next_menuele|
00002540  6d 3b 0a 0a 09 77 68 69  6c 65 28 70 6f 69 6e 74  |m;...while(point|
00002550  65 72 20 21 3d 20 4e 55  4c 4c 29 20 7b 0a 0a 09  |er != NULL) {...|
00002560  09 61 75 5f 77 6f 72 64  74 6f 62 79 74 65 28 70  |.au_wordtobyte(p|
00002570  6f 69 6e 74 65 72 2d 3e  66 6c 61 67 73 2c 20 6d  |ointer->flags, m|
00002580  65 6e 75 5f 64 61 74 2d  3e 64 61 74 61 62 6c 6f  |enu_dat->datablo|
00002590  63 6b 2c 20 69 29 3b 0a  09 09 69 20 2b 3d 20 34  |ck, i);...i += 4|
000025a0  3b 0a 09 09 61 75 5f 77  6f 72 64 74 6f 62 79 74  |;...au_wordtobyt|
000025b0  65 28 70 6f 69 6e 74 65  72 2d 3e 73 75 62 6d 65  |e(pointer->subme|
000025c0  6e 75 2c 20 6d 65 6e 75  5f 64 61 74 2d 3e 64 61  |nu, menu_dat->da|
000025d0  74 61 62 6c 6f 63 6b 2c  20 69 29 3b 0a 09 09 69  |tablock, i);...i|
000025e0  20 2b 3d 20 34 3b 0a 09  09 61 75 5f 77 6f 72 64  | += 4;...au_word|
000025f0  74 6f 62 79 74 65 28 70  6f 69 6e 74 65 72 2d 3e  |tobyte(pointer->|
00002600  6d 65 6e 75 5f 69 63 6f  6e 66 6c 61 67 73 2c 20  |menu_iconflags, |
00002610  6d 65 6e 75 5f 64 61 74  2d 3e 64 61 74 61 62 6c  |menu_dat->databl|
00002620  6f 63 6b 2c 20 69 29 3b  0a 09 09 69 20 2b 3d 20  |ock, i);...i += |
00002630  34 3b 0a 09 09 73 74 72  63 70 79 28 28 63 68 61  |4;...strcpy((cha|
00002640  72 20 2a 29 20 26 6d 65  6e 75 5f 64 61 74 2d 3e  |r *) &menu_dat->|
00002650  64 61 74 61 62 6c 6f 63  6b 5b 69 5d 2c 20 70 6f  |datablock[i], po|
00002660  69 6e 74 65 72 2d 3e 6d  65 6e 75 5f 74 65 78 74  |inter->menu_text|
00002670  29 3b 0a 09 09 69 20 2b  3d 20 31 32 3b 0a 09 09  |);...i += 12;...|
00002680  70 6f 69 6e 74 65 72 20  3d 20 70 6f 69 6e 74 65  |pointer = pointe|
00002690  72 2d 3e 6e 65 78 74 5f  6d 65 6e 75 65 6c 65 6d  |r->next_menuelem|
000026a0  3b 0a 09 7d 0a 09 72 65  74 75 72 6e 3b 0a 7d 0a  |;..}..return;.}.|
000026b0  0a 76 6f 69 64 0a 61 75  5f 6f 70 65 6e 6d 65 6e  |.void.au_openmen|
000026c0  75 28 6d 65 6e 75 5f 64  61 74 61 20 2a 6d 65 6e  |u(menu_data *men|
000026d0  75 5f 64 61 74 2c 20 69  6e 74 20 6d 6f 75 73 65  |u_dat, int mouse|
000026e0  5f 78 2c 20 69 6e 74 20  6d 6f 75 73 65 5f 79 29  |_x, int mouse_y)|
000026f0  0a 7b 0a 09 5f 6b 65 72  6e 65 6c 5f 73 77 69 5f  |.{.._kernel_swi_|
00002700  72 65 67 73 09 72 65 67  73 5f 69 6e 2c 20 72 65  |regs.regs_in, re|
00002710  67 73 5f 6f 75 74 3b 0a  0a 09 72 65 67 73 5f 69  |gs_out;...regs_i|
00002720  6e 2e 72 5b 31 5d 20 3d  20 28 69 6e 74 29 20 6d  |n.r[1] = (int) m|
00002730  65 6e 75 5f 64 61 74 2d  3e 64 61 74 61 62 6c 6f  |enu_dat->datablo|
00002740  63 6b 3b 0a 09 72 65 67  73 5f 69 6e 2e 72 5b 32  |ck;..regs_in.r[2|
00002750  5d 20 3d 20 6d 6f 75 73  65 5f 78 3b 0a 09 72 65  |] = mouse_x;..re|
00002760  67 73 5f 69 6e 2e 72 5b  33 5d 20 3d 20 6d 6f 75  |gs_in.r[3] = mou|
00002770  73 65 5f 79 3b 0a 09 5f  6b 65 72 6e 65 6c 5f 73  |se_y;.._kernel_s|
00002780  77 69 28 57 69 6d 70 5f  43 72 65 61 74 65 4d 65  |wi(Wimp_CreateMe|
00002790  6e 75 2c 20 26 72 65 67  73 5f 69 6e 2c 20 26 72  |nu, &regs_in, &r|
000027a0  65 67 73 5f 6f 75 74 29  3b 0a 09 72 65 74 75 72  |egs_out);..retur|
000027b0  6e 3b 0a 7d 0a 0a 76 6f  69 64 0a 61 75 5f 6c 6f  |n;.}..void.au_lo|
000027c0  73 65 63 61 72 65 74 28  76 6f 69 64 29 0a 7b 0a  |secaret(void).{.|
000027d0  09 5f 6b 65 72 6e 65 6c  5f 73 77 69 5f 72 65 67  |._kernel_swi_reg|
000027e0  73 09 72 65 67 73 5f 69  6e 2c 20 72 65 67 73 5f  |s.regs_in, regs_|
000027f0  6f 75 74 3b 0a 0a 09 72  65 67 73 5f 69 6e 2e 72  |out;...regs_in.r|
00002800  5b 30 5d 20 3d 20 2d 31  3b 0a 09 72 65 67 73 5f  |[0] = -1;..regs_|
00002810  69 6e 2e 72 5b 31 5d 20  3d 20 2d 31 3b 0a 09 72  |in.r[1] = -1;..r|
00002820  65 67 73 5f 69 6e 2e 72  5b 30 5d 20 3d 20 2d 31  |egs_in.r[0] = -1|
00002830  3b 0a 09 72 65 67 73 5f  69 6e 2e 72 5b 30 5d 20  |;..regs_in.r[0] |
00002840  3d 20 2d 31 3b 0a 09 72  65 67 73 5f 69 6e 2e 72  |= -1;..regs_in.r|
00002850  5b 34 5d 20 3d 20 2d 31  3b 0a 09 72 65 67 73 5f  |[4] = -1;..regs_|
00002860  69 6e 2e 72 5b 35 5d 20  3d 20 2d 31 3b 0a 0a 09  |in.r[5] = -1;...|
00002870  5f 6b 65 72 6e 65 6c 5f  73 77 69 28 57 69 6d 70  |_kernel_swi(Wimp|
00002880  5f 53 65 74 43 61 72 65  74 50 6f 73 69 74 69 6f  |_SetCaretPositio|
00002890  6e 2c 20 26 72 65 67 73  5f 69 6e 2c 20 26 72 65  |n, &regs_in, &re|
000028a0  67 73 5f 6f 75 74 29 3b  0a 7d 0a                 |gs_out);.}.|
000028ab