gamecanvas.java
来自「This is a resource based on j2me embedde」· Java 代码 · 共 373 行 · 第 1/2 页
JAVA
373 行
// Create and offscreen Image object that // acts as the offscreen buffer to which we draw to. // the contents of this buffer are flushed to the display // only when flushGraphics() has been called. super(); setSuppressKeyEvents((Canvas)this, suppressKeyEvents); gameCanvasLF = new GameCanvasLFImpl(this); // Create and hand out game accessor tunnel instance if (gameAccess == null) { gameAccess = new GameAccessImpl(); GameMap.registerGameAccess(gameAccess); } } /** * Gets look&feel implementation associated with this GameCanvas * @return GameCanvasLFImpl instance of this GameCanvas */ GameCanvasLFImpl getLFImpl() { return gameCanvasLF; } /** * Obtains the Graphics object for rendering a GameCanvas. The returned * Graphics object renders to the off-screen buffer belonging to this * GameCanvas. * <p> * Rendering operations do not appear on the display until flushGraphics() * is called; flushing the buffer does not change its contents (the pixels * are not cleared as a result of the flushing operation). * <p> * A new Graphics object is created and returned each time this method is * called; therefore, the needed Graphics object(s) should be obtained * before the game starts then re-used while the game is running. * For each GameCanvas instance, all of the provided graphics objects will * render to the same off-screen buffer. * <P> * <P>The newly created Graphics object has the following properties: * </P> * <ul> * <LI>the destination is this GameCanvas' buffer; * <LI>the clip region encompasses the entire buffer; * <LI>the current color is black; * <LI>the font is the same as the font returned by * {@link javax.microedition.lcdui.Font#getDefaultFont * Font.getDefaultFont()}; * <LI>the stroke style is {@link Graphics#SOLID SOLID}; and * <LI>the origin of the coordinate system is located at the upper-left * corner of the buffer. * </ul> * <p> * @return the Graphics object that renders to this GameCanvas' * off-screen buffer * @see #flushGraphics() * @see #flushGraphics(int, int, int, int) */ protected Graphics getGraphics() { return gameCanvasLF.getGraphics(); } /** * Gets the states of the physical game keys. Each bit in the returned * integer represents a specific key on the device. A key's bit will be * 1 if the key is currently down or has been pressed at least once since * the last time this method was called. The bit will be 0 if the key * is currently up and has not been pressed at all since the last time * this method was called. This latching behavior ensures that a rapid * key press and release will always be caught by the game loop, * regardless of how slowly the loop runs. * <p> * For example:<code><pre> * * // Get the key state and store it * int keyState = getKeyStates(); * if ((keyState & LEFT_KEY) != 0) { * positionX--; * } * else if ((keyState & RIGHT_KEY) != 0) { * positionX++; * } * * </pre></code> * <p> * Calling this method has the side effect of clearing any latched state. * Another call to getKeyStates immediately after a prior call will * therefore report the system's best idea of the current state of the * keys, the latched bits having been cleared by the first call. * <p> * Some devices may not be able to query the keypad hardware directly and * therefore, this method may be implemented by monitoring key press and * release events instead. Thus the state reported by getKeyStates might * lag the actual state of the physical keys since the timeliness * of the key information is be subject to the capabilities of each * device. Also, some devices may be incapable of detecting simultaneous * presses of multiple keys. * <p> * This method returns 0 unless the GameCanvas is currently visible as * reported by {@link javax.microedition.lcdui.Displayable#isShown}. * Upon becoming visible, a GameCanvas will initially indicate that * all keys are unpressed (0); if a key is held down while the GameCanvas * is being shown, the key must be first released and then pressed in * order for the key press to be reported by the GameCanvas. * <p> * @see #UP_PRESSED * @see #DOWN_PRESSED * @see #LEFT_PRESSED * @see #RIGHT_PRESSED * @see #FIRE_PRESSED * @see #GAME_A_PRESSED * @see #GAME_B_PRESSED * @see #GAME_C_PRESSED * @see #GAME_D_PRESSED * @return An integer containing the key state information (one bit per * key), or 0 if the GameCanvas is not currently shown. */ public int getKeyStates() { return gameCanvasLF.getKeyStates(); } /** * Paints this GameCanvas. By default, this method renders the * the off-screen buffer at (0,0). Rendering of the buffer is * subject to the clip region and origin translation of the Graphics * object. * @param g the Graphics object with which to render the screen. * @throws NullPointerException if <code>g</code> is <code>null</code> */ public void paint(Graphics g) { gameCanvasLF.drawBuffer(g); } /** * Flushes the specified region of the off-screen buffer to the display. * The contents of the off-screen buffer are not changed as a result of * the flush operation. This method does not return until the flush has * been completed, so the app may immediately begin to render the next * frame to the same buffer once this method returns. * <p> * If the specified region extends beyond the current bounds of the * GameCanvas, only the intersecting region is flushed. No pixels are * flushed if the specified width or height is less than 1. * <p> * This method does nothing and returns immediately if the GameCanvas is * not currently shown or the flush request cannot be honored because the * system is busy. * <p> * @see #flushGraphics() * @param x the left edge of the region to be flushed * @param y the top edge of the region to be flushed * @param width the width of the region to be flushed * @param height the height of the region to be flushed */ public void flushGraphics(int x, int y, int width, int height) { gameCanvasLF.flushGraphics(x, y, width, height); } /** * Flushes the off-screen buffer to the display. The size of the flushed * area is equal to the size of the GameCanvas. The contents * of the off-screen buffer are not changed as a result of the flush * operation. This method does not return until the flush has been * completed, so the app may immediately begin to render the next frame * to the same buffer once this method returns. * <p> * This method does nothing and returns immediately if the GameCanvas is * not currently shown or the flush request cannot be honored because the * system is busy. * <p> * @see #flushGraphics(int,int,int,int) */ public void flushGraphics() { gameCanvasLF.flushGraphics(); } /** * Set a private field in the <code>Canvas</code> object. We use a * native method to work around the package boundary. * @param c this <code>GameCanvas</code> cast to a <code>Canvas</code> * @param suppressKeyEvents whether or not to suppress key events */ private native void setSuppressKeyEvents(Canvas c, boolean suppressKeyEvents);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?