Games 240x320 Patched - Cut The Rope Java
public void destroyApp(boolean unconditional) {}
public CutTheRope() { display = Display.getDisplay(this); canvas = new Canvas() { public void paint(Graphics g) { drawGame(g); } }; canvas.addKeyListener(new KeyListener() { public void keyPressed(int key) { handleKeyPress(key); } cut the rope java games 240x320 patched
private void handleKeyPress(int key) { switch (key) { case Canvas.KEY_LEFT: if (rope1Cut) { candyX -= 5; } break; case Canvas.KEY_RIGHT: if (rope1Cut) { candyX += 5; } break; case Canvas.KEY_FIRE: if (!rope1Cut) { rope1Cut = true; } else if (!rope2Cut) { rope2Cut = true; } break; } canvas.repaint(); checkCollision(); } private Canvas canvas
public class CutTheRope extends MIDlet { private Display display; private Canvas canvas; private Graphics g; private int screenWidth = 240; private int screenHeight = 320; private int candyX = 100; private int candyY = 100; private int rope1X = 50; private int rope1Y = 50; private int rope2X = 150; private int rope2Y = 50; private int monsterX = 100; private int monsterY = 250; private boolean rope1Cut = false; private boolean rope2Cut = false; private Random random = new Random(); private Graphics g
private void checkCollision() { if (candyX + 20 > monsterX && candyX < monsterX + 50 && candyY + 20 > monsterY && candyY < monsterY + 50) { System.out.println(" Congratulations, you won!"); } } } This code is for educational purposes only and might not run as-is on all devices. Make sure to test it on a compatible environment.
private void drawGame(Graphics g) { g.setColor(0xFFFFFF); g.fillRect(0, 0, screenWidth, screenHeight); // Draw candy g.setColor(0xFF0000); g.fillRect(candyX, candyY, 20, 20); // Draw ropes g.setColor(0x000000); if (!rope1Cut) { g.drawLine(rope1X, rope1Y, candyX + 10, candyY + 10); } if (!rope2Cut) { g.drawLine(rope2X, rope2Y, candyX + 10, candyY + 10); } // Draw monster g.setColor(0x0000FF); g.fillRect(monsterX, monsterY, 50, 50); }
public void startApp() { display.setCurrent(canvas); }