Java Code Examples for org.lwjgl.input.Keyboard#KEY_D

The following examples show how to use org.lwjgl.input.Keyboard#KEY_D . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LocationEditGui.java    From SkyblockAddons with MIT License 5 votes vote down vote up
/**
 * Allow moving the last hovered feature with arrow keys.
 */
@Override
protected void keyTyped(char typedChar, int keyCode) throws IOException {
    super.keyTyped(typedChar, keyCode);
    Feature hoveredFeature = ButtonLocation.getLastHoveredFeature();
    if (hoveredFeature != null) {
        int xOffset = 0;
        int yOffset = 0;
        if (keyCode == Keyboard.KEY_LEFT) {
            xOffset--;
        } else if (keyCode == Keyboard.KEY_UP) {
            yOffset--;
        } else if (keyCode == Keyboard.KEY_RIGHT) {
            xOffset++;
        } else if (keyCode == Keyboard.KEY_DOWN) {
            yOffset++;
        }
        if (keyCode == Keyboard.KEY_A) {
            xOffset-= 10;
        } else if (keyCode == Keyboard.KEY_W) {
            yOffset-= 10;
        } else if (keyCode == Keyboard.KEY_D) {
            xOffset+= 10;
        } else if (keyCode == Keyboard.KEY_S) {
            yOffset+= 10;
        }
        main.getConfigValues().setCoords(hoveredFeature, main.getConfigValues().getRelativeCoords(hoveredFeature).getX()+xOffset,
                main.getConfigValues().getRelativeCoords(hoveredFeature).getY()+yOffset);
    }
}
 
Example 2
Source File: GuiOreMappingSatellite.java    From AdvancedRocketry with MIT License 4 votes vote down vote up
@Override
protected void keyTyped(char c, int i) throws IOException {
	if(i == Keyboard.KEY_W) {
		zCenter -= radius;
		runMapperWithSelection();
	}
	else if(i == Keyboard.KEY_S) {
		zCenter += radius;

		runMapperWithSelection();
	}
	else if(i == Keyboard.KEY_A) {
		xCenter -= radius;

		runMapperWithSelection();
	}
	else if(i == Keyboard.KEY_D) {
		xCenter += radius;

		runMapperWithSelection();
	}
	else if(i == Keyboard.KEY_DOWN){
		scanSize = Math.min(scanSize*2, maxZoom);

		runMapperWithSelection();
	}
	else if(i == Keyboard.KEY_UP) {
		if((scanSize/2)/radius > 0) {
			scanSize = Math.max(scanSize/2, 2);

			runMapperWithSelection();
		}
	}
	//TODO: fix radius
	/*else if(i == Keyboard.KEY_LEFT) {
		radius = Math.max(radius / 2, 1);

		currentMapping.interrupt();
		resetTexture();
		currentMapping = new Thread(mapper);
		currentMapping.start();
	} else if(i == Keyboard.KEY_RIGHT) {
		if(scanSize/(radius*2) > 0) {
			radius = Math.min(radius*2, MAXRADIUS);
			currentMapping.interrupt();
			resetTexture();
			currentMapping = new Thread(mapper);
			currentMapping.start();
		}
	}*/
	else 
		super.keyTyped(c, i);
}