Loading...
Logo
Processing Forum
Hello, i trying a little jump and run. The problem is when i set screensize to displayWidth and displayHeight you can see the box jumping. But when i set width and height to 800x480, you can not see the box jump.

This is my code:

int rgb1,rgb2,rgb3;
float x,y,w,h,i;
nt ltime, ctime;
float etime;
void setup(){
  float width=800;
  float height=480
float boxwidth,boxheight;

  boxwidth=width*0.02;
 boxheight=width*0.02;
  oben=height*0.35-boxheight;
  unten=height*0.7-boxheight; 


}
void draw(){
size(800,480);


 rgb1=247;
  rgb2=234;
  rgb3=112;
  
   x=0.7*width;
    y=0.5*height;
    w=0.05*width;
    h=height;
   rect(x,y,w,h);
  //speed=0.019*width;
 //i=i+speed;

 velocity=width*0.007;
 speed=width*0.01;
  ctime = millis();
  etime = (ctime - ltime)/10;
  ltime = ctime;
  i=i+velocity*etime;
  

float inc = TWO_PI/(width*0.0005);


 //a = a + inc;

if(mousePressed==true &&jump==0)jump=1;
if(jump==1)
{
  jumc=jumc+1;
if(jumc==15){jump=0;a=0;jumc=0;}
  yy2=unten- abs(sin(a)) *width*0.2;
  //yy2=unten+sin(a)*210.0;1
  
rect(i,yy2,boxwidth,boxheight);
a=a+inc;

  
}
if(mousePressed==false && jump==0){ yy2=unten;a=0;
rect(i,yy2,boxwidth,boxheight);
}
if(i>width)i=0;

}

Replies(19)

It is so wrong!
Why are you defining local variables width and height shadowing Processing ones, and why are you calling size() in draw()?
Well, i changed this. But this seem not have anything to do with my jumping problem 
I thought, when i draw everything depending on width and height (for example width*0.2) it should work on any screensize.

This sketch is for an android app.


Advice: use the formatting command (Ctrl+T) and show the new version of your code, so we can try.
Note: your jump variable can be a boolean, apparently.
And you can check boolean variables as:
if (mousePressed)
or
if (!mousePressed)
instead of using == true or == false.
Probably unrelated to your problem, but can help in having a code easier to read, so to fix.

int rgb1,rgb2,rgb3;
float x,y,w,h,i;
nt ltime, ctime;
float etime;
void setup(){
size(800,480);

float boxwidth,boxheight;

  boxwidth=width*0.02;
 boxheight=width*0.02;
  oben=height*0.35-boxheight;
  unten=height*0.7-boxheight; 


}
void draw(){



 rgb1=247;
  rgb2=234;
  rgb3=112;
  
   x=0.7*width;
    y=0.5*height;
    w=0.05*width;
    h=height;
   rect(x,y,w,h);
  //speed=0.019*width;
 //i=i+speed;

 velocity=width*0.007;
 speed=width*0.01;
  ctime = millis();
  etime = (ctime - ltime)/10;
  ltime = ctime;
  i=i+velocity*etime;
  

float inc = TWO_PI/(width*0.0005);


 //a = a + inc;

if(mousePressed==true &&jump==0)jump=1;
if(jump==1)
{
  jumc=jumc+1;
if(jumc==15){jump=0;a=0;jumc=0;}
  yy2=unten- abs(sin(a)) *width*0.2;
  //yy2=unten+sin(a)*210.0;1
  
rect(i,yy2,boxwidth,boxheight);
a=a+inc;

  
}
if(mousePressed==false && jump==0){ yy2=unten;a=0;
rect(i,yy2,boxwidth,boxheight);
}
if(i>width)i=0;

}

This is my code. On 800x480 you can't see the box jump, when it's displayWidthXdisplayHeight the box is jumping.

It looks good on my Samsung Galaxy S (1920 x 1080), doesn't work on Samsung S Plus (800x400).

I don't believe that is a running code!
  • nt instead of int
  • variable oben is undeclared, etc.
Also, it's unformatted. Lack of <CTRL> + <T>.
Sorry, it is just a snippet from my code.

I removed background() for debugging.

int rgb1, rgb2, rgb3;
float x, y, w, h, i, oben, unten, velocity, a, yy2;
int ltime, ctime;
float etime;
float jumc, jump;
float boxwidth, boxheight;
void setup() {
  size(displayWidth, displayHeight);
}
void draw() {
  boxwidth=width*0.02;
  boxheight=width*0.02;
  oben=height*0.35-boxheight;
  unten=height*0.7-boxheight; 


  rgb1=247;
  rgb2=234;
  rgb3=112;

  x=0.7*width;
  y=0.5*height;
  w=0.05*width;
  h=height;
  rect(x, y, w, h);
  //speed=0.019*width;
  //i=i+speed;

  velocity=width*0.007;

  ctime = millis();
  etime = (ctime - ltime)/10;
  ltime = ctime;
  i=i+velocity*etime;


  float inc = TWO_PI/(width*0.0005);


  //a = a + inc;

  if (mousePressed==true &&jump==0)jump=1;
  if (jump==1)
  {
    jumc=jumc+1;
    if (jumc==15) {
      jump=0;
      a=0;
      jumc=0;
    }
    yy2=unten- abs(sin(a)) *width*0.2;
    //yy2=unten+sin(a)*210.0;1

    rect(i, yy2, boxwidth, boxheight);
    a=a+inc;
  }
  if (mousePressed==false && jump==0) { 
    yy2=unten;
    a=0;
    rect(i, yy2, boxwidth, boxheight);
  }
  if (i>width)i=0;
}

The problem is that you computed an inc value that happened to work correctly in one size, but not in the other. The value was too big, I think.
I made something making more sense (is it?), and fixed also the computation of yy2, that should depend on height, not on width!
Copy code
  1. int rgb1, rgb2, rgb3;
  2. float x, y, w, h, position, oben, unten, velocity, a, yy2;
  3. int ltime, ctime;
  4. float etime;
  5. float jumc, inc;
  6. boolean jumping;
  7. float boxwidth, boxheight;
  8. int MAX_INCR = 15;
  9.  
  10. void setup() {
  11.   size(displayWidth, displayHeight);
  12.   //size(800, 600);
  13.  
  14.   // These don't change over time and are already global, so can be moved safely here
  15.   boxwidth=width*0.02;
  16.   boxheight=width*0.02;
  17.   oben=height*0.35-boxheight;
  18.   unten=height*0.7-boxheight;
  19.  
  20.   rgb1=247;
  21.   rgb2=234;
  22.   rgb3=112;
  23.  
  24.   x=0.7*width;
  25.   y=0.5*height;
  26.   w=0.05*width;
  27.   h=height;
  28.  
  29.   inc = (PI / width) * w / MAX_INCR;
  30.   println(w + " " + inc);
  31. }
  32.  
  33. void draw() {
  34.   background(0);
  35.   rect(x, y, w, h);
  36.   //speed=0.019*width;
  37.   //i=i+speed;
  38.  
  39.   velocity=width*0.007;
  40.  
  41.   ctime = millis();
  42.   etime = (ctime - ltime)/10;
  43.   ltime = ctime;
  44.   position += velocity*etime;
  45.  
  46.   //a = a + inc;
  47.  
  48.   if (mousePressed && !jumping) jumping = true;
  49.   if (jumping)
  50.   {
  51.     jumc += 1;
  52.     if (jumc == MAX_INCR) {
  53.       jumping = false;
  54.       a = 0;
  55.       jumc = 0;
  56.     }
  57.     yy2 = unten- abs(sin(a)) * h * 2.1;
  58.     println(yy2);
  59.     //yy2=unten+sin(a)*210.0;1
  60.  
  61.     a += inc;
  62.   } else {
  63.     yy2 = unten;
  64.     a = 0;
  65.   }
  66.   rect(position, yy2, boxwidth, boxheight);
  67.   if (position > width) position = 0;
  68. }

Now the box is not making a half sinus curve, it jumps up (within a sinus) and when it is up it falls straight down.

Then change the code...
Using sin() is quite wrong, anyway. Trajectory should be parabolic.
i will give it a try.Seems to be a bit more complicated.
Changed a bit. Works better when the condition is on a, not on jumc.
Copy code
  1. int rgb1, rgb2, rgb3;
  2. float x, y, w, h, position, oben, unten, velocity, a, yy2;
  3. int ltime, ctime;
  4. float etime;
  5. float jumc, inc;
  6. boolean jumping;
  7. float boxwidth, boxheight;
  8. int MAX_INCR = 15;
  9.  
  10. void setup() {
  11.   size(displayWidth, displayHeight);
  12.   //size(800, 600);
  13.  
  14.   // These don't change over time and are already global, so can be moved safely here
  15.   boxwidth=width*0.02;
  16.   boxheight=width*0.02;
  17.   oben=height*0.35-boxheight;
  18.   unten=height*0.7-boxheight;
  19.  
  20.   rgb1=247;
  21.   rgb2=234;
  22.   rgb3=112;
  23.  
  24.   x=0.7*width;
  25.   y=0.5*height;
  26.   w=0.05*width;
  27.   h=height;
  28.  
  29.   inc = (PI / width) * 10.0 * w / MAX_INCR;
  30.   println(w + " " + inc);
  31. }
  32.  
  33. void draw() {
  34. //  background(0);
  35.   rect(x, y, w, h);
  36.   //speed=0.019*width;
  37.   //i=i+speed;
  38.  
  39.   velocity=width*0.007;
  40.  
  41.   ctime = millis();
  42.   etime = (ctime - ltime)/10;
  43.   ltime = ctime;
  44.   position += velocity*etime;
  45.  
  46.   //a = a + inc;
  47.  
  48.   if (mousePressed && !jumping) jumping = true;
  49.   if (jumping)
  50.   {
  51.     jumc += 1;
  52.     if (a > PI) {
  53.       jumping = false;
  54.       a = 0;
  55.       jumc = 0;
  56.     }
  57.     yy2 = unten - abs(sin(a)) * height * 0.25;
  58.     println(yy2);
  59.     //yy2=unten+sin(a)*210.0;1
  60.  
  61.     a += inc;
  62.   } else {
  63.     yy2 = unten;
  64.     a = 0;
  65.   }
  66.   rect(position, yy2, boxwidth, boxheight);
  67.   if (position > width) position = 0;
  68. }

My whole sketch:


float  position, box, oben, unten, jumc, inc, etime, ltime, ctime, x, y, w, h, velocity, yy2;
boolean jumping=false;
int punkte=0;
PFont font;
int a=0;
int punktelevel=400;
int lives=0;
int level=1;
int MAX_INCR = 15;
int r1, r2, r3;
float h0x3,h0x7;


void setup() {
  //size(800, 480);
  size(displayWidth, displayHeight);
  box=width*0.02;
  oben=height*0.35-box;
  unten=height*0.7-box;
  yy2=unten;
  h0x3=height*0.3;
  h0x7=height*0.7;

  orientation(LANDSCAPE);
 //inc = (PI / width) * 10.0 * w /  MAX_INCR ;
   font =createFont("Georgia", 55);
  ltime = ctime = millis();
}
void draw(){
  background(255);

  switch(level){
    case 0:
    level1();
    break;
    case 1:
    level1();
    break;
   
    
  }
}

void level0(){
  
 level=level+1; 
}

void level1(){
  r1=247;
  r2=234;
  r3=112;
 
  x=0.7*width;
  y=0.5*height;
  w=0.05*width;
  h=height;
 
  inc = (PI / width) * 10.0 * w / MAX_INCR;
   rect(x, y, w, h);
  //speed=0.019*width;
  //i=i+speed;
 
  velocity=width*0.007;
 
  ctime = millis();
  etime = (ctime - ltime)/10;
  ltime = ctime;
  position += velocity*etime;
 
  //a = a + inc;
 
  if (mousePressed && !jumping) jumping = true;
  if (jumping)
  {
    jumc += 1;
    if (a > PI) {
      jumping = false;
      a = 0;
      jumc = 0;
    }
    yy2 = unten - abs(sin(a)) * height * 0.25;
    println(yy2);
    //yy2=unten+sin(a)*210.0;1
 
    a += inc;
  } else {
    yy2 = unten;
    a = 0;
  }
  rect(position, yy2, box, box);
  if (position > width) position = 0;
}

Why is the box not jumping?
In your example it does.




You made a an int. So when adding a small increment, it doesn't change.
Those bundled operator & assignment have built-in cast conversions.
Even though inc is a float, the result is downgraded to int when the assignment to a takes place!  
For any other place else, Java would outright refuse to downgrade a data-type!  
Well, the box is still jumping different far on different screen sizes.
I don't know why. Here it works perfect, you can change the screensize and it seems to jump similar.

boundry myb2;
box mybox1;
float xx;
float yy;
int bcount=0;
int[] stars=new int[300];
boolean[] levelcheck=new boolean[300];
PShape star;
int level=0;
PFont font;
float xw, xh;
int boxh;
boolean menu;
int punkte=0;
int punktelevel=400;
int ltime, ctime;
float etime;
int ltime1, ctime1;
float etime1;
float unten;
float a;
boolean pressed;
float xxi, yy2i, xposi, yposi;
float w005, h01, w01, h09, w09, w085, h055, w065, w002, w045, h065, w025, w035, h06, w075, w05, h07, w07, w03, w02, w04, w08, w055, h05, h08;

void setup() {

  // size(800, 480);
  size(displayWidth, displayHeight);

  xx=0;
  yy= height*0.1;
  w05=width*0.5;
  h07=height*0.7;
  w07=width*0.7;
  w03=width*0.3;
  w02=width*0.2;
  w04=width*0.4;
  w08=width*0.8;
  w055=width*0.55;
  h05=height*0.5;
  h06=height*0.6;
  h08=height*0.8;
  w075=width*0.75;
  w035=width*0.35;
  w045=width*0.45;
  w025=width*0.25;
  h065=height*0.65;
  w002=width*0.002;
  w065=width*0.65;
  h055=height*0.55;
  w085=width*0.85;
  w09=width*0.9;
  h08=height*0.8;
  h09=height*0.9;
  w01=width*0.1;
  h01=height*0.1;
  boxh=width/35;
  w005=width*0.05;
  myb2=new boundry(color(103, 231, 123), width*0.3, height*0.55, width*0.05, height/20);
  mybox1=new box(width*0.007, width*0.05, 0.25);
  unten=height*0.7-boxh;
}
void draw() {
  background(0);

  myb2.display();
  rect(0, h07, width, height);
  myb2.c=color(121, 233, 1);
  mybox1.display();
  mybox1.jump();

  myb2.h=height;
  myb2.xpos=width*0.35;




  if (mybox1.xx>width) {
    weiter();
    mybox1.xx=0;
  }
}


class boundry { 
  color c;
  float xpos;
  float ypos;
  float w;
  float h;
  boolean on;


  // The Constructor is defined with arguments.
  boundry(color tempC, float tempXpos, float tempYpos, float tempw, float temph) { 
    c = tempC;
    xpos = tempXpos;
    ypos = tempYpos;
    w=tempw;
    h=temph;
  }

  void display() {
    noStroke();
    fill(c);

    rect(xpos, ypos, w, h);
    if (mybox1.xx+boxh>=xpos && mybox1.xx<=xpos+w&& mybox1.yy2+boxh>=ypos && mybox1.yy2<=ypos+h)
    {
      bang();
    }
  }
}
class box { 

  float velocity;
  float incw;
  float jumph;
  float xx=0;
  float yy2=height*0.7-boxh;
  float inc;
  float a;

  boolean jumping;


  // The Constructor is defined with arguments.
  box( float tempvel, float tempincw, float tempjumph) { 

    velocity = tempvel;
    incw = tempincw;
    jumph = tempjumph;
  }

  void display() {
    noStroke();
    inc = (PI / width) * 10 * incw /15;
    println(inc);
    ctime = millis();
    etime = (ctime - ltime)/10;
    ltime = ctime;
    xx+= velocity*etime;
    rect(xx, yy2, boxh, boxh);
    println(incw);
    println(a);
  }

  void jump() {
    if (mousePressed && !jumping) jumping = true;
    if (jumping)
    {

      if (a > PI) {
        jumping = false;
        a = 0;
      }
      yy2 = unten - abs(sin(a)) * height * jumph;
      println(yy2);
      //yy2=unten+sin(a)*210.0;1

      a += inc;
    } else {
      yy2 = unten;
      a = 0;
    }
  }
}
void weiter() {
  levelcheck[level]=true;
  level=level+1;
  mybox1.xx=0;


  mybox1.jumping=false;

  punkte=punkte+punktelevel;
  punktelevel=400;
  bcount=0;
  mybox1.yy2=unten;

  mybox1.a=0;
}
void bang() {
  mybox1.xx=0;
  mybox1.jumping=false;
  bcount=bcount+1;
  if (bcount>=3) {
    stars[level]=2;
  }
  if (bcount>=6) {
    stars[level]=1;
  }
  if (bcount<=2) {
    stars[level]=3;
  }
  mybox1.yy2=unten;
  mybox1.a=0;
  mybox1.xx=0;
  //mybox1.yy2=0;


  mybox1.jumping=false;

  punktelevel=punktelevel-25;
  if (punktelevel<=0)punktelevel=0;
}

But in my whole game:

It's not jumping correctly :(
Ok, i found something out.


The full game has 46 levels, each one is called via a function. In the main loop i have this:

   textSize(textsize);
  text("Level: "+level+
    " Levelscore: "+punktelevel+
    " Score: "+punkte, h15, w30);

(will show level, points on the top of each level).

When i delete this lines, the box has the same behavier on fullscreen and 800x480. When the lines are in the main loop on fullscreen, the distance is much further.

Also i had shown some stars (svg)...same than above
@ PhiLho your example works perfect on any screensize. Please try  http://www.openprocessing.org/sketch/103796 and change to fullscreen. You will see the different. Maybe processing is to slow?

The class box is for jumping.