Home » Archimedes archive » Archimedes World » AW-1996-01-Disc2.adf » !AddSprite_AddSprite » !AddSprite/AddHelp
!AddSprite/AddHelp
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 » Archimedes archive » Archimedes World » AW-1996-01-Disc2.adf » !AddSprite_AddSprite |
Filename: | !AddSprite/AddHelp |
Read OK: | ✔ |
File size: | 130D bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
<============================================================================ A D D S P R I T E S Version 0.05, 20 May 1995 � Andrew Clover of DoggySoft ============================================================================> ==> What's it all about? If you have designed your own sprites, or use a desktop new-look program such as NewLook, DeskPatch, or our own NewerLook, you will no doubt be annoyed when an application replaces your lovely 3D, high-resolution icons with its own poor-looking 2D blocky nasty ones. This happens a lot with shared filetypes like drawfiles, and badly-behaved applications which place new option icons, arrow icons and such in the WIMP pool. You will also be concerned, if you don't have lots of memory, at all the memory those small icons will be taking up, if you only use large icons, and so don't need them. You may even get annoyed when applications use their own private sprites for window furniture (option, radio, arrow and gright) instead of the nice ones you've loaded into your WIMP pool. This is getting more and more of a problem as applications designers think it's a good idea to build NewLook icons into the application, which is bad (especially if you don't use NewLook). This module fixes these problems. It intercepts the OS_SpriteOp "merge sprites file" call, and alters the action of the SWI action to disallow small icons, and to make sure new icons do not replace old ones. But it must know that the pool involved is indeed the WIMP sprite pool, otherwise it would change all sprite merges, which could cause undesired effects. So you must mark the WIMP sprite pool with a sprite called "�wimppoolme�", *IconSpritesed with your main sprite file or separately, probably through your !Boot system, if you have one. If you use NewerLook, you need not worry - that does everything for you. AddSprites forces applications to use WIMP sprites for window furniture by intercepting the OS_SpriteOp "plot sprite" call, and replacing it with a call to Wimp_SpriteOp as long as the following case applies: the sprite being plotted must be the same size (in OS units, not necessarily pixels) as its counterpart in the Wimp pool, and its name is one of the special names (which are the opts, the radios, the arrows and the grights). So that AddSprites doesn't get into an infinite loop changing OS_SpriteOps to Wimp_SpriteOps, you do need the "�wimppoolme�" in the WIMP pool again. Of course, you might occasionally want *IconSprites to work as normal, when some sprites need to be replaced, without having to kill the module. AddSprites deactivates itself when the system variable <AddSprites$Control> is set to "Off". So, to disable AddSprites, press F12 and type (or include in an obey file): *Set AddSprites$Control Off And to turn it back on: *Set AddSprites$Control On [actually, anything other than "Off" will do] Also, you might use IconDir or Menon, and thus need small icons anyway. To do this, use the AddSprites$Small variable: *Set AddSprites$Small [On|Off|Filer] The three settings mean: On - small sprites are always added (this is the setting you want if you use IconDir or Menon); Off - small sprites are never added to the WIMP sprite pool; Filer - small sprites are added to the WIMP pool only if the Filer is set to display them. If the variable is not set to any of these, the default, Filer, is chosen. Note that newer versions of IconDir automatically set AddSprites$Small to On. You can also disable the WIMP-forcing feature by setting the system variable <AddSprites$ForceWimp> to "Off". Oh, one last NB: this module only protects sprites loaded into the RAM WIMP pool. It won't protect ROM-based sprites. Sorry. That's about it really. Enjoy! ==> History 0.01 : Stops replacement of existing WIMP sprites. Not publically released. 0.02 : Now includes <AddSprites$Control> variable to allow module to be temporarily disabled. Included with NewerLook release 1.00. 0.03 : Stops small icons from being added if the Filer is configured to 'large icons'. Not publically released. 0.04 : Now allows the adding of small icons to be controlled with another variable. Released separately and with NewerLook releases 1.01 to 2.01. 0.05 : Now intercepts OS_SpriteOp sprite plots in order to make sure certain standard sprites are plotted from the WIMP pool. Released separately and with NewerLook release 2.02 and later. ==> Contacts To contact me, for praise, to suggest new bits to add, or, heaven forbid, to report a bug, please write to: 7 Blackhorse Crescent, Amersham, Bucks., HP6 6HP. You can phone me on 01494-431916, send a fax on 01494-675878, send me some email as ajc@doggysft.demon.co.uk or even telex on 83675 Brit G.
00000000 3c 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |<===============| 00000010 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| * 00000040 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a 20 20 |=============. | 00000050 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000060 20 20 20 20 20 20 20 20 20 20 20 20 41 20 44 20 | A D | 00000070 44 20 53 20 50 20 52 20 49 20 54 20 45 20 53 0a |D S P R I T E S.| 00000080 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000090 20 20 20 20 20 20 20 20 20 20 20 56 65 72 73 69 | Versi| 000000a0 6f 6e 20 30 2e 30 35 2c 20 32 30 20 4d 61 79 20 |on 0.05, 20 May | 000000b0 31 39 39 35 0a 20 20 20 20 20 20 20 20 20 20 20 |1995. | 000000c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 a9 20 | . | 000000d0 41 6e 64 72 65 77 20 43 6c 6f 76 65 72 20 6f 66 |Andrew Clover of| 000000e0 20 44 6f 67 67 79 53 6f 66 74 0a 3d 3d 3d 3d 3d | DoggySoft.=====| 000000f0 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d |================| * 00000130 3d 3d 3d 3d 3d 3d 3d 3e 0a 0a 0a 3d 3d 3e 20 57 |=======>...==> W| 00000140 68 61 74 27 73 20 69 74 20 61 6c 6c 20 61 62 6f |hat's it all abo| 00000150 75 74 3f 0a 0a 20 49 66 20 79 6f 75 20 68 61 76 |ut?.. If you hav| 00000160 65 20 64 65 73 69 67 6e 65 64 20 79 6f 75 72 20 |e designed your | 00000170 6f 77 6e 20 73 70 72 69 74 65 73 2c 20 6f 72 20 |own sprites, or | 00000180 75 73 65 20 61 20 64 65 73 6b 74 6f 70 20 6e 65 |use a desktop ne| 00000190 77 2d 6c 6f 6f 6b 20 70 72 6f 67 72 61 6d 0a 73 |w-look program.s| 000001a0 75 63 68 20 61 73 20 4e 65 77 4c 6f 6f 6b 2c 20 |uch as NewLook, | 000001b0 44 65 73 6b 50 61 74 63 68 2c 20 6f 72 20 6f 75 |DeskPatch, or ou| 000001c0 72 20 6f 77 6e 20 4e 65 77 65 72 4c 6f 6f 6b 2c |r own NewerLook,| 000001d0 20 79 6f 75 20 77 69 6c 6c 20 6e 6f 20 64 6f 75 | you will no dou| 000001e0 62 74 20 62 65 0a 61 6e 6e 6f 79 65 64 20 77 68 |bt be.annoyed wh| 000001f0 65 6e 20 61 6e 20 61 70 70 6c 69 63 61 74 69 6f |en an applicatio| 00000200 6e 20 72 65 70 6c 61 63 65 73 20 79 6f 75 72 20 |n replaces your | 00000210 6c 6f 76 65 6c 79 20 33 44 2c 20 68 69 67 68 2d |lovely 3D, high-| 00000220 72 65 73 6f 6c 75 74 69 6f 6e 20 69 63 6f 6e 73 |resolution icons| 00000230 0a 77 69 74 68 20 69 74 73 20 6f 77 6e 20 70 6f |.with its own po| 00000240 6f 72 2d 6c 6f 6f 6b 69 6e 67 20 32 44 20 62 6c |or-looking 2D bl| 00000250 6f 63 6b 79 20 6e 61 73 74 79 20 6f 6e 65 73 2e |ocky nasty ones.| 00000260 20 54 68 69 73 20 68 61 70 70 65 6e 73 20 61 20 | This happens a | 00000270 6c 6f 74 20 77 69 74 68 0a 73 68 61 72 65 64 20 |lot with.shared | 00000280 66 69 6c 65 74 79 70 65 73 20 6c 69 6b 65 20 64 |filetypes like d| 00000290 72 61 77 66 69 6c 65 73 2c 20 61 6e 64 20 62 61 |rawfiles, and ba| 000002a0 64 6c 79 2d 62 65 68 61 76 65 64 20 61 70 70 6c |dly-behaved appl| 000002b0 69 63 61 74 69 6f 6e 73 20 77 68 69 63 68 20 70 |ications which p| 000002c0 6c 61 63 65 0a 6e 65 77 20 6f 70 74 69 6f 6e 20 |lace.new option | 000002d0 69 63 6f 6e 73 2c 20 61 72 72 6f 77 20 69 63 6f |icons, arrow ico| 000002e0 6e 73 20 61 6e 64 20 73 75 63 68 20 69 6e 20 74 |ns and such in t| 000002f0 68 65 20 57 49 4d 50 20 70 6f 6f 6c 2e 0a 0a 20 |he WIMP pool... | 00000300 59 6f 75 20 77 69 6c 6c 20 61 6c 73 6f 20 62 65 |You will also be| 00000310 20 63 6f 6e 63 65 72 6e 65 64 2c 20 69 66 20 79 | concerned, if y| 00000320 6f 75 20 64 6f 6e 27 74 20 68 61 76 65 20 6c 6f |ou don't have lo| 00000330 74 73 20 6f 66 20 6d 65 6d 6f 72 79 2c 20 61 74 |ts of memory, at| 00000340 20 61 6c 6c 20 74 68 65 0a 6d 65 6d 6f 72 79 20 | all the.memory | 00000350 74 68 6f 73 65 20 73 6d 61 6c 6c 20 69 63 6f 6e |those small icon| 00000360 73 20 77 69 6c 6c 20 62 65 20 74 61 6b 69 6e 67 |s will be taking| 00000370 20 75 70 2c 20 69 66 20 79 6f 75 20 6f 6e 6c 79 | up, if you only| 00000380 20 75 73 65 20 6c 61 72 67 65 20 69 63 6f 6e 73 | use large icons| 00000390 2c 0a 61 6e 64 20 73 6f 20 64 6f 6e 27 74 20 6e |,.and so don't n| 000003a0 65 65 64 20 74 68 65 6d 2e 0a 0a 20 59 6f 75 20 |eed them... You | 000003b0 6d 61 79 20 65 76 65 6e 20 67 65 74 20 61 6e 6e |may even get ann| 000003c0 6f 79 65 64 20 77 68 65 6e 20 61 70 70 6c 69 63 |oyed when applic| 000003d0 61 74 69 6f 6e 73 20 75 73 65 20 74 68 65 69 72 |ations use their| 000003e0 20 6f 77 6e 20 70 72 69 76 61 74 65 20 73 70 72 | own private spr| 000003f0 69 74 65 73 20 66 6f 72 0a 77 69 6e 64 6f 77 20 |ites for.window | 00000400 66 75 72 6e 69 74 75 72 65 20 28 6f 70 74 69 6f |furniture (optio| 00000410 6e 2c 20 72 61 64 69 6f 2c 20 61 72 72 6f 77 20 |n, radio, arrow | 00000420 61 6e 64 20 67 72 69 67 68 74 29 20 69 6e 73 74 |and gright) inst| 00000430 65 61 64 20 6f 66 20 74 68 65 20 6e 69 63 65 20 |ead of the nice | 00000440 6f 6e 65 73 0a 79 6f 75 27 76 65 20 6c 6f 61 64 |ones.you've load| 00000450 65 64 20 69 6e 74 6f 20 79 6f 75 72 20 57 49 4d |ed into your WIM| 00000460 50 20 70 6f 6f 6c 2e 20 54 68 69 73 20 69 73 20 |P pool. This is | 00000470 67 65 74 74 69 6e 67 20 6d 6f 72 65 20 61 6e 64 |getting more and| 00000480 20 6d 6f 72 65 20 6f 66 20 61 20 70 72 6f 62 6c | more of a probl| 00000490 65 6d 0a 61 73 20 61 70 70 6c 69 63 61 74 69 6f |em.as applicatio| 000004a0 6e 73 20 64 65 73 69 67 6e 65 72 73 20 74 68 69 |ns designers thi| 000004b0 6e 6b 20 69 74 27 73 20 61 20 67 6f 6f 64 20 69 |nk it's a good i| 000004c0 64 65 61 20 74 6f 20 62 75 69 6c 64 20 4e 65 77 |dea to build New| 000004d0 4c 6f 6f 6b 20 69 63 6f 6e 73 20 69 6e 74 6f 0a |Look icons into.| 000004e0 74 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 2c |the application,| 000004f0 20 77 68 69 63 68 20 69 73 20 62 61 64 20 28 65 | which is bad (e| 00000500 73 70 65 63 69 61 6c 6c 79 20 69 66 20 79 6f 75 |specially if you| 00000510 20 64 6f 6e 27 74 20 75 73 65 20 4e 65 77 4c 6f | don't use NewLo| 00000520 6f 6b 29 2e 0a 0a 20 54 68 69 73 20 6d 6f 64 75 |ok)... This modu| 00000530 6c 65 20 66 69 78 65 73 20 74 68 65 73 65 20 70 |le fixes these p| 00000540 72 6f 62 6c 65 6d 73 2e 20 49 74 20 69 6e 74 65 |roblems. It inte| 00000550 72 63 65 70 74 73 20 74 68 65 20 4f 53 5f 53 70 |rcepts the OS_Sp| 00000560 72 69 74 65 4f 70 20 22 6d 65 72 67 65 0a 73 70 |riteOp "merge.sp| 00000570 72 69 74 65 73 20 66 69 6c 65 22 20 63 61 6c 6c |rites file" call| 00000580 2c 20 61 6e 64 20 61 6c 74 65 72 73 20 74 68 65 |, and alters the| 00000590 20 61 63 74 69 6f 6e 20 6f 66 20 74 68 65 20 53 | action of the S| 000005a0 57 49 20 61 63 74 69 6f 6e 20 74 6f 20 64 69 73 |WI action to dis| 000005b0 61 6c 6c 6f 77 20 73 6d 61 6c 6c 0a 69 63 6f 6e |allow small.icon| 000005c0 73 2c 20 61 6e 64 20 74 6f 20 6d 61 6b 65 20 73 |s, and to make s| 000005d0 75 72 65 20 6e 65 77 20 69 63 6f 6e 73 20 64 6f |ure new icons do| 000005e0 20 6e 6f 74 20 72 65 70 6c 61 63 65 20 6f 6c 64 | not replace old| 000005f0 20 6f 6e 65 73 2e 20 42 75 74 20 69 74 20 6d 75 | ones. But it mu| 00000600 73 74 20 6b 6e 6f 77 0a 74 68 61 74 20 74 68 65 |st know.that the| 00000610 20 70 6f 6f 6c 20 69 6e 76 6f 6c 76 65 64 20 69 | pool involved i| 00000620 73 20 69 6e 64 65 65 64 20 74 68 65 20 57 49 4d |s indeed the WIM| 00000630 50 20 73 70 72 69 74 65 20 70 6f 6f 6c 2c 20 6f |P sprite pool, o| 00000640 74 68 65 72 77 69 73 65 20 69 74 20 77 6f 75 6c |therwise it woul| 00000650 64 0a 63 68 61 6e 67 65 20 61 6c 6c 20 73 70 72 |d.change all spr| 00000660 69 74 65 20 6d 65 72 67 65 73 2c 20 77 68 69 63 |ite merges, whic| 00000670 68 20 63 6f 75 6c 64 20 63 61 75 73 65 20 75 6e |h could cause un| 00000680 64 65 73 69 72 65 64 20 65 66 66 65 63 74 73 2e |desired effects.| 00000690 20 53 6f 20 79 6f 75 20 6d 75 73 74 0a 6d 61 72 | So you must.mar| 000006a0 6b 20 74 68 65 20 57 49 4d 50 20 73 70 72 69 74 |k the WIMP sprit| 000006b0 65 20 70 6f 6f 6c 20 77 69 74 68 20 61 20 73 70 |e pool with a sp| 000006c0 72 69 74 65 20 63 61 6c 6c 65 64 20 22 89 77 69 |rite called ".wi| 000006d0 6d 70 70 6f 6f 6c 6d 65 88 22 2c 20 2a 49 63 6f |mppoolme.", *Ico| 000006e0 6e 53 70 72 69 74 65 73 65 64 0a 77 69 74 68 20 |nSpritesed.with | 000006f0 79 6f 75 72 20 6d 61 69 6e 20 73 70 72 69 74 65 |your main sprite| 00000700 20 66 69 6c 65 20 6f 72 20 73 65 70 61 72 61 74 | file or separat| 00000710 65 6c 79 2c 20 70 72 6f 62 61 62 6c 79 20 74 68 |ely, probably th| 00000720 72 6f 75 67 68 20 79 6f 75 72 20 21 42 6f 6f 74 |rough your !Boot| 00000730 20 73 79 73 74 65 6d 2c 0a 69 66 20 79 6f 75 20 | system,.if you | 00000740 68 61 76 65 20 6f 6e 65 2e 20 49 66 20 79 6f 75 |have one. If you| 00000750 20 75 73 65 20 4e 65 77 65 72 4c 6f 6f 6b 2c 20 | use NewerLook, | 00000760 79 6f 75 20 6e 65 65 64 20 6e 6f 74 20 77 6f 72 |you need not wor| 00000770 72 79 20 2d 20 74 68 61 74 20 64 6f 65 73 0a 65 |ry - that does.e| 00000780 76 65 72 79 74 68 69 6e 67 20 66 6f 72 20 79 6f |verything for yo| 00000790 75 2e 0a 0a 20 41 64 64 53 70 72 69 74 65 73 20 |u... AddSprites | 000007a0 66 6f 72 63 65 73 20 61 70 70 6c 69 63 61 74 69 |forces applicati| 000007b0 6f 6e 73 20 74 6f 20 75 73 65 20 57 49 4d 50 20 |ons to use WIMP | 000007c0 73 70 72 69 74 65 73 20 66 6f 72 20 77 69 6e 64 |sprites for wind| 000007d0 6f 77 20 66 75 72 6e 69 74 75 72 65 20 62 79 0a |ow furniture by.| 000007e0 69 6e 74 65 72 63 65 70 74 69 6e 67 20 74 68 65 |intercepting the| 000007f0 20 4f 53 5f 53 70 72 69 74 65 4f 70 20 22 70 6c | OS_SpriteOp "pl| 00000800 6f 74 20 73 70 72 69 74 65 22 20 63 61 6c 6c 2c |ot sprite" call,| 00000810 20 61 6e 64 20 72 65 70 6c 61 63 69 6e 67 20 69 | and replacing i| 00000820 74 20 77 69 74 68 20 61 20 63 61 6c 6c 0a 74 6f |t with a call.to| 00000830 20 57 69 6d 70 5f 53 70 72 69 74 65 4f 70 20 61 | Wimp_SpriteOp a| 00000840 73 20 6c 6f 6e 67 20 61 73 20 74 68 65 20 66 6f |s long as the fo| 00000850 6c 6c 6f 77 69 6e 67 20 63 61 73 65 20 61 70 70 |llowing case app| 00000860 6c 69 65 73 3a 20 74 68 65 20 73 70 72 69 74 65 |lies: the sprite| 00000870 20 62 65 69 6e 67 0a 70 6c 6f 74 74 65 64 20 6d | being.plotted m| 00000880 75 73 74 20 62 65 20 74 68 65 20 73 61 6d 65 20 |ust be the same | 00000890 73 69 7a 65 20 28 69 6e 20 4f 53 20 75 6e 69 74 |size (in OS unit| 000008a0 73 2c 20 6e 6f 74 20 6e 65 63 65 73 73 61 72 69 |s, not necessari| 000008b0 6c 79 20 70 69 78 65 6c 73 29 20 61 73 20 69 74 |ly pixels) as it| 000008c0 73 0a 63 6f 75 6e 74 65 72 70 61 72 74 20 69 6e |s.counterpart in| 000008d0 20 74 68 65 20 57 69 6d 70 20 70 6f 6f 6c 2c 20 | the Wimp pool, | 000008e0 61 6e 64 20 69 74 73 20 6e 61 6d 65 20 69 73 20 |and its name is | 000008f0 6f 6e 65 20 6f 66 20 74 68 65 20 73 70 65 63 69 |one of the speci| 00000900 61 6c 20 6e 61 6d 65 73 20 28 77 68 69 63 68 0a |al names (which.| 00000910 61 72 65 20 74 68 65 20 6f 70 74 73 2c 20 74 68 |are the opts, th| 00000920 65 20 72 61 64 69 6f 73 2c 20 74 68 65 20 61 72 |e radios, the ar| 00000930 72 6f 77 73 20 61 6e 64 20 74 68 65 20 67 72 69 |rows and the gri| 00000940 67 68 74 73 29 2e 20 53 6f 20 74 68 61 74 20 41 |ghts). So that A| 00000950 64 64 53 70 72 69 74 65 73 0a 64 6f 65 73 6e 27 |ddSprites.doesn'| 00000960 74 20 67 65 74 20 69 6e 74 6f 20 61 6e 20 69 6e |t get into an in| 00000970 66 69 6e 69 74 65 20 6c 6f 6f 70 20 63 68 61 6e |finite loop chan| 00000980 67 69 6e 67 20 4f 53 5f 53 70 72 69 74 65 4f 70 |ging OS_SpriteOp| 00000990 73 20 74 6f 20 57 69 6d 70 5f 53 70 72 69 74 65 |s to Wimp_Sprite| 000009a0 4f 70 73 2c 0a 79 6f 75 20 64 6f 20 6e 65 65 64 |Ops,.you do need| 000009b0 20 74 68 65 20 22 89 77 69 6d 70 70 6f 6f 6c 6d | the ".wimppoolm| 000009c0 65 88 22 20 69 6e 20 74 68 65 20 57 49 4d 50 20 |e." in the WIMP | 000009d0 70 6f 6f 6c 20 61 67 61 69 6e 2e 0a 0a 20 4f 66 |pool again... Of| 000009e0 20 63 6f 75 72 73 65 2c 20 79 6f 75 20 6d 69 67 | course, you mig| 000009f0 68 74 20 6f 63 63 61 73 69 6f 6e 61 6c 6c 79 20 |ht occasionally | 00000a00 77 61 6e 74 20 2a 49 63 6f 6e 53 70 72 69 74 65 |want *IconSprite| 00000a10 73 20 74 6f 20 77 6f 72 6b 20 61 73 20 6e 6f 72 |s to work as nor| 00000a20 6d 61 6c 2c 0a 77 68 65 6e 20 73 6f 6d 65 20 73 |mal,.when some s| 00000a30 70 72 69 74 65 73 20 6e 65 65 64 20 74 6f 20 62 |prites need to b| 00000a40 65 20 72 65 70 6c 61 63 65 64 2c 20 77 69 74 68 |e replaced, with| 00000a50 6f 75 74 20 68 61 76 69 6e 67 20 74 6f 20 6b 69 |out having to ki| 00000a60 6c 6c 20 74 68 65 20 6d 6f 64 75 6c 65 2e 0a 41 |ll the module..A| 00000a70 64 64 53 70 72 69 74 65 73 20 64 65 61 63 74 69 |ddSprites deacti| 00000a80 76 61 74 65 73 20 69 74 73 65 6c 66 20 77 68 65 |vates itself whe| 00000a90 6e 20 74 68 65 20 73 79 73 74 65 6d 20 76 61 72 |n the system var| 00000aa0 69 61 62 6c 65 20 3c 41 64 64 53 70 72 69 74 65 |iable <AddSprite| 00000ab0 73 24 43 6f 6e 74 72 6f 6c 3e 0a 69 73 20 73 65 |s$Control>.is se| 00000ac0 74 20 74 6f 20 22 4f 66 66 22 2e 20 53 6f 2c 20 |t to "Off". So, | 00000ad0 74 6f 20 64 69 73 61 62 6c 65 20 41 64 64 53 70 |to disable AddSp| 00000ae0 72 69 74 65 73 2c 20 70 72 65 73 73 20 46 31 32 |rites, press F12| 00000af0 20 61 6e 64 20 74 79 70 65 20 28 6f 72 20 69 6e | and type (or in| 00000b00 63 6c 75 64 65 20 69 6e 0a 61 6e 20 6f 62 65 79 |clude in.an obey| 00000b10 20 66 69 6c 65 29 3a 0a 0a 2a 53 65 74 20 41 64 | file):..*Set Ad| 00000b20 64 53 70 72 69 74 65 73 24 43 6f 6e 74 72 6f 6c |dSprites$Control| 00000b30 20 4f 66 66 0a 0a 41 6e 64 20 74 6f 20 74 75 72 | Off..And to tur| 00000b40 6e 20 69 74 20 62 61 63 6b 20 6f 6e 3a 0a 0a 2a |n it back on:..*| 00000b50 53 65 74 20 41 64 64 53 70 72 69 74 65 73 24 43 |Set AddSprites$C| 00000b60 6f 6e 74 72 6f 6c 20 4f 6e 20 20 20 5b 61 63 74 |ontrol On [act| 00000b70 75 61 6c 6c 79 2c 20 61 6e 79 74 68 69 6e 67 20 |ually, anything | 00000b80 6f 74 68 65 72 20 74 68 61 6e 20 22 4f 66 66 22 |other than "Off"| 00000b90 20 77 69 6c 6c 20 64 6f 5d 0a 0a 20 41 6c 73 6f | will do].. Also| 00000ba0 2c 20 79 6f 75 20 6d 69 67 68 74 20 75 73 65 20 |, you might use | 00000bb0 49 63 6f 6e 44 69 72 20 6f 72 20 4d 65 6e 6f 6e |IconDir or Menon| 00000bc0 2c 20 61 6e 64 20 74 68 75 73 20 6e 65 65 64 20 |, and thus need | 00000bd0 73 6d 61 6c 6c 20 69 63 6f 6e 73 20 61 6e 79 77 |small icons anyw| 00000be0 61 79 2e 20 54 6f 0a 64 6f 20 74 68 69 73 2c 20 |ay. To.do this, | 00000bf0 75 73 65 20 74 68 65 20 41 64 64 53 70 72 69 74 |use the AddSprit| 00000c00 65 73 24 53 6d 61 6c 6c 20 76 61 72 69 61 62 6c |es$Small variabl| 00000c10 65 3a 0a 0a 2a 53 65 74 20 41 64 64 53 70 72 69 |e:..*Set AddSpri| 00000c20 74 65 73 24 53 6d 61 6c 6c 20 5b 4f 6e 7c 4f 66 |tes$Small [On|Of| 00000c30 66 7c 46 69 6c 65 72 5d 0a 0a 20 54 68 65 20 74 |f|Filer].. The t| 00000c40 68 72 65 65 20 73 65 74 74 69 6e 67 73 20 6d 65 |hree settings me| 00000c50 61 6e 3a 20 4f 6e 20 2d 20 73 6d 61 6c 6c 20 73 |an: On - small s| 00000c60 70 72 69 74 65 73 20 61 72 65 20 61 6c 77 61 79 |prites are alway| 00000c70 73 20 61 64 64 65 64 20 28 74 68 69 73 20 69 73 |s added (this is| 00000c80 20 74 68 65 0a 73 65 74 74 69 6e 67 20 79 6f 75 | the.setting you| 00000c90 20 77 61 6e 74 20 69 66 20 79 6f 75 20 75 73 65 | want if you use| 00000ca0 20 49 63 6f 6e 44 69 72 20 6f 72 20 4d 65 6e 6f | IconDir or Meno| 00000cb0 6e 29 3b 20 4f 66 66 20 2d 20 73 6d 61 6c 6c 20 |n); Off - small | 00000cc0 73 70 72 69 74 65 73 20 61 72 65 20 6e 65 76 65 |sprites are neve| 00000cd0 72 0a 61 64 64 65 64 20 74 6f 20 74 68 65 20 57 |r.added to the W| 00000ce0 49 4d 50 20 73 70 72 69 74 65 20 70 6f 6f 6c 3b |IMP sprite pool;| 00000cf0 20 46 69 6c 65 72 20 2d 20 73 6d 61 6c 6c 20 73 | Filer - small s| 00000d00 70 72 69 74 65 73 20 61 72 65 20 61 64 64 65 64 |prites are added| 00000d10 20 74 6f 20 74 68 65 20 57 49 4d 50 0a 70 6f 6f | to the WIMP.poo| 00000d20 6c 20 6f 6e 6c 79 20 69 66 20 74 68 65 20 46 69 |l only if the Fi| 00000d30 6c 65 72 20 69 73 20 73 65 74 20 74 6f 20 64 69 |ler is set to di| 00000d40 73 70 6c 61 79 20 74 68 65 6d 2e 20 49 66 20 74 |splay them. If t| 00000d50 68 65 20 76 61 72 69 61 62 6c 65 20 69 73 20 6e |he variable is n| 00000d60 6f 74 20 73 65 74 0a 74 6f 20 61 6e 79 20 6f 66 |ot set.to any of| 00000d70 20 74 68 65 73 65 2c 20 74 68 65 20 64 65 66 61 | these, the defa| 00000d80 75 6c 74 2c 20 46 69 6c 65 72 2c 20 69 73 20 63 |ult, Filer, is c| 00000d90 68 6f 73 65 6e 2e 20 4e 6f 74 65 20 74 68 61 74 |hosen. Note that| 00000da0 20 6e 65 77 65 72 20 76 65 72 73 69 6f 6e 73 20 | newer versions | 00000db0 6f 66 0a 49 63 6f 6e 44 69 72 20 61 75 74 6f 6d |of.IconDir autom| 00000dc0 61 74 69 63 61 6c 6c 79 20 73 65 74 20 41 64 64 |atically set Add| 00000dd0 53 70 72 69 74 65 73 24 53 6d 61 6c 6c 20 74 6f |Sprites$Small to| 00000de0 20 4f 6e 2e 0a 0a 20 59 6f 75 20 63 61 6e 20 61 | On... You can a| 00000df0 6c 73 6f 20 64 69 73 61 62 6c 65 20 74 68 65 20 |lso disable the | 00000e00 57 49 4d 50 2d 66 6f 72 63 69 6e 67 20 66 65 61 |WIMP-forcing fea| 00000e10 74 75 72 65 20 62 79 20 73 65 74 74 69 6e 67 20 |ture by setting | 00000e20 74 68 65 20 73 79 73 74 65 6d 20 76 61 72 69 61 |the system varia| 00000e30 62 6c 65 0a 3c 41 64 64 53 70 72 69 74 65 73 24 |ble.<AddSprites$| 00000e40 46 6f 72 63 65 57 69 6d 70 3e 20 74 6f 20 22 4f |ForceWimp> to "O| 00000e50 66 66 22 2e 0a 0a 20 4f 68 2c 20 6f 6e 65 20 6c |ff"... Oh, one l| 00000e60 61 73 74 20 4e 42 3a 20 74 68 69 73 20 6d 6f 64 |ast NB: this mod| 00000e70 75 6c 65 20 6f 6e 6c 79 20 70 72 6f 74 65 63 74 |ule only protect| 00000e80 73 20 73 70 72 69 74 65 73 20 6c 6f 61 64 65 64 |s sprites loaded| 00000e90 20 69 6e 74 6f 20 74 68 65 20 52 41 4d 20 57 49 | into the RAM WI| 00000ea0 4d 50 0a 70 6f 6f 6c 2e 20 49 74 20 77 6f 6e 27 |MP.pool. It won'| 00000eb0 74 20 70 72 6f 74 65 63 74 20 52 4f 4d 2d 62 61 |t protect ROM-ba| 00000ec0 73 65 64 20 73 70 72 69 74 65 73 2e 20 53 6f 72 |sed sprites. Sor| 00000ed0 72 79 2e 0a 0a 20 54 68 61 74 27 73 20 61 62 6f |ry... That's abo| 00000ee0 75 74 20 69 74 20 72 65 61 6c 6c 79 2e 20 45 6e |ut it really. En| 00000ef0 6a 6f 79 21 0a 0a 0a 3d 3d 3e 20 48 69 73 74 6f |joy!...==> Histo| 00000f00 72 79 0a 0a 30 2e 30 31 20 3a 20 53 74 6f 70 73 |ry..0.01 : Stops| 00000f10 20 72 65 70 6c 61 63 65 6d 65 6e 74 20 6f 66 20 | replacement of | 00000f20 65 78 69 73 74 69 6e 67 20 57 49 4d 50 20 73 70 |existing WIMP sp| 00000f30 72 69 74 65 73 2e 20 4e 6f 74 20 70 75 62 6c 69 |rites. Not publi| 00000f40 63 61 6c 6c 79 20 72 65 6c 65 61 73 65 64 2e 0a |cally released..| 00000f50 30 2e 30 32 20 3a 20 4e 6f 77 20 69 6e 63 6c 75 |0.02 : Now inclu| 00000f60 64 65 73 20 3c 41 64 64 53 70 72 69 74 65 73 24 |des <AddSprites$| 00000f70 43 6f 6e 74 72 6f 6c 3e 20 76 61 72 69 61 62 6c |Control> variabl| 00000f80 65 20 74 6f 20 61 6c 6c 6f 77 20 6d 6f 64 75 6c |e to allow modul| 00000f90 65 20 74 6f 20 62 65 0a 20 20 20 20 20 20 20 74 |e to be. t| 00000fa0 65 6d 70 6f 72 61 72 69 6c 79 20 64 69 73 61 62 |emporarily disab| 00000fb0 6c 65 64 2e 20 49 6e 63 6c 75 64 65 64 20 77 69 |led. Included wi| 00000fc0 74 68 20 4e 65 77 65 72 4c 6f 6f 6b 20 72 65 6c |th NewerLook rel| 00000fd0 65 61 73 65 20 31 2e 30 30 2e 0a 30 2e 30 33 20 |ease 1.00..0.03 | 00000fe0 3a 20 53 74 6f 70 73 20 73 6d 61 6c 6c 20 69 63 |: Stops small ic| 00000ff0 6f 6e 73 20 66 72 6f 6d 20 62 65 69 6e 67 20 61 |ons from being a| 00001000 64 64 65 64 20 69 66 20 74 68 65 20 46 69 6c 65 |dded if the File| 00001010 72 20 69 73 20 63 6f 6e 66 69 67 75 72 65 64 20 |r is configured | 00001020 74 6f 0a 20 20 20 20 20 20 20 27 6c 61 72 67 65 |to. 'large| 00001030 20 69 63 6f 6e 73 27 2e 20 4e 6f 74 20 70 75 62 | icons'. Not pub| 00001040 6c 69 63 61 6c 6c 79 20 72 65 6c 65 61 73 65 64 |lically released| 00001050 2e 0a 30 2e 30 34 20 3a 20 4e 6f 77 20 61 6c 6c |..0.04 : Now all| 00001060 6f 77 73 20 74 68 65 20 61 64 64 69 6e 67 20 6f |ows the adding o| 00001070 66 20 73 6d 61 6c 6c 20 69 63 6f 6e 73 20 74 6f |f small icons to| 00001080 20 62 65 20 63 6f 6e 74 72 6f 6c 6c 65 64 20 77 | be controlled w| 00001090 69 74 68 20 61 6e 6f 74 68 65 72 0a 20 20 20 20 |ith another. | 000010a0 20 20 20 76 61 72 69 61 62 6c 65 2e 20 52 65 6c | variable. Rel| 000010b0 65 61 73 65 64 20 73 65 70 61 72 61 74 65 6c 79 |eased separately| 000010c0 20 61 6e 64 20 77 69 74 68 20 4e 65 77 65 72 4c | and with NewerL| 000010d0 6f 6f 6b 20 72 65 6c 65 61 73 65 73 20 31 2e 30 |ook releases 1.0| 000010e0 31 20 74 6f 0a 20 20 20 20 20 20 20 32 2e 30 31 |1 to. 2.01| 000010f0 2e 0a 30 2e 30 35 20 3a 20 4e 6f 77 20 69 6e 74 |..0.05 : Now int| 00001100 65 72 63 65 70 74 73 20 4f 53 5f 53 70 72 69 74 |ercepts OS_Sprit| 00001110 65 4f 70 20 73 70 72 69 74 65 20 70 6c 6f 74 73 |eOp sprite plots| 00001120 20 69 6e 20 6f 72 64 65 72 20 74 6f 20 6d 61 6b | in order to mak| 00001130 65 20 73 75 72 65 20 63 65 72 74 61 69 6e 0a 20 |e sure certain. | 00001140 20 20 20 20 20 20 73 74 61 6e 64 61 72 64 20 73 | standard s| 00001150 70 72 69 74 65 73 20 61 72 65 20 70 6c 6f 74 74 |prites are plott| 00001160 65 64 20 66 72 6f 6d 20 74 68 65 20 57 49 4d 50 |ed from the WIMP| 00001170 20 70 6f 6f 6c 2e 20 52 65 6c 65 61 73 65 64 20 | pool. Released | 00001180 73 65 70 61 72 61 74 65 6c 79 0a 20 20 20 20 20 |separately. | 00001190 20 20 61 6e 64 20 77 69 74 68 20 4e 65 77 65 72 | and with Newer| 000011a0 4c 6f 6f 6b 20 72 65 6c 65 61 73 65 20 32 2e 30 |Look release 2.0| 000011b0 32 20 61 6e 64 20 6c 61 74 65 72 2e 0a 0a 0a 3d |2 and later....=| 000011c0 3d 3e 20 43 6f 6e 74 61 63 74 73 0a 0a 20 54 6f |=> Contacts.. To| 000011d0 20 63 6f 6e 74 61 63 74 20 6d 65 2c 20 66 6f 72 | contact me, for| 000011e0 20 70 72 61 69 73 65 2c 20 74 6f 20 73 75 67 67 | praise, to sugg| 000011f0 65 73 74 20 6e 65 77 20 62 69 74 73 20 74 6f 20 |est new bits to | 00001200 61 64 64 2c 20 6f 72 2c 20 68 65 61 76 65 6e 20 |add, or, heaven | 00001210 66 6f 72 62 69 64 2c 0a 74 6f 20 72 65 70 6f 72 |forbid,.to repor| 00001220 74 20 61 20 62 75 67 2c 20 70 6c 65 61 73 65 20 |t a bug, please | 00001230 77 72 69 74 65 20 74 6f 3a 0a 0a 20 20 20 37 20 |write to:.. 7 | 00001240 42 6c 61 63 6b 68 6f 72 73 65 20 43 72 65 73 63 |Blackhorse Cresc| 00001250 65 6e 74 2c 0a 20 20 20 20 41 6d 65 72 73 68 61 |ent,. Amersha| 00001260 6d 2c 0a 20 20 20 20 20 42 75 63 6b 73 2e 2c 0a |m,. Bucks.,.| 00001270 20 20 20 20 20 20 48 50 36 20 36 48 50 2e 0a 0a | HP6 6HP...| 00001280 20 59 6f 75 20 63 61 6e 20 70 68 6f 6e 65 20 6d | You can phone m| 00001290 65 20 6f 6e 20 30 31 34 39 34 2d 34 33 31 39 31 |e on 01494-43191| 000012a0 36 2c 20 73 65 6e 64 20 61 20 66 61 78 20 6f 6e |6, send a fax on| 000012b0 20 30 31 34 39 34 2d 36 37 35 38 37 38 2c 20 73 | 01494-675878, s| 000012c0 65 6e 64 20 6d 65 20 73 6f 6d 65 0a 65 6d 61 69 |end me some.emai| 000012d0 6c 20 61 73 20 61 6a 63 40 64 6f 67 67 79 73 66 |l as ajc@doggysf| 000012e0 74 2e 64 65 6d 6f 6e 2e 63 6f 2e 75 6b 20 6f 72 |t.demon.co.uk or| 000012f0 20 65 76 65 6e 20 74 65 6c 65 78 20 6f 6e 20 38 | even telex on 8| 00001300 33 36 37 35 20 42 72 69 74 20 47 2e 0a |3675 Brit G..| 0000130d