libConsole/cross_getch.c
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 10 Feb 2019 13:17:01 +0100
changeset 173 374a86886bc5
parent 134 8325a0fc22cd
permissions -rw-r--r--
LAST-DIGIT-BUG: INCREMENT before LF

/**
 * libConsole/cross_getch.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <jni.h>
#include <Console.h>

#ifdef WIN32
#include <conio.h>

static int cross_getch ()
{
    int ch = -1;

    ch = getch ();

    return ch;
}

#else
#include <termios.h>

static int cross_getch ()
{
    int ch = -1, fd = 0;
    struct termios neu, alt;

    fd = fileno (stdin);
    tcgetattr (fd, &alt);
    neu = alt;
    neu.c_lflag &= ~(ICANON | ECHO);
    tcsetattr (fd, TCSANOW, &neu);
    ch = getchar ();
    tcsetattr (fd, TCSANOW, &alt);
    return ch;
}
#endif

JNIEXPORT jint JNICALL Java_Console_getch (JNIEnv * env, jclass lass)
{
    return cross_getch ();
}