home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- * MegaJitter GOD (C) LVA May 1994
- * -------------- ----------------
- *
- * This AREXX program generates RANDOM ecosystems for MegaJitter and subse-
- * quently tests their stability.
- * Settings which produce long-lived ecosystems are printed on the screen.
- *
- * Criteria for a healthy ecosystem are:
- * - at least one run of 50'000 time steps.
- * - not more than 3 total extinctions
- *
- * I think God must have had a similar program to determine the incredibly
- * fine-tuned Universal constants for our own Universe....
- * Doing it by hand is real tedious monkey work !
- *
- ****************************************************************************/
-
- OPTIONS FAILAT 1000000 /* don't want REXX to complain about legal return values! */
-
- SIGNAL ON BREAK_C
- SIGNAL ON HALT
-
- /* WATCH OUT : we're going to use two command hosts.
- PRIMARY : MegaJitter itself
- SECONDARY : AmigaDOS
-
- By simply saying "ADRRESS" on its own, we toggle between the two */
-
- ADDRESS COMMAND /* Secondary host first ... */
- 'RESIDENT C:WAIT' /* cache wait command since we need it often */
-
- ADDRESS "REXX-MJ" /* MegaJitter has to be running already... */
-
- SAY "MegaJitter GOD: The Automated Universe Creator (just sit back and watch)"
- SAY
-
- RANDU(time('S')) /* Randomize random number sequence (sigh) */
-
- DO FOREVER /* Use CTRL-C to break out guys.. */
-
- CALL gen_random_parms /* roll some dice.. make a new Universe */
- CALL config_MJ
-
- 'MJ_RESET' /* Use new constants */
-
- CALL TIME('R') /* reset elapsed time clock */
-
- max_time = 0 /* reset oldest ecosystem age */
-
- i = 0 /* circular buffer index */
- bugs.0 = 0
- bugs.1 = 0 /* bugs[5] */
- bugs.2 = 0
- bugs.3 = 0
- bugs.4 = 0
-
- DO WHILE TIME('E') < 15*60
-
-
- /**** SAMPLE RUNNING ECOSYSTEM EVERY 5 SECS ***/
-
- ADDRESS /* toggle hosts */
- 'Wait 5 secs' /* we're not Busy waiting !! */
- ADDRESS /* toggle hosts */
-
- /**** TRACK MAXIMUM ECOSYSTEM AGE ***/
-
- 'MJ_TIMESTEPS?'
- IF RC > max_time THEN max_time = RC
-
- /**** IF ECOSYSTEM DIES OUT TOO OFTEN, TRY ANOTHER ... ***/
-
- 'MJ_RUNS?' /* Ask MJ how many extinctions have occured */
- IF RC > 3 THEN DO
- SAY "Ecosystem failed because too many extinctions in just " TIME('E') "SECONDS"
- LEAVE /* Try another set of constants then ... */
- END
-
- /**** TRACK CURRENT POPULATION. IF CONSTANTLY EXPLODING, TRY ANOTHER... ***/
-
- 'MJ_BUGS?' /* howmany bugs do we have now ? */
- bugs.i = RC
-
- i = ((i+1) // 4)
-
- total = 0
- DO n = 0 to 3
- total = total + bugs.n
- END
- total = total / 4
-
- IF total > 280 THEN DO
- SAY "Ecosystem failed because population too numerous."
- max_time = 0
- LEAVE
- END
-
- END
-
- 'MJ_RUNS?'
- IF RC < 3 & max_time > 50000 THEN DO
- SAY "Ecosystem succeeded ! (Max Age achieved =" max_time ")"
- CALL dump_constants
- END
- END
-
-
-
- EXIT /* END OF THE PROGRAM */
-
- /* ------------------------------------------------------------------------ */
- /* Generate legal, random parameter settings to configure a new ecosystem. */
- /* ------------------------------------------------------------------------ */
- gen_random_parms:
-
- init_bugs = rand(10,50) /* never more than MAX_BUGS **!! */
- init_food = rand(50,4000)
- init_energy = rand(50,3000)
- init_variance = rand(80,240)
- mutate_range = rand(20,100)
- food_rate = rand(1,20)
- food_energy = rand(100,2000)
- oasis_size = 0
- x_pattern = 1
- y_pattern = 1
-
- return
-
- /* ------------------------------------------------------------------------ */
- /* Send new parameter settings to MegaJitter using the assignment syntax. */
- /* ------------------------------------------------------------------------ */
- config_MJ:
-
- 'INIT_BUGS' init_bugs
- 'INIT_FOOD' init_food
- 'INIT_ENERGY' init_energy
- 'INIT_VARIANCE' init_variance
- 'MUTATE_RANGE' mutate_range
- 'FOOD_RATE' food_rate
- 'FOOD_ENERGY' food_energy
- 'OASIS_SIZE' oasis_size
- 'X_PATTERN' x_pattern
- 'Y_PATTERN' y_pattern
-
- 'MJ_VISION' /* <<<<<< */
- 'MJ_NOSEX'
-
- SAY
- SAY "Trying out a NEW random Ecosystem on"
- ADDRESS COMMAND 'DATE'
-
- return
-
- /* ------------------------------------------------------------------------ */
- /* The current settings produced a long-lived ecosystem: dump settings. */
- /* ------------------------------------------------------------------------ */
- dump_constants:
-
- SAY "Ecosystem had the following parameters:"
- SAY
-
- SAY 'INIT_BUGS =' init_bugs
- SAY 'INIT_FOOD =' init_food
- SAY 'INIT_ENERGY =' food_energy
- SAY 'INIT_VARIANCE =' init_variance
- SAY 'MUTATE_RANGE =' mutate_range
- SAY 'FOOD_RATE =' food_rate
- SAY 'FOOD_ENERGY =' food_energy
- SAY 'OASIS_SIZE =' oasis_size
- SAY 'X_PATTERN =' x_pattern
- SAY 'Y_PATTERN =' y_pattern
-
- SAY
- return
-
- /* ------------------------------------------------------------------------ */
- /* A better RANDOM(low, high) without the 1.999 limitation ! */
- /* ------------------------------------------------------------------------ */
- RAND:
- arg low,high
-
- range = high - low
-
- return (low + (randu()*range)%1)
-
- /* ------------------------------------------------------------------------ */
- /* SPECIAL REXX INTERRUPT HANDLERS */
- /* ------------------------------------------------------------------------ */
-
- BREAK_C:
- SAY "^C *** PROGRAM ABORTED ***"
- EXIT
- /* ------------------------------------------------------------------------ */
- HALT:
- SAY "*** PROGRAM ABORTED *** (External HALT issued)"
- EXIT
- /* ------------------------------------------------------------------------ */
-