Advertisement
Guest User

code

a guest
Jun 20th, 2018
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Creature(x,y,dna){
  2.   this.x=x;
  3.   this.y=y;
  4.  
  5.   if(dna!=null){
  6.     this.dna = dna;
  7.   } else {
  8.     this.dna = generateDNA();
  9.   }
  10.  
  11.   this.update() = function(){
  12.     this.i=0;
  13.     while(i<this.dna.length){
  14.       switch(this.dna[i]){
  15.         case 1:
  16.           this.move(this.dna[i+1]);
  17.           i+=2;
  18.         default:
  19.           break;
  20.       }
  21.     }
  22.   }
  23.  
  24.   this.move = function(cell){
  25.     switch(cell){
  26.       case 1:
  27.         this.y--;
  28.         break;
  29.       case 2:
  30.         this.y--;
  31.         this.x++;
  32.         break;
  33.       case 3:
  34.         this.x++;
  35.         break;
  36.       case 4:
  37.         this.y++;
  38.         this.x++;
  39.         break;
  40.       case 5:
  41.         this.y++;
  42.         break;
  43.       case 6:
  44.         this.y++;
  45.         this.x--;
  46.         break;
  47.       case 7:
  48.         this.x--;
  49.         break;
  50.       case 8:
  51.         this.y--;
  52.         this.x--;
  53.         break;
  54.       case 9:
  55.         this.move(random(0,8));
  56.         break;
  57.     }
  58.   }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement