home *** CD-ROM | disk | FTP | other *** search
- // START.ACE
- // Jumpstart Toddlers' entry point.
- //
- // Written by: Danny Hendargo
- //
- // $Log: start.ace $
- // Revision 1.5 1996/02/07 15:53:13 DANNY
- // Set the window icon to toddler.cmp.
- // Revision 1.4 1996/01/24 18:37:44 DANNY
- // Turn kidClicking on from script. Move "set sectionName" to the first command.
- // Revision 1.3 1996/01/22 14:02:41 DANNY
- // Use all 4 audio channels.
- // Revision 1.2 1996/01/16 12:12:16 DANNY
- // Set sectionName right in the beginning.
- // Revision 1.1 1996/01/05 15:05:02 DANNY
- // Tribrid Build 1.
- // ---------------------------------------------------------------------------
-
- //
- // If we want to set border color for screen larger than 640x480,
- // ini file's [TODDLER] should have kidProof=YES and borderColor=r,g,b.
- // Also, "-iniSect TODDLER" (and "-iniFile xxxxxxxx.ini", depending on
- // the implementation) should be included in the command line.
- //
- Set currentIniSection's sectionName to "TODDLER". // not early enough to set borderColor
-
- Set the window icon to toddler.cmp. // mainly for win 3.1
-
- //
- // On MAC, the border color is black and not changeable.
- // On Windows 3.11, the default border is the closest
- // On Windows, the border color is white by default.
- // If run from AUTORUN, it is close to AUTORUN.INI's borderColor.
- // If run from TODDLER, it is close to KA.INI's [TODDLER]'s borderColor.
- // By "close" I mean: the engine will pick from Windows system colors
- // the color with RGB value closest to borderColor specified.
- //
- Turn kidProofing on. // no effect if kidProofing is turned on from inifile.
-
- //
- // On MAC, which has 2 channels, this uses additional 68K of memory.
- // 4 (or at least 3) channels is needed by the kinetic module.
- //
- Set the number of sound channels to 4. // no effect on windows
-
- In system,
- Make _fullVersion. // not stand-alone
-
- Refer to bone\bomain.ace.
- //Refer to story\stmain.ACE.
- //Refer to abc\abmain.ace.
- //Refer to peek\pemain.ace.
- //Refer to music\mumain.ace.
- //Refer to 123\numain.ace.
- //Refer to kinetic\kimain.ace.
-
- Include main.ace.
-
- //////////////////////////////////////////////////////////////////////////////
-