Loading...
Logo
Processing Forum
Insentience's Profile
11 Posts
23 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    Hello, been a while.

    I would like to combine 2 equal dimension PImages into one PImage by set() -ing one of the images directly on top of another

    The problem with this is that if the top image has transparency, the set() function will replace all the transparent pixels with the colour white when set() -ing it rather than skip the transparent pixels.

    How can I solve this problem? I have tried using the blend() function but it didn't work.
    I have some code that loads a 512 by 512 .png. Each 32 * 32 section of the png is a separate tile and I wrote some code that reads an int 2D array and prints the tile it points to. Here's an example of my code:
    1. PImage tileSheet;

    2. void setup ()
    3. {
    4.   size(512, 512);
    5.   tileSheet = loadImage ("sheet.png");
    6. }

    7. void draw ()
    8. {
    9.   displayTiles();
    10. }

    11. void displayTiles ()
    12. {

    13.   for (int i = 0; i < 16; i++)
    14.   {
    15.     for (int j = 0; j < 16; j++)
    16.     {
    17.       drawTile (i, j * 32, i * 32);
    18.     }
    19.   }

    20. }

    21. void drawTile (int tileCode, int xPos, int yPos)
    22. {  
    23.   int tileX = tileCode * 32;
    24.   int tileY = tileCode * 32;
    25.   
    26.   image(tileSheet.get(tileX, tileY, 32, 32), xPos, yPos);
    27. }

    So basically, I'm drawing 16 rows of tiles with each line drawing a different tile 16 times. However, my program is really slow! What am I doing wrong? (I know this example is full speed, but I'm doing the exact same thing except on a very slightly larger scale and I get half my normal framerate)
    I've tried to follow the minim documentation to control the volume of the track playing, but I can't get it to work. What am I doing wrong? Here's my code:

    1. import ddf.minim.*;
    2. import ddf.minim.signals.*;
    3. import ddf.minim.analysis.*;
    4. import ddf.minim.effects.*;

    5. AudioPlayer gameMusic;
    6. Minim songLoader;
    7. AudioOutput out;

    8. float volLevel = 0;

    9. void setup()
    10. {
    11.   songLoader = new Minim(this);
    12.   startTrack("01.mp3");
    13. }

    14. void draw ()
    15. {
    16.    volLevel = (volLevel + 0.1) % 1;

    17.    updateTrackVol(volLevel);
    18. }

    19. void startTrack (String trackName)
    20. {
    21.     gameMusic = songLoader.loadFile(trackName);
    22.     gameMusic.loop();
    23.   
    24. }

    25. void updateTrackVol (float amount)
    26. {
    27.   out = songLoader.getLineOut();
    28.   out.setVolume(amount);
    29. }
      1. import ddf.minim.*;
      2. import ddf.minim.signals.*;
      3. import ddf.minim.analysis.*;
      4. import ddf.minim.effects.*;
      5. PFont menuFont;

      6. AudioPlayer mSound;
      7. Minim mSoundLoader;

      8. int mouseSound = -1;
      9. void setup ()
      10. {
      11.   precacheSound();
      12.   menuFont = loadFont("Perpetua-32.vlw");
      13. }

      14. void draw ()
      15. {
      16.  selectableText("Test", 50, 50, 1);
      17. }
      18. boolean highlighted (float x, float y, float x2, float y2)
      19. {
      20.   if (mouseX >= x && mouseX <= x2 && mouseY >= y && mouseY <= y2)
      21.     return true;
      22.     
      23.   return false;
      24. }

      25. void selectableText (String words, float xPos, float yPos, int soundNum)
      26. {
      27.   textFont(menuFont, 32);
      28.   
      29.   if (highlighted(xPos, yPos - textAscent(), xPos + textWidth(words), yPos + textDescent()))
      30.   {
      31.     fill(255);
      32.     if (mouseSound != soundNum)
      33.     {
      34.       mouseSound = soundNum;
      35.       mSound.play();
      36.     }
      37.   }
      38.   else
      39.   {
      40.     fill(100);
      41.     if (mouseSound == soundNum)
      42.     {
      43.       mouseSound = -1;
      44.     }
      45.   }
      46.     
      47.   text(words, xPos, yPos);
      48. }

      49. void precacheSound ()
      50. {
      51.   mSoundLoader = new Minim(this);
      52.   
      53.   mSound = mSoundLoader.loadFile("highlight.wav");
      54. }


      With this code, whenever I highlight a text option, it brightens up (via the fill()). However, I cannot get sound to play. It sometimes play when it's supposed to, and it sometimes doesn't. What am I doing wrong?
      Simply put, is there a function that'll change the text that appears in the title bar of the sketch window? Right now, it matches my .pde file name. However, I want to be able to change it without changing the name of my file.

      Thank you very much.
      I'll keep this short. Let's say I'm trying to print two images on top of each other:

      1. PImage peach = loadimage("peach.png");
      2. PImage grey = loadimage("grey.png");

      3. void draw()
      4. {
      5.       image(peach, 0, 0, 256, 256);

      6.       //Next image to print on top of previous one
      7.       image(grey, 0, 0, 256, 256);
      8. }

      The images:

      peach.png:


      grey.png:



      With my current code, all you would see is the grey box (since the peach gets overlapped). However, in photoshop, if you put the grey layer on top of the peach layer and turn the blend mode of the grey layer to 'luminosity', you get this result:




      My question is, how can I produce that^^ same result in processing? Please breakdown your explanation.

      Thank you very much
      Ok, what happens when you hold down a letter on the keyboard? (ie 'k'). One 'k' will display, then after a small time lapse, a stream of ks will flood the screen.

      This causes a problem. I want to detect when the user is holding down the key, but the pause that happens bugs up my program. Any way around this?

      Sorry if I've confused you. 
      Ok, I've programmed my menu options. They highlight green whenever the mouse cursor is over them and return to black when my mouse isn't over it.

      Now I want a sound to play once when I've highlighted an option. Here's what I'm basically doing (not real code):

      1. void draw()
      2. {
      3.       int text_r = 0;
      4.       int text_g = 0;
      5.       int text_b = 0;

      6.       if (mouseOverOption() == true)
      7.       {
      8.             text_g = 200;
      9.             playSound();
      10.       }

      11.       drawText("Option", text_r, text_g, text_b);
      12. }
      The problem is that if my mouse lingers on an option, the sound plays countless times rapidly. How can I change my code so that sound is only played once when you highlight an option?

      Thanks.