Loading...
Logo
Processing Forum
jigsaw004's Profile
5 Posts
3 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    I have a map with square obstacles of size 20px X 20px, 

    whose center points are indexed into an array list. In my 

    game, I have a tank with dimension of 30px X 30px which 

    moves through the map, but should stop when it collides with 

    an obstacle. To check the collision, I need to get all the 

    pixels' coordinates within the rotated image of the tank. 

    Does the image.loadPixel() work for this? If yes, then what 

    pixels would pixels[] be populated with? I need the x- and 

    y- coordinates of the pixels separated for my purpose. How 

    would this be possible using the pixels[] array? 

    Any other way to check for collisions b/w the tank and the 

    square obstacles would be a great plus.

    PS: I am working on Processing.js.
    I have written the following code in Processgin IDE on my local machine and online on Processing.js editor at  http://sketch.processing.org/. However, the latter does not show anything. The motive of the code is to make an image to seem as poping-out out of a hole.


    1. Justin j1;
    2. int x1=0;
    3. void setup()   
    4. {  
    5.    
    6.   size(400, 300);  
    7.   
    8.   println("starting app ..");
    9.                                                                               
    10. j1=new Justin();

    11. }

    12.   
    13. void draw()                                       
    14. {  
    15.  background(100);  
    16. j1.display((width/2)-30,height/2-x1);
    17. if(x1<60)
    18. x1++;
    19. class Justin{
    20.     PImage just,sec1;
    21.     int ysize=0;
    22.     Justin(){
    23.         just=loadImage("https://lh4.googleusercontent.com/-b6Ux87YG_aM/T8HQfHzS1VI/AAAAAAAAAEQ/EeIIbcHrVx0/s128/justin%20bieber%20clipart.png");
    24.     }
    25.     void display(float x,float y){
    26.         
    27.        if(ysize<=just.height){
    28.         image(just.get(0,0,just.width,ysize),x,y);
    29.         ysize=ysize+1;
    30.         }
    31.         else
    32.           image(just,x,y);
    33.    }
    34.     void setYSize(){
    35.         ysize=0;
    36.     }
    37.     int getYSize(){
    38.         return ysize;
    39.     }
    40. }

    I am new to Processing and I need help relating to the rotate() function. What I need is that a image is displayed at the cursor's coordinates and when the mouse is pressed, the image should rotate counterclockwise by 90 degrees at the cursor's coordinate itself. How to accomplish this? Also, I am currently confused as to what translate() does. Any explanation would help.
    I am new to Processing. I have been building a simple game where one has to shoot some random moving birds. Although, it seems pretty simple, yet I have been stuck with the following problem: I need that once a bird has been shot, an image(of explosion/gunshot) should be displayed for at least 1 second. I tried using millis() to time the animation, but to no avail. Is there a way, such that two draw() functions be executed at the same time: one is the normal draw() and other of the object I want to display?  Any workaround would be highly beneficial!