home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / MegaJitterV1,3.LHA / rexx / god next >
Encoding:
Text File  |  1994-05-17  |  5.5 KB  |  199 lines

  1. /****************************************************************************
  2. * MegaJitter GOD                                            (C) LVA May 1994
  3. * --------------                                            ----------------
  4. * This AREXX program generates RANDOM ecosystems for MegaJitter and subse-
  5. * quently tests their stability.
  6. * Settings which produce long-lived ecosystems are printed on the screen.
  7. * Criteria for a healthy ecosystem are:
  8. *  - at least one run of 50'000 time steps.
  9. *  - not more than 3 total extinctions
  10. * I think God must have had a similar program to determine the incredibly
  11. * fine-tuned Universal constants for our own Universe....
  12. * Doing it by hand is real tedious monkey work !
  13. ****************************************************************************/
  14.  
  15. OPTIONS FAILAT 1000000    /* don't want REXX to complain about legal return values! */
  16.  
  17. SIGNAL ON BREAK_C
  18. SIGNAL ON HALT
  19.  
  20. /* WATCH OUT : we're going to use two command hosts.
  21.        PRIMARY        : MegaJitter itself
  22.     SECONDARY    : AmigaDOS
  23.  
  24.    By simply saying "ADRRESS" on its own, we toggle between the two */
  25.  
  26. ADDRESS COMMAND                /* Secondary host first ... */
  27. 'RESIDENT C:WAIT'            /* cache wait command since we need it often */
  28.  
  29. ADDRESS "REXX-MJ"            /* MegaJitter has to be running already... */
  30.  
  31. SAY "MegaJitter GOD: The Automated Universe Creator (just sit back and watch)"
  32. SAY
  33.  
  34. RANDU(time('S'))            /* Randomize random number sequence (sigh) */
  35.  
  36. DO FOREVER                    /* Use CTRL-C to break out guys.. */
  37.  
  38.     CALL gen_random_parms    /* roll some dice.. make a new Universe */
  39.     CALL config_MJ
  40.  
  41.     'MJ_RESET'                /* Use new constants */
  42.  
  43.     CALL TIME('R')            /* reset elapsed time clock */
  44.  
  45.     max_time = 0            /* reset oldest ecosystem age */
  46.  
  47.     i = 0                    /* circular buffer index */
  48.     bugs.0 = 0
  49.     bugs.1 = 0                /* bugs[5] */
  50.     bugs.2 = 0
  51.     bugs.3 = 0
  52.     bugs.4 = 0
  53.  
  54.     DO WHILE TIME('E') < 15*60
  55.  
  56.  
  57.     /**** SAMPLE RUNNING ECOSYSTEM EVERY 5 SECS ***/
  58.  
  59.         ADDRESS                /* toggle hosts */
  60.         'Wait 5 secs'        /* we're not Busy waiting !! */
  61.         ADDRESS                /* toggle hosts */
  62.  
  63.     /**** TRACK MAXIMUM ECOSYSTEM AGE ***/
  64.  
  65.         'MJ_TIMESTEPS?'
  66.         IF RC > max_time THEN max_time = RC
  67.  
  68.     /**** IF ECOSYSTEM DIES OUT TOO OFTEN, TRY ANOTHER ... ***/
  69.  
  70.         'MJ_RUNS?'            /* Ask MJ how many extinctions have occured */
  71.         IF RC > 3 THEN DO
  72.             SAY "Ecosystem failed because too many extinctions in just " TIME('E') "SECONDS"
  73.             LEAVE            /* Try another set of constants then ... */
  74.         END
  75.  
  76.     /**** TRACK CURRENT POPULATION. IF CONSTANTLY EXPLODING, TRY ANOTHER... ***/
  77.  
  78.         'MJ_BUGS?'            /* howmany bugs do we have now ? */
  79.         bugs.i = RC
  80.  
  81.         i = ((i+1) // 4)
  82.  
  83.         total = 0
  84.         DO n = 0 to 3
  85.             total = total + bugs.n
  86.         END
  87.         total = total / 4
  88.  
  89.         IF total > 280 THEN DO
  90.             SAY "Ecosystem failed because population too numerous."
  91.             max_time = 0
  92.             LEAVE
  93.         END
  94.  
  95.     END
  96.  
  97.     'MJ_RUNS?'
  98.     IF RC < 3 & max_time > 50000 THEN DO
  99.         SAY "Ecosystem succeeded ! (Max Age achieved =" max_time ")"
  100.         CALL dump_constants
  101.     END
  102. END
  103.  
  104.  
  105.  
  106. EXIT                        /* END OF THE PROGRAM */
  107.  
  108. /* ------------------------------------------------------------------------ */
  109. /* Generate legal, random parameter settings to configure a new ecosystem.    */
  110. /* ------------------------------------------------------------------------ */
  111. gen_random_parms:
  112.  
  113.     init_bugs       = rand(10,50)            /* never more than MAX_BUGS **!! */
  114.     init_food       = rand(50,4000)
  115.     init_energy     = rand(50,3000)
  116.     init_variance   = rand(80,240)
  117.     mutate_range    = rand(20,100)
  118.     food_rate       = rand(1,20)        
  119.     food_energy     = rand(100,2000)
  120.     oasis_size      = 0
  121.     x_pattern       = 1
  122.     y_pattern       = 1            
  123.  
  124.     return
  125.  
  126. /* ------------------------------------------------------------------------ */
  127. /* Send new parameter settings to MegaJitter using the assignment syntax.   */
  128. /* ------------------------------------------------------------------------ */
  129. config_MJ:
  130.  
  131.     'INIT_BUGS'        init_bugs
  132.     'INIT_FOOD'        init_food
  133.     'INIT_ENERGY'    init_energy
  134.     'INIT_VARIANCE'    init_variance
  135.     'MUTATE_RANGE'    mutate_range    
  136.     'FOOD_RATE'        food_rate
  137.     'FOOD_ENERGY'    food_energy
  138.     'OASIS_SIZE'    oasis_size
  139.     'X_PATTERN'        x_pattern
  140.     'Y_PATTERN'        y_pattern
  141.  
  142.     'MJ_VISION'            /*   <<<<<<    */
  143.     'MJ_NOSEX'
  144.  
  145.     SAY
  146.     SAY "Trying out a NEW random Ecosystem on"
  147.     ADDRESS COMMAND 'DATE'
  148.  
  149.     return
  150.  
  151. /* ------------------------------------------------------------------------ */
  152. /* The current settings produced a long-lived ecosystem: dump settings.     */
  153. /* ------------------------------------------------------------------------ */
  154. dump_constants:
  155.  
  156.     SAY "Ecosystem had the following parameters:"
  157.     SAY
  158.     
  159.     SAY 'INIT_BUGS    =' init_bugs
  160.     SAY 'INIT_FOOD    =' init_food
  161.     SAY 'INIT_ENERGY    =' food_energy
  162.     SAY 'INIT_VARIANCE    =' init_variance
  163.     SAY 'MUTATE_RANGE    =' mutate_range    
  164.     SAY 'FOOD_RATE    =' food_rate
  165.     SAY 'FOOD_ENERGY    =' food_energy
  166.     SAY 'OASIS_SIZE    =' oasis_size
  167.     SAY 'X_PATTERN    =' x_pattern
  168.     SAY 'Y_PATTERN    =' y_pattern
  169.  
  170.     SAY
  171.     return
  172.  
  173. /* ------------------------------------------------------------------------ */
  174. /* A better RANDOM(low, high) without the 1.999 limitation !                */
  175. /* ------------------------------------------------------------------------ */
  176. RAND:
  177.     arg low,high
  178.  
  179.     range = high - low
  180.  
  181.     return (low + (randu()*range)%1)
  182.  
  183. /* ------------------------------------------------------------------------ */
  184. /*                        SPECIAL REXX INTERRUPT HANDLERS                        */
  185. /* ------------------------------------------------------------------------ */
  186.  
  187. BREAK_C:
  188.     SAY "^C *** PROGRAM ABORTED ***"
  189.     EXIT
  190. /* ------------------------------------------------------------------------ */
  191. HALT:
  192.     SAY "*** PROGRAM ABORTED *** (External HALT issued)"
  193.     EXIT
  194. /* ------------------------------------------------------------------------ */
  195.