本文整理汇总了Java中org.lwjgl.input.Keyboard.getEventCharacter方法的典型用法代码示例。如果您正苦于以下问题:Java Keyboard.getEventCharacter方法的具体用法?Java Keyboard.getEventCharacter怎么用?Java Keyboard.getEventCharacter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.lwjgl.input.Keyboard
的用法示例。
在下文中一共展示了Keyboard.getEventCharacter方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: func_146282_l
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
@Override
public void func_146282_l() {
if (Bit.getInstance() == null) {
return;
}
int key = Keyboard.getEventKey();
char cha = Keyboard.getEventCharacter();
if (key == Keyboard.KEY_NONE) return;
if (key == Keyboard.KEY_ESCAPE && Keyboard.getEventKeyState()) {
Wrapper.displayGuiScreen(null);
return;
}
if (key == Keyboard.KEY_F11) Wrapper.getMinecraft().func_71352_k();
Iterator<Window> iter = Bit.getInstance().getClickGui().getWindows().iterator();
while (iter.hasNext()) {
Window comp = iter.next();
if (Keyboard.getEventKeyState())
comp.keyPress(key, cha);
else
comp.keyRelease(key, cha);
}
}
示例2: dispatchKeypresses
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
public void dispatchKeypresses()
{
int i = Keyboard.getEventKey() == 0 ? Keyboard.getEventCharacter() + 256 : Keyboard.getEventKey();
if (i != 0 && !Keyboard.isRepeatEvent())
{
if (!(this.currentScreen instanceof GuiControls) || ((GuiControls)this.currentScreen).time <= getSystemTime() - 20L)
{
if (Keyboard.getEventKeyState())
{
if (i == this.gameSettings.keyBindFullscreen.getKeyCode())
{
this.toggleFullscreen();
}
else if (i == this.gameSettings.keyBindScreenshot.getKeyCode())
{
this.ingameGUI.getChatGUI().printChatMessage(ScreenShotHelper.saveScreenshot(this.mcDataDir, this.displayWidth, this.displayHeight, this.framebufferMc));
}
}
}
}
}
示例3: dispatchKeypresses
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
public void dispatchKeypresses()
{
int i = Keyboard.getEventKey() == 0 ? Keyboard.getEventCharacter() + 256 : Keyboard.getEventKey();
if (i != 0 && !Keyboard.isRepeatEvent())
{
if (!(this.currentScreen instanceof GuiControls) || ((GuiControls)this.currentScreen).time <= getSystemTime() - 20L)
{
if (Keyboard.getEventKeyState())
{
if (this.gameSettings.keyBindFullscreen.isActiveAndMatches(i))
{
this.toggleFullscreen();
}
else if (this.gameSettings.keyBindScreenshot.isActiveAndMatches(i))
{
this.ingameGUI.getChatGUI().printChatMessage(ScreenShotHelper.saveScreenshot(this.mcDataDir, this.displayWidth, this.displayHeight, this.framebufferMc));
}
}
else if (this.currentScreen instanceof GuiControls) ((GuiControls)this.currentScreen).buttonId = null;
}
}
}
示例4: onKeyEvent
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
@Inject(method = "runTickKeyboard", at = @At(value = "INVOKE_ASSIGN", target = "org/lwjgl/input/Keyboard.getEventKeyState()Z", remap = false))
private void onKeyEvent(CallbackInfo ci) {
if (currentScreen != null)
return;
boolean down = Keyboard.getEventKeyState();
int key = Keyboard.getEventKey();
char ch = Keyboard.getEventCharacter();
ClientAPI.EVENT_BUS.post(down ? new KeyEvent(key, ch) : new KeyUpEvent(key, ch));
}
示例5: mapKeyChar
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
public static char mapKeyChar()
{
switch(Keyboard.getEventKey())
{
case Keyboard.KEY_SPACE: return ' ';
default: return Keyboard.getEventCharacter();
}
}
示例6: handleKeyboardInput
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
public void handleKeyboardInput() {
int key = Keyboard.getEventKey();
char keyChar = Keyboard.getEventCharacter();
if (Keyboard.getEventKeyState()) {
Gui.instance.keyPress(key, keyChar);
} else {
Gui.instance.keyRelease(key, keyChar);
}
}
示例7: handleKeyboardInput
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
/**
* Handles keyboard input.
*/
public void handleKeyboardInput() throws IOException
{
char c0 = Keyboard.getEventCharacter();
if (Keyboard.getEventKey() == 0 && c0 >= 32 || Keyboard.getEventKeyState())
{
this.keyTyped(c0, Keyboard.getEventKey());
}
this.mc.dispatchKeypresses();
}
示例8: dispatchKeypresses
import org.lwjgl.input.Keyboard; //导入方法依赖的package包/类
public void dispatchKeypresses() {
int i = Keyboard.getEventKey() == 0 ? Keyboard.getEventCharacter() : Keyboard.getEventKey();
if (i != 0 && !Keyboard.isRepeatEvent()) {
if (!(this.currentScreen instanceof GuiControls)
|| ((GuiControls) this.currentScreen).time <= getSystemTime() - 20L) {
if (Keyboard.getEventKeyState()) {
if (i == this.gameSettings.keyBindStreamStartStop.getKeyCode()) {
if (this.getTwitchStream().isBroadcasting()) {
this.getTwitchStream().stopBroadcasting();
} else if (this.getTwitchStream().isReadyToBroadcast()) {
this.displayGuiScreen(new GuiYesNo(new GuiYesNoCallback() {
public void confirmClicked(boolean result, int id) {
if (result) {
Minecraft.this.getTwitchStream().func_152930_t();
}
Minecraft.this.displayGuiScreen((GuiScreen) null);
}
}, I18n.format("stream.confirm_start", new Object[0]), "", 0));
} else if (this.getTwitchStream().func_152928_D() && this.getTwitchStream().func_152936_l()) {
if (this.theWorld != null) {
this.ingameGUI.getChatGUI()
.printChatMessage(new ChatComponentText("Not ready to start streaming yet!"));
}
} else {
GuiStreamUnavailable.func_152321_a(this.currentScreen);
}
} else if (i == this.gameSettings.keyBindStreamPauseUnpause.getKeyCode()) {
if (this.getTwitchStream().isBroadcasting()) {
if (this.getTwitchStream().isPaused()) {
this.getTwitchStream().unpause();
} else {
this.getTwitchStream().pause();
}
}
} else if (i == this.gameSettings.keyBindStreamCommercials.getKeyCode()) {
if (this.getTwitchStream().isBroadcasting()) {
this.getTwitchStream().requestCommercial();
}
} else if (i == this.gameSettings.keyBindStreamToggleMic.getKeyCode()) {
this.stream.muteMicrophone(true);
} else if (i == this.gameSettings.keyBindFullscreen.getKeyCode()) {
this.toggleFullscreen();
} else if (i == this.gameSettings.keyBindScreenshot.getKeyCode()) {
this.ingameGUI.getChatGUI().printChatMessage(ScreenShotHelper.saveScreenshot(this.mcDataDir,
this.displayWidth, this.displayHeight, this.framebufferMc));
}
} else if (i == this.gameSettings.keyBindStreamToggleMic.getKeyCode()) {
this.stream.muteMicrophone(false);
}
}
}
}