lwjgl/src/native/win32/org_lwjgl_Sys.c

180 lines
5.2 KiB
C
Raw Normal View History

2002-08-15 11:46:18 -04:00
/*
2004-06-12 16:28:34 -04:00
* Copyright (c) 2002-2004 LWJGL Project
2002-08-15 11:46:18 -04:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
2002-08-11 07:49:32 -04:00
*
2002-08-15 11:46:18 -04:00
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
2002-08-11 07:49:32 -04:00
*
2004-06-12 16:28:34 -04:00
* * Neither the name of 'LWJGL' nor the names of
2002-08-15 11:46:18 -04:00
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* $Id$
2002-08-11 07:49:32 -04:00
*
2002-08-15 11:46:18 -04:00
* Win32 system library.
2002-08-11 07:49:32 -04:00
*
2002-08-15 11:46:18 -04:00
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
2002-08-11 07:49:32 -04:00
*/
2004-09-22 11:06:27 -04:00
#include "Window.h"
2002-08-11 07:49:32 -04:00
#include "org_lwjgl_Sys.h"
2005-01-18 16:11:12 -05:00
#include "org_lwjgl_Win32SysImplementation.h"
#include "common_tools.h"
#include <malloc.h>
2002-12-22 14:52:44 -05:00
unsigned __int64 hires_timer_freq = 0; // Hires timer frequency
unsigned __int64 hires_timer = 0; // Hires timer current time
2002-08-11 07:49:32 -04:00
/*
* Class: org_lwjgl_Sys
* Method: getTimerResolution
* Signature: ()J
*/
JNIEXPORT jlong JNICALL Java_org_lwjgl_Win32SysImplementation_getTimerResolution
(JNIEnv * env, jobject ignored)
2002-08-11 07:49:32 -04:00
{
QueryPerformanceFrequency((LARGE_INTEGER*) &hires_timer_freq);
return (jlong) hires_timer_freq;
2002-08-11 07:49:32 -04:00
}
/*
* Class: org_lwjgl_Sys
* Method: ngetTime
2002-08-11 07:49:32 -04:00
* Signature: ()J
*/
JNIEXPORT jlong JNICALL Java_org_lwjgl_Win32SysImplementation_getTime
(JNIEnv * env, jobject ignored)
2002-08-11 07:49:32 -04:00
{
QueryPerformanceCounter((LARGE_INTEGER*) &hires_timer);
return (jlong) hires_timer;
2002-08-11 07:49:32 -04:00
}
2002-12-22 14:52:44 -05:00
/*
* Class: org_lwjgl_Sys
* Method: alert
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_Win32SysImplementation_alert
(JNIEnv * env, jobject ignored, jstring title, jstring message)
2002-12-22 14:52:44 -05:00
{
char * eMessageText = GetStringNativeChars(env, message);
char * cTitleBarText = GetStringNativeChars(env, title);
MessageBox(getCurrentHWND(), eMessageText, cTitleBarText, MB_OK | MB_TOPMOST);
2002-12-22 14:52:44 -05:00
2003-12-20 17:03:25 -05:00
printfDebug("*** Alert ***%s\n%s\n", cTitleBarText, eMessageText);
2002-12-22 14:52:44 -05:00
free(eMessageText);
free(cTitleBarText);
2002-12-22 14:52:44 -05:00
}
2003-08-07 17:53:06 -04:00
2003-10-28 11:23:17 -05:00
/*
* Class: org_lwjgl_Sys
* Method: openURL
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_Win32SysImplementation_openURL
(JNIEnv * env, jobject ignored, jstring url)
2003-10-28 11:23:17 -05:00
{
STARTUPINFO si;
PROCESS_INFORMATION pi;
char * urlString = GetStringNativeChars(env, url);
2003-10-28 11:23:17 -05:00
char command[256];
strcpy(command, "");
strcat(command, "rundll32 url.dll,FileProtocolHandler ");
strncat(command, urlString, 200); // Prevent buffer overflow
free(urlString);
2003-10-28 11:23:17 -05:00
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line).
command, // Command line.
NULL, // Process handle not inheritable.
NULL, // Thread handle not inheritable.
FALSE, // Set handle inheritance to FALSE.
0, // No creation flags.
NULL, // Use parent's environment block.
NULL, // Use parent's starting directory.
&si, // Pointer to STARTUPINFO structure.
&pi ) // Pointer to PROCESS_INFORMATION structure.
)
{
2003-12-20 17:03:25 -05:00
printfDebug("Failed to open URL %s\n", urlString);
}
// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
2003-10-28 11:23:17 -05:00
}
2004-08-11 11:37:40 -04:00
2004-08-12 10:54:39 -04:00
const void * getClipboard(int type)
{
void * ret;
HANDLE hglb;
2004-08-12 10:54:39 -04:00
// Open the clipboard
if (!OpenClipboard(NULL))
return NULL;
hglb = GetClipboardData(type);
2004-08-12 10:54:39 -04:00
if (hglb != NULL) {
ret = GlobalLock(hglb);
if (ret != NULL) {
GlobalUnlock(hglb);
}
}
// Close the clipboard now we're done
CloseClipboard();
return ret;
}
JNIEXPORT jstring JNICALL Java_org_lwjgl_Win32SysImplementation_getClipboard
(JNIEnv * env, jobject ignored)
2004-08-12 10:30:13 -04:00
{
2004-08-12 10:54:39 -04:00
// Check to see if there's text available in the clipboard
BOOL textAvailable = IsClipboardFormatAvailable(CF_TEXT);
BOOL unicodeAvailable = IsClipboardFormatAvailable(CF_UNICODETEXT);
if (unicodeAvailable) {
const wchar_t * str = (const wchar_t *) getClipboard(CF_UNICODETEXT);
return (*env)->NewString(env, str, wcslen(str));
2004-08-12 10:54:39 -04:00
} else if (textAvailable) {
return NewStringNative(env, (const char *) getClipboard(CF_TEXT));
2004-08-12 10:54:39 -04:00
} else {
return NULL;
}
2004-08-12 10:30:13 -04:00
}