Loading...
Logo
Processing Forum
Example of what I did: 
ArrayList<Integer> distance=new ArrayList();
int a=7;
distance.add(a);

Returns: Cannot invoke add(int) on the primitive type int

Replies(7)

I tested your code on both Processing 2.0 & 1.5.1 and works alright:
Copy code
    final ArrayList<Integer> distance = new ArrayList();
    
    int a=7;
    distance.add(a);
    
    println( distance.get(0) );
    
    exit();
    
    

same here.

did you test your minimum working example and still get the same error or just post the mwe?

if not, then perhaps the problem is elsewhere in your code.

if so, restart? reinstall? perhaps?
I'm making a Super Hexagon type game. See if you can find an error in this WALL of code, please. I can't find it.

Copy code
  1. import ddf.minim.*;
  2. import ddf.minim.analysis.*;
  3. AudioPlayer player1;
  4. Minim minim1;
  5. BeatDetect beat;

  6. ArrayList<Integer> distance=new ArrayList();
  7. ArrayList<Integer> size=new ArrayList();
  8. ArrayList<Integer> offset=new ArrayList();
  9. int numberOfObstacles=0;
  10. int ignoreBefore=0;
  11. int formationOffset;
  12. int formationID;
  13. int turnSetting=0;
  14. int scene=1;
  15. int playerOffset;
  16. int worldRotation;
  17. boolean rotationDirection;
  18. int scrad;
  19. int playerPosition;
  20. int counter;
  21. public void setup(){
  22.   size(displayWidth, displayHeight-40);
  23.   minim1=new Minim(this);
  24.   player1=minim1.loadFile("Courtesy.mp3", 2048);
  25.   scrad=int(sqrt(width/2*width/2+height/2*height/2)*5/4);
  26.   distance.add(new Integer(20));
  27. size.add(20);
  28. offset.add(60);
  29. }
  30. public void draw(){
  31.   background(0);
  32.   if(scene==1){
  33.     //-----=#########=-----//
  34.     //-----=#SCENE 1#=-----//
  35.     //-----=#########=-----//
  36.     noStroke();
  37.     fill(255);
  38.     textSize(128);
  39.     textAlign(CENTER);
  40.     text("SUPER HEXAGON", width/2, height/4);
  41.     textAlign(LEFT);
  42.     fill(175);
  43.     if(width/2<mouseX && mouseX<width/2+150 && height/2<mouseY && mouseY<height/2+50){
  44.       if(mousePressed){
  45.       scene2();
  46.       player1.play();
  47.       }else{
  48.         fill(250);
  49.       }
  50.     }
  51.     quad(width/2-10, height/2+60, width/2+160, height/2+60, width/2+125, height/2-10, width/2+25, height/2-10);
  52.     fill(100);
  53.     quad(width/2, height/2+50, width/2+150, height/2+50, width/2+125, height/2, width/2+25, height/2);
  54.     fill(255);
  55.     textSize(40);
  56.     text("Start", width/2+35, height/2+40);
  57.   }else if(scene==2){
  58.     //-----=#########=-----//
  59.     //-----=#SCENE 2#=-----//
  60.     //-----=#########=-----//
  61.     noStroke();
  62.     float angle=360/6;
  63.     worldRotation=worldRotation+2;
  64.     if(worldRotation==360){
  65.       worldRotation=0;
  66.     }
  67.     if(counter>40){
  68.       startSpawning();
  69.       counter=1;
  70.     }else{
  71.       counter++;
  72.     }
  73.     for(int i=0;i<7;i++){
  74.       if(i==2 || i==4 || i==6){
  75.         fill(50);
  76.       }else{
  77.         fill(75);
  78.       }
  79.       beginShape();
  80.       vertex(width/2, height/2);
  81.       vertex(width/2+scrad*sin(radians(angle*i+worldRotation)), height/2+scrad*4/5*cos(radians(angle*i+worldRotation)));
  82.       vertex(width/2+scrad*sin(radians(angle*(i+1)+worldRotation)), height/2+scrad*4/5*cos(radians(angle*(i+1)+worldRotation)));
  83.       endShape(CLOSE);
  84.     }
  85.     //--------------------------=Obstacle Processing=---------------------------//
  86.     fill(255);
  87.     for(int i=ignoreBefore;i<numberOfObstacles+1;i++){
  88.       beginShape();
  89.       vertex(width/2+distance.get(i)*sin(radians(worldRotation+int(offset.get(i)))), height/2+(int(distance.get(i))*4/5)*cos(radians(worldRotation+int(offset.get(i)))));
  90.       vertex(width/2+distance.get(i)*sin(radians(worldRotation+offset.get(i)+60)), height/2+(distance.get(i)*4/5)*cos(radians(worldRotation+offset.get(i)+60)));
  91.       vertex(width/2+(distance.get(i)+size.get(i))*sin(radians(worldRotation+offset.get(i))), height/2+(distance.get(i)*4/5)*cos(radians(worldRotation+offset.get(i))));
  92.       vertex(width/2+(distance.get(i)+size.get(i))*sin(radians(worldRotation+offset.get(i)+60)), height/2+(distance.get(i)*4/5)*cos(radians(worldRotation+offset.get(i)+60)));
  93.       endShape(CLOSE);
  94.       int pdist=distance.get(i);
  95.       distance.remove(i);
  96.       distance.add(i, pdist);
  97.       
  98.       if(distance.get(i)<40){
  99.         ignoreBefore++;
  100.       }else if(distance.get(i)<=80){
  101.         if(offset.get(i)<=playerOffset && offset.get(i)+60>=playerOffset){
  102.           scene=1;
  103.           player1.pause();
  104.           cursor();
  105.         }
  106.       }
  107.     }
  108.     fill(255);
  109.     text(numberOfObstacles-ignoreBefore, 20, 200);
  110.       beginShape();
  111.       for(int i=0;i<7;i++){
  112.         vertex(width/2+(player1.getVolume()+50)*sin(radians(angle*i+worldRotation)), height/2+(player1.getVolume()-10+50)*cos(radians(angle*i+worldRotation)));
  113.       }
  114.       endShape(CLOSE);
  115.       fill(75);
  116.       beginShape();
  117.       for(int i=0;i<7;i++){
  118.         vertex(width/2+(player1.getVolume()-10+50)*sin(radians(angle*i+worldRotation)), height/2+(player1.getVolume()-20+50)*cos(radians(angle*i+worldRotation)));
  119.       }
  120.       endShape(CLOSE);
  121.       
  122.     if(turnSetting==1){
  123.       playerOffset=playerOffset-10;
  124.     }else if(turnSetting==2){
  125.       playerOffset=playerOffset+10;
  126.     }
  127.     playerPosition=worldRotation+playerOffset;
  128.     if(playerPosition>=360){
  129.       playerPosition=playerPosition-360;
  130.     }
  131.     fill(255);
  132.     triangle(width/2+70*sin(radians(playerPosition-10)), height/2+60*cos(radians(playerPosition-10)), width/2+70*sin(radians(playerPosition+10)), height/2+60*cos(radians(playerPosition+10)), width/2+90*sin(radians(playerPosition)), height/2+80*cos(radians(playerPosition)));
  133.   }
  134.   fill(255,0,0,50);
  135.     rect(0,0,width,height);
  136. }
  137. void keyPressed(){
  138.   if(key==' ' && scene==2){
  139.     scene=1;
  140.     player1.pause();
  141.     cursor();
  142.     player1.play();
  143.   }else if(keyCode==LEFT && scene==2){
  144.     turnSetting=2;
  145.   }else if(keyCode==RIGHT && scene==2){
  146.     turnSetting=1;
  147.   }else if(key==' ' && scene==1){
  148.     scene2();
  149.   }
  150. }
  151. void keyReleased(){
  152.   if(turnSetting>0){
  153.     if(keyPressed==false){
  154.       turnSetting=0;
  155.     }
  156.   }
  157. }
  158. void stop(){
  159.   player1.close();
  160.   minim1.stop();
  161. }
  162. public void startSpawning(){
  163.   formationID=int(random(1, 11));
  164.   formationOffset=int(random(0, 7));
  165.   if(formationID==1){
  166.     spawn(1, formationOffset, 1);
  167.   }else if(formationID==2){
  168.     spawn(1, formationOffset, 1);
  169.     spawn(1, formationOffset, 2);
  170.   }else if(formationID==3){
  171.     spawn(1, formationOffset, 1);
  172.     spawn(1, formationOffset, 3);
  173.   }else if(formationID==4){
  174.     spawn(1, formationOffset, 1);
  175.     spawn(1, formationOffset, 4);
  176.   }else if(formationID==5){
  177.     spawn(1, formationOffset, 1);
  178.     spawn(1, formationOffset, 2);
  179.     spawn(1, formationOffset, 3);
  180.   }else if(formationID==6){
  181.     spawn(1, formationOffset, 1);
  182.     spawn(1, formationOffset, 2);
  183.     spawn(1, formationOffset, 4);
  184.   }else if(formationID==7){
  185.     spawn(1, formationOffset, 1);
  186.     spawn(1, formationOffset, 5);
  187.     spawn(1, formationOffset, 3);
  188.   }else if(formationID==8){
  189.     spawn(1, formationOffset, 1);
  190.     spawn(1, formationOffset, 2);
  191.     spawn(1, formationOffset, 3);
  192.     spawn(1, formationOffset, 4);
  193.   }else if(formationID==9){
  194.     spawn(1, formationOffset, 1);
  195.     spawn(1, formationOffset, 6);
  196.     spawn(1, formationOffset, 3);
  197.     spawn(1, formationOffset, 4);
  198.   }else if(formationID==10){
  199.     spawn(1, formationOffset, 2);
  200.     spawn(1, formationOffset, 4);
  201.     spawn(1, formationOffset, 5);
  202.     spawn(1, formationOffset, 6);
  203.   }else{
  204.     spawn(1, formationOffset, 1);
  205.     spawn(1, formationOffset, 2);
  206.     spawn(1, formationOffset, 4);
  207.     spawn(1, formationOffset, 5);
  208.     spawn(1, formationOffset, 6);
  209.   }
  210. }
  211. public void spawn(int size, int offset, int id){
  212.   numberOfObstacles++;
  213.     size=size*20+20;
  214.     offset=(id+offset)*60;
  215.     if(offset>=360){
  216.       offset=offset-360;
  217.     }
  218.     distance.add(scrad);
  219.     size.add(size);
  220.     offset.add(offset);

  221. }
  222. public void scene2(){
  223.   numberOfObstacles=0;
  224.   scene=2;
  225.   noCursor();
  226.   startSpawning();
  227. }
o_O I just realized how much code this is...


ps. if you have any suggestions besides, please let me know. :D

The problem is in the spawn method below - in line 9 you have

size.add(size);

Although you have a linked list called size you also have an int parameter called size. so it is trying to add size to an int. The same applies to offset change lines 9 and 10 to

this.size.add(size);
this.offset.add(offset);

In future I suggest that you use a unique name for each variable/parameter


Copy code
  1. public void spawn(int size, int offset, int id){
  2.   numberOfObstacles++;
  3.     size=size*20+20;
  4.     offset=(id+offset)*60;
  5.     if(offset>=360){
  6.       offset=offset-360;
  7.     }
  8.     distance.add(scrad);
  9.     size.add(size);
  10.     offset.add(offset);

  11. }
Be careful when you are naming your variables :
Try this :
Copy code
  1. public void spawn(int _size, int _offset, int id){
  2.   numberOfObstacles++;
  3.     _size=_size*20+20;
  4.     _offset=(id+_offset)*60;
  5.     if(_offset>=360){
  6.       _offset=_offset-360;
  7.     }
  8.     distance.add(scrad);
  9.     size.add(_size);
  10.     offset.add(_offset);
  11. }
There are a confusion between "intList size" the global variable and "int size" the local variable.

Oh, thanks!.

I just realized... it still throws the same error. Darn :P
It is also a good idea to use a plural name for lists (or collections in general): distances, sizes, etc.