Initial commit: ROW Client source code
Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,61 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// Sample Name: RefreshRate Sample
|
||||
//
|
||||
// Copyright (c) 1999-2001 Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
|
||||
Description
|
||||
===========
|
||||
This example demonstrates basic usage of the IDirectDraw7::StartRefreshRate
|
||||
and IDirectDraw7::EvaluateMode methods. Together, these methods allow an
|
||||
application to explore what display modes and refresh rates the monitor
|
||||
connected to this display device is able to display, though a manual
|
||||
user-controlled process. The application will present the UI that asks
|
||||
the user if the current mode under test is being displayed correctly by
|
||||
the monitor.
|
||||
|
||||
Applications should use these methods when they are interested in using
|
||||
higher refresh rates.
|
||||
|
||||
The basic idea is that DirectDraw will setup a list of modes to be tested
|
||||
(based on the list the app passed in), and then sequentially test them
|
||||
under application control. The app starts the test process, and then
|
||||
calls IDirectDraw7::EvaluateMode continuously. DirectDraw will take care
|
||||
of settings the modes. All the app has to do is SetCooperativeLevel
|
||||
beforehand, and then handle surface loss and drawing the UI that asks the
|
||||
user if they can see the current mode under test. DirectDraw returns
|
||||
enough information from IDirectDraw7::EvalulateMode to allow the app to
|
||||
know when to do these things, and when to stop testing. The app can pass
|
||||
a flag to IDirectDraw7::EvaluateMode if the user happened to say they
|
||||
could see the mode corretly, which will cause DirectDraw to mark the mode
|
||||
as good and move on. DirectDraw may also decide that time as run out and
|
||||
give up on a certain mode.
|
||||
|
||||
DirectDraw uses information at its disposal from any automated means to
|
||||
make the testing process as short as possible, and applications only need
|
||||
to test modes they are interested in.
|
||||
|
||||
Path
|
||||
====
|
||||
Source: DXSDK\Samples\Multimedia\DDraw\RefreshRate
|
||||
|
||||
Executable: DXSDK\Samples\Multimedia\DDraw\Bin
|
||||
|
||||
User's Guide
|
||||
============
|
||||
The user interface is a simple dialog box. First select the DirectDraw display
|
||||
device. Then select which modes you would like to test, and click 'Test'.
|
||||
Each display mode will be tested, and the user can select if the mode appears
|
||||
correctly or not.
|
||||
|
||||
If the user makes a mistake, and accidently says YES when a mode cannot be seen,
|
||||
or NO when a mode really can be seen (thus ending up with a lower refresh rate than
|
||||
possible) this allows the user to reset the test results and try again.
|
||||
|
||||
Click the Exit button to exit the application.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,770 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
// File: RefreshRate.cpp
|
||||
//
|
||||
// Desc: This example demonstrates basic usage of the IDirectDraw7::StartRefreshRate
|
||||
// and IDirectDraw7::EvaluateMode methods. Together, these methods allow an
|
||||
// application to explore what display modes and refresh rates the monitor
|
||||
// connected to this display device is able to display, through a manual
|
||||
// user-controlled process. The application will present the UI that asks
|
||||
// the user if the current mode under test is being displayed correctly by
|
||||
// the monitor.
|
||||
//
|
||||
// Applications should use these methods when they are interested in using
|
||||
// higher refresh rates.
|
||||
//
|
||||
// The basic idea is that DirectDraw will setup a list of modes to be tested
|
||||
// (based on the list the app passed in), and then sequentially test them
|
||||
// under application control. The app starts the test process, and then
|
||||
// calls IDirectDraw7::EvaluateMode continuously. DirectDraw will take care
|
||||
// of setting the modes. All the app has to do is SetCooperativeLevel
|
||||
// beforehand, and then handle surface loss and drawing the UI that asks the
|
||||
// user if they can see the current mode under test. DirectDraw returns
|
||||
// enough information from IDirectDraw7::EvaluateMode to allow the app to
|
||||
// know when to do these things, and when to stop testing. The app can pass
|
||||
// a flag to IDirectDraw7::EvaluateMode if the user happened to say they
|
||||
// could see the mode corretly, which will cause DirectDraw to mark the mode
|
||||
// as good and move on. DirectDraw may also decide that time as run out and
|
||||
// give up on a certain mode.
|
||||
//
|
||||
// DirectDraw uses information at its disposal from any automated means to
|
||||
// make the testing process as short as possible, and applications only need
|
||||
// to test modes they are interested in.
|
||||
//
|
||||
// Copyright (c) 1999-2001 Microsoft Corp. All rights reserved.
|
||||
//-----------------------------------------------------------------------------
|
||||
#define STRICT
|
||||
#include <windows.h>
|
||||
#include <basetsd.h>
|
||||
#include <commdlg.h>
|
||||
#include <initguid.h>
|
||||
#include <ddraw.h>
|
||||
#include "resource.h"
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Function-prototypes
|
||||
//-----------------------------------------------------------------------------
|
||||
INT_PTR CALLBACK MainDlgProc( HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam );
|
||||
HRESULT GetDirectDrawDevices();
|
||||
VOID OnInitDialog();
|
||||
|
||||
HRESULT ResetDeviceModes( DWORD dwDeviceIndex );
|
||||
HRESULT UpdateModesListBox( DWORD dwDeviceIndex );
|
||||
|
||||
BOOL WINAPI DDEnumCallbackEx( GUID*, LPSTR, LPSTR, LPVOID, HMONITOR );
|
||||
HRESULT WINAPI EnumModesCallback( LPDDSURFACEDESC pddsd, LPVOID pContext );
|
||||
HRESULT WINAPI EnumAllModesCallback( LPDDSURFACEDESC2 pddsd, LPVOID pContext );
|
||||
|
||||
HRESULT OnRefreshRate();
|
||||
HRESULT PerformDirectDrawRefreshRate( LPDIRECTDRAW7 pDD, SIZE* aTestModes,
|
||||
DWORD dwTestModes );
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Defines, constants, and global variables
|
||||
//-----------------------------------------------------------------------------
|
||||
#define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } }
|
||||
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }
|
||||
|
||||
struct DDRAW_DEVICE_STRUCT
|
||||
{
|
||||
GUID guid;
|
||||
CHAR strDescription[256];
|
||||
CHAR strDriverName[64];
|
||||
DWORD dwModeCount;
|
||||
SIZE aModeSize[256];
|
||||
};
|
||||
|
||||
HWND g_hDlg = NULL;
|
||||
LPDIRECTDRAW g_pDD = NULL;
|
||||
|
||||
DDRAW_DEVICE_STRUCT g_aDevices[16];
|
||||
DWORD g_dwDeviceCount;
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: WinMain()
|
||||
// Desc: Entry point for the application. Since we use a simple dialog for
|
||||
// user interaction we don't need to pump messages.
|
||||
//-----------------------------------------------------------------------------
|
||||
INT APIENTRY WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR pCmdLine,
|
||||
INT nCmdShow )
|
||||
{
|
||||
if( FAILED( GetDirectDrawDevices() ) )
|
||||
return FALSE;
|
||||
|
||||
// Display the main dialog box.
|
||||
DialogBox( hInst, MAKEINTRESOURCE(IDD_MAIN), NULL, MainDlgProc );
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: MainDlgProc()
|
||||
// Desc: Handles dialog messages
|
||||
//-----------------------------------------------------------------------------
|
||||
INT_PTR CALLBACK MainDlgProc( HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam )
|
||||
{
|
||||
switch( msg )
|
||||
{
|
||||
case WM_INITDIALOG:
|
||||
// Store HWND in global
|
||||
g_hDlg = hDlg;
|
||||
|
||||
OnInitDialog();
|
||||
break;
|
||||
|
||||
case WM_COMMAND:
|
||||
switch( LOWORD(wParam) )
|
||||
{
|
||||
case IDCANCEL:
|
||||
EndDialog( hDlg, IDCANCEL );
|
||||
break;
|
||||
|
||||
case IDC_TEST:
|
||||
if( FAILED( OnRefreshRate() ) )
|
||||
{
|
||||
MessageBox( g_hDlg, "Error doing starting mode test. "
|
||||
"Sample will now exit.", "DirectDraw Sample",
|
||||
MB_OK | MB_ICONERROR );
|
||||
EndDialog( g_hDlg, IDABORT );
|
||||
}
|
||||
break;
|
||||
|
||||
case IDC_RESET:
|
||||
HWND hWndDeviceList;
|
||||
DWORD dwDeviceIndex;
|
||||
|
||||
// Get the currently selected DirectDraw device
|
||||
hWndDeviceList = GetDlgItem( hDlg, IDC_DDRAW_DEVICE_LIST );
|
||||
dwDeviceIndex = (DWORD)SendMessage( hWndDeviceList, LB_GETCURSEL, 0, 0 );
|
||||
|
||||
// Reset the modes for it
|
||||
if( FAILED( ResetDeviceModes( dwDeviceIndex ) ) )
|
||||
{
|
||||
MessageBox( g_hDlg, "Error reset DirectDraw device. "
|
||||
"Sample will now exit.", "DirectDraw Sample",
|
||||
MB_OK | MB_ICONERROR );
|
||||
EndDialog( g_hDlg, IDABORT );
|
||||
}
|
||||
break;
|
||||
|
||||
case IDC_DDRAW_DEVICE_LIST:
|
||||
switch( HIWORD(wParam) )
|
||||
{
|
||||
case LBN_SELCHANGE:
|
||||
// Get the currently selected DirectDraw device
|
||||
DWORD dwDeviceIndex;
|
||||
dwDeviceIndex = (DWORD)SendMessage( (HWND) lParam,
|
||||
LB_GETCURSEL, 0, 0 );
|
||||
|
||||
// Update the list boxes using it
|
||||
if( FAILED( UpdateModesListBox( dwDeviceIndex ) ) )
|
||||
{
|
||||
MessageBox( g_hDlg, "Error enumerating DirectDraw modes."
|
||||
"Sample will now exit.", "DirectDraw Sample",
|
||||
MB_OK | MB_ICONERROR );
|
||||
EndDialog( g_hDlg, IDABORT );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
return FALSE;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
return FALSE; // Didn't handle message
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
return FALSE; // Didn't handle message
|
||||
}
|
||||
|
||||
return TRUE; // Handled message
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: GetDirectDrawDevices()
|
||||
// Desc: Retrieves all available DirectDraw devices and stores the information
|
||||
// in g_aDevices[]
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT GetDirectDrawDevices()
|
||||
{
|
||||
return DirectDrawEnumerateEx( DDEnumCallbackEx,
|
||||
NULL,
|
||||
DDENUM_ATTACHEDSECONDARYDEVICES |
|
||||
DDENUM_DETACHEDSECONDARYDEVICES |
|
||||
DDENUM_NONDISPLAYDEVICES );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: DDEnumCallbackEx()
|
||||
// Desc: Enumerates all available DirectDraw devices
|
||||
//-----------------------------------------------------------------------------
|
||||
BOOL WINAPI DDEnumCallbackEx( GUID* pGUID,
|
||||
LPSTR strDriverDescription,
|
||||
LPSTR strDriverName,
|
||||
LPVOID pContext,
|
||||
HMONITOR hm )
|
||||
{
|
||||
HRESULT hr;
|
||||
LPDIRECTDRAW pDD = NULL;
|
||||
|
||||
// Create a DirectDraw device using the enumerated guid
|
||||
hr = DirectDrawCreateEx( pGUID, (VOID**)&pDD, IID_IDirectDraw7, NULL );
|
||||
|
||||
if( SUCCEEDED(hr) )
|
||||
{
|
||||
if( pGUID )
|
||||
{
|
||||
// Add it to the global storage structure
|
||||
g_aDevices[ g_dwDeviceCount ].guid = *pGUID;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Clear the guid from the global storage structure
|
||||
ZeroMemory( &g_aDevices[ g_dwDeviceCount ].guid,
|
||||
sizeof(GUID) );
|
||||
}
|
||||
|
||||
// Copy the description of the driver into the structure
|
||||
lstrcpyn( g_aDevices[ g_dwDeviceCount ].strDescription,
|
||||
strDriverDescription, 256 );
|
||||
lstrcpyn( g_aDevices[ g_dwDeviceCount ].strDriverName,
|
||||
strDriverName, 64 );
|
||||
|
||||
// Retrive the modes this device can support
|
||||
g_aDevices[ g_dwDeviceCount ].dwModeCount = 0;
|
||||
hr = pDD->EnumDisplayModes( 0, NULL, NULL, EnumModesCallback );
|
||||
|
||||
// Increase the counter for the number of devices found
|
||||
g_dwDeviceCount++;
|
||||
|
||||
// Release this device
|
||||
SAFE_RELEASE( pDD );
|
||||
}
|
||||
|
||||
// Continue looking for more devices
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: EnumModesCallback()
|
||||
// Desc: Enumerates the available modes for the device from which
|
||||
// EnumDisplayModes() was called. It records the unique mode sizes in
|
||||
// the g_aDevices[g_dwDeviceCount].aModeSize array
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT WINAPI EnumModesCallback( LPDDSURFACEDESC pddsd,
|
||||
LPVOID pContext )
|
||||
{
|
||||
DWORD i;
|
||||
DWORD dwModeSizeX;
|
||||
DWORD dwModeSizeY;
|
||||
DWORD dwModeCount;
|
||||
|
||||
// For each mode, look through all previously found modes
|
||||
// to see if this mode has already been added to the list
|
||||
dwModeCount = g_aDevices[ g_dwDeviceCount ].dwModeCount;
|
||||
|
||||
for( i = 0; i < dwModeCount; i ++ )
|
||||
{
|
||||
dwModeSizeX = g_aDevices[ g_dwDeviceCount ].aModeSize[i].cx;
|
||||
dwModeSizeY = g_aDevices[ g_dwDeviceCount ].aModeSize[i].cy;
|
||||
|
||||
if ( ( dwModeSizeX == pddsd->dwWidth ) &&
|
||||
( dwModeSizeY == pddsd->dwHeight ) )
|
||||
{
|
||||
// If this mode has been added, then stop looking
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// If this mode was not in g_aDevices[g_dwDeviceCount].aModeSize[]
|
||||
// then added it.
|
||||
if( i == g_aDevices[ g_dwDeviceCount ].dwModeCount )
|
||||
{
|
||||
g_aDevices[ g_dwDeviceCount ].aModeSize[i].cx = pddsd->dwWidth;
|
||||
g_aDevices[ g_dwDeviceCount ].aModeSize[i].cy = pddsd->dwHeight;
|
||||
|
||||
// Increase the number of modes found for this device
|
||||
g_aDevices[ g_dwDeviceCount ].dwModeCount++;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: OnInitDialog()
|
||||
// Desc: Initializes the dialogs (sets up UI controls, etc.)
|
||||
//-----------------------------------------------------------------------------
|
||||
VOID OnInitDialog()
|
||||
{
|
||||
// Load the icon
|
||||
#ifdef _WIN64
|
||||
HINSTANCE hInst = (HINSTANCE) GetWindowLongPtr( g_hDlg, GWLP_HINSTANCE );
|
||||
#else
|
||||
HINSTANCE hInst = (HINSTANCE) GetWindowLong( g_hDlg, GWL_HINSTANCE );
|
||||
#endif
|
||||
HICON hIcon = LoadIcon( hInst, MAKEINTRESOURCE( IDI_ICON1 ) );
|
||||
|
||||
// Set the icon for this dialog.
|
||||
PostMessage( g_hDlg, WM_SETICON, ICON_BIG, (LPARAM) hIcon ); // Set big icon
|
||||
PostMessage( g_hDlg, WM_SETICON, ICON_SMALL, (LPARAM) hIcon ); // Set small icon
|
||||
|
||||
// Show all available DirectDraw devices in the listbox
|
||||
HWND hWndDeviceList = GetDlgItem( g_hDlg, IDC_DDRAW_DEVICE_LIST );
|
||||
for( UINT i = 0; i < g_dwDeviceCount; i++ )
|
||||
{
|
||||
SendMessage( hWndDeviceList, LB_ADDSTRING, 0,
|
||||
(LPARAM) g_aDevices[i].strDescription );
|
||||
SendMessage( hWndDeviceList, LB_SETITEMDATA, i, (LPARAM) i);
|
||||
}
|
||||
|
||||
// Select the first device by default
|
||||
DWORD dwCurrentSelect = 0;
|
||||
|
||||
SendMessage( hWndDeviceList, LB_SETCURSEL, dwCurrentSelect, 0);
|
||||
if( FAILED( UpdateModesListBox( dwCurrentSelect ) ) )
|
||||
{
|
||||
MessageBox( g_hDlg, "Error enumerating DirectDraw modes."
|
||||
"Sample will now exit.", "DirectDraw Sample",
|
||||
MB_OK | MB_ICONERROR );
|
||||
EndDialog( g_hDlg, IDABORT );
|
||||
}
|
||||
|
||||
SetFocus( hWndDeviceList );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: ResetDeviceModes()
|
||||
// Desc: If the user makes a mistake, and accidently says YES when a mode
|
||||
// cannot be seen, or NO when a mode really can be seen (thus ending up
|
||||
// with a lower refresh rate than possible) this allows the user to reset
|
||||
// the test results and try again.
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT ResetDeviceModes( DWORD dwDeviceIndex )
|
||||
{
|
||||
LPDIRECTDRAW7 pDD = NULL;
|
||||
HRESULT hr;
|
||||
|
||||
// Create a DirectDraw device based using the selected device guid
|
||||
hr = DirectDrawCreateEx( &g_aDevices[dwDeviceIndex].guid,
|
||||
(VOID**) &pDD, IID_IDirectDraw7, NULL);
|
||||
|
||||
if( SUCCEEDED(hr) )
|
||||
{
|
||||
// Set the cooperative level to normal
|
||||
if( SUCCEEDED( hr = pDD->SetCooperativeLevel( g_hDlg, DDSCL_NORMAL ) ) )
|
||||
{
|
||||
// Clear the previous mode tests
|
||||
//
|
||||
// We ignore the return code, since we would do nothing different on error returns.
|
||||
// Note that most applications would never need to call StartRefreshRate this way.
|
||||
// The reset functionality is intended to be used when a user accidentally accepted
|
||||
// a mode that didn't actually display correctly.
|
||||
pDD->StartModeTest( NULL, 0, 0 );
|
||||
}
|
||||
|
||||
// Release this device
|
||||
SAFE_RELEASE( pDD );
|
||||
}
|
||||
|
||||
hr = UpdateModesListBox( dwDeviceIndex );
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: UpdateModesListBox()
|
||||
// Desc: Updates the "modes to test" and "all modes" list boxes
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT UpdateModesListBox( DWORD dwDeviceIndex )
|
||||
{
|
||||
LPDIRECTDRAW7 pDD = NULL;
|
||||
HRESULT hr;
|
||||
|
||||
HWND hWndModesToTest = GetDlgItem( g_hDlg, IDC_TEST_MODES_LIST );
|
||||
SendMessage( hWndModesToTest, LB_RESETCONTENT, 0, 0 );
|
||||
|
||||
// Update the "modes to test" list box based on the display device selected
|
||||
for( DWORD i = 0; i < g_aDevices[dwDeviceIndex].dwModeCount; i++ )
|
||||
{
|
||||
CHAR strMode[64];
|
||||
|
||||
// Make a string based on the this mode's size
|
||||
wsprintf( strMode, TEXT("%u x %u"),
|
||||
g_aDevices[dwDeviceIndex].aModeSize[i].cx,
|
||||
g_aDevices[dwDeviceIndex].aModeSize[i].cy );
|
||||
|
||||
// Add it to the list box
|
||||
SendMessage( hWndModesToTest, LB_ADDSTRING, 0, (LPARAM) strMode );
|
||||
SendMessage( hWndModesToTest, LB_SETITEMDATA, i, (LPARAM) i );
|
||||
}
|
||||
|
||||
// Create a DirectDraw device based using the selected device guid
|
||||
if( SUCCEEDED( hr = DirectDrawCreateEx( &g_aDevices[dwDeviceIndex].guid,
|
||||
(VOID**) &pDD, IID_IDirectDraw7, NULL) ) )
|
||||
{
|
||||
HWND hWndAllModes = GetDlgItem( g_hDlg, IDC_ALL_MODES_LIST );
|
||||
SendMessage( hWndAllModes, LB_RESETCONTENT, 0, 0 );
|
||||
|
||||
// Enumerate and display all supported modes along
|
||||
// with supported bit depth, and refresh rates
|
||||
// in the "All Modes" listbox
|
||||
hr = pDD->EnumDisplayModes( DDEDM_REFRESHRATES, NULL,
|
||||
(VOID*) hWndAllModes,
|
||||
EnumAllModesCallback );
|
||||
|
||||
// Release this device
|
||||
SAFE_RELEASE( pDD );
|
||||
}
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: EnumAllModesCallback()
|
||||
// Desc: For each mode enumerated, it adds it to the "All Modes" listbox.
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT WINAPI EnumAllModesCallback( LPDDSURFACEDESC2 pddsd,
|
||||
LPVOID pContext )
|
||||
{
|
||||
CHAR strMode[64];
|
||||
HWND hWnd = (HWND) pContext;
|
||||
|
||||
wsprintf( strMode, TEXT("%ux%ux%u - %u Hz"),
|
||||
pddsd->dwWidth,
|
||||
pddsd->dwHeight,
|
||||
pddsd->ddpfPixelFormat.dwRGBBitCount,
|
||||
pddsd->dwRefreshRate );
|
||||
|
||||
SendMessage( hWnd, LB_ADDSTRING, 0, (LPARAM) strMode );
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: OnRefreshRate()
|
||||
// Desc: User hit the "Test" button
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT OnRefreshRate()
|
||||
{
|
||||
HWND hWndModesToTest = GetDlgItem( g_hDlg, IDC_TEST_MODES_LIST );
|
||||
DWORD dwSelectCount = (DWORD)SendMessage( hWndModesToTest, LB_GETSELCOUNT, 0, 0 );
|
||||
|
||||
if( dwSelectCount > 0 )
|
||||
{
|
||||
LPDIRECTDRAW7 pDD = NULL;
|
||||
HRESULT hr;
|
||||
HWND hWndDeviceList;
|
||||
DWORD dwDeviceIndex;
|
||||
|
||||
// Get the currently selected DirectDraw device
|
||||
hWndDeviceList = GetDlgItem( g_hDlg, IDC_DDRAW_DEVICE_LIST );
|
||||
dwDeviceIndex = (DWORD)SendMessage( hWndDeviceList, LB_GETCURSEL, 0, 0 );
|
||||
|
||||
// Create a DirectDraw device based using the selected device guid
|
||||
if( FAILED( hr = DirectDrawCreateEx( &g_aDevices[dwDeviceIndex].guid,
|
||||
(VOID**) &pDD, IID_IDirectDraw7, NULL) ) )
|
||||
return hr;
|
||||
|
||||
// This is a good usage of DDSCL_CREATEDEVICEWINDOW: DirectDraw will create a window that covers
|
||||
// the monitor, and won't mess around with our dialog box. Any mouse clicks on the cover window
|
||||
// will therefore not be received and misinterpreted by the dialog box, since such clicks will
|
||||
// be sent to DirectDraw's internal message procedure and therein ignored.
|
||||
|
||||
if( FAILED( hr = pDD->SetCooperativeLevel( g_hDlg,
|
||||
DDSCL_EXCLUSIVE |
|
||||
DDSCL_FULLSCREEN |
|
||||
DDSCL_CREATEDEVICEWINDOW |
|
||||
DDSCL_SETFOCUSWINDOW ) ) )
|
||||
{
|
||||
SAFE_RELEASE( pDD );
|
||||
return hr;
|
||||
}
|
||||
|
||||
|
||||
|
||||
SIZE aTestModes[256];
|
||||
DWORD dwTestModes = 0;
|
||||
|
||||
// Find out which modes are selected, then just test those
|
||||
for( DWORD i = 0; i < g_aDevices[dwDeviceIndex].dwModeCount; i++ )
|
||||
{
|
||||
if( SendMessage( hWndModesToTest, LB_GETSEL, i, 0 ) )
|
||||
{
|
||||
// Record the selected modes in aTestModes[]
|
||||
aTestModes[dwTestModes] = g_aDevices[dwDeviceIndex].aModeSize[i];
|
||||
dwTestModes++;
|
||||
}
|
||||
}
|
||||
|
||||
// Perform test on each of the selected modes on the selected device
|
||||
hr = PerformDirectDrawRefreshRate( pDD, aTestModes, dwTestModes );
|
||||
|
||||
// Release this device
|
||||
SAFE_RELEASE( pDD );
|
||||
|
||||
switch (hr)
|
||||
{
|
||||
case DDERR_NOMONITORINFORMATION:
|
||||
// No EDID data is present for the current monitor.
|
||||
MessageBox(g_hDlg,
|
||||
"The current monitor cannot be identified electronically.\n"
|
||||
"High refresh rates are not allowed on such monitors, so the test will not be performed.",
|
||||
"Testing Will Not Proceed", MB_OK | MB_ICONINFORMATION);
|
||||
break;
|
||||
case DDERR_NODRIVERSUPPORT:
|
||||
// The driver cannot support refresh rate testing.
|
||||
MessageBox(g_hDlg,
|
||||
"This driver does not support the refresh rate feature of DirectDraw. Test cannot be performed.",
|
||||
"Testing Cannot Proceed", MB_OK | MB_ICONINFORMATION);
|
||||
break;
|
||||
default:
|
||||
if( SUCCEEDED(hr) )
|
||||
{
|
||||
MessageBox( g_hDlg, TEXT("Mode test completed"), TEXT("Result"), MB_OK );
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
// A StartRefreshRate error occurred.
|
||||
MessageBox(g_hDlg,
|
||||
"StartRefreshRate returned an unexpected value when called with the DDSMT_ISTESTREQUIRED flag.",
|
||||
"StartRefreshRate Error", MB_OK | MB_ICONEXCLAMATION);
|
||||
return hr;
|
||||
}
|
||||
}
|
||||
|
||||
// Update the mode list boxes based on the device selected
|
||||
if( FAILED( hr = UpdateModesListBox( dwDeviceIndex ) ) )
|
||||
return hr;
|
||||
}
|
||||
else
|
||||
{
|
||||
// There weren't any modes selected to test
|
||||
MessageBox( g_hDlg,
|
||||
TEXT("Select one or more modes to test from the list box"),
|
||||
TEXT("No modes selected"), MB_OK );
|
||||
}
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: SetupPrimarySurface()
|
||||
// Desc: Setups a primary DirectDraw surface
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT SetupPrimarySurface( LPDIRECTDRAW7 pDD, LPDIRECTDRAWSURFACE7* ppDDS )
|
||||
{
|
||||
DDSURFACEDESC2 ddsd;
|
||||
|
||||
ZeroMemory( &ddsd, sizeof(ddsd) );
|
||||
|
||||
ddsd.dwSize = sizeof(ddsd);
|
||||
ddsd.dwFlags = DDSD_CAPS;
|
||||
ddsd.ddsCaps.dwCaps = DDSCAPS_PRIMARYSURFACE;
|
||||
|
||||
return pDD->CreateSurface(&ddsd, ppDDS, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: UpdatePrimarySurface()
|
||||
// Desc: Fills the primary surface with white, and diplays the timeout value
|
||||
// on screen
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT UpdatePrimarySurface( LPDIRECTDRAWSURFACE7 pDDS, DWORD dwTimeout )
|
||||
{
|
||||
DDBLTFX ddbltfx;
|
||||
HDC hDC;
|
||||
char strTimeout[128];
|
||||
RECT rect;
|
||||
HRESULT hr;
|
||||
|
||||
// Clear the screen:
|
||||
ZeroMemory( &ddbltfx, sizeof(ddbltfx) );
|
||||
ddbltfx.dwSize = sizeof(ddbltfx);
|
||||
ddbltfx.dwFillColor = 0xFFFFFFFF;
|
||||
|
||||
hr = pDDS->Blt( NULL, NULL, NULL, DDBLT_COLORFILL | DDBLT_WAIT, &ddbltfx );
|
||||
if( FAILED( hr ) )
|
||||
return hr;
|
||||
|
||||
// Display the timeout value
|
||||
if( FAILED( hr = pDDS->GetDC( &hDC ) ) )
|
||||
return hr;
|
||||
|
||||
GetWindowRect( g_hDlg, &rect );
|
||||
wsprintf( strTimeout, TEXT("Press space to accept or escape to reject. ")
|
||||
TEXT("%2d seconds until timeout"), dwTimeout );
|
||||
DrawText( hDC, strTimeout, strlen(strTimeout), &rect, DT_CENTER | DT_VCENTER | DT_SINGLELINE );
|
||||
|
||||
// Cleanup
|
||||
pDDS->ReleaseDC( hDC );
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Name: PerformDirectDrawRefreshRate()
|
||||
// Desc: Perform the IDirectDraw7::StartRefreshRate and IDirectDraw7::EvaluateMode
|
||||
// tests
|
||||
// Returns: S_OK if no modes needed testing, or all modes tested successfully,
|
||||
// informative error code otherwise.
|
||||
//-----------------------------------------------------------------------------
|
||||
HRESULT PerformDirectDrawRefreshRate( LPDIRECTDRAW7 pDD, SIZE* aTestModes,
|
||||
DWORD dwTestModes )
|
||||
{
|
||||
LPDIRECTDRAWSURFACE7 pDDSPrimary = NULL;
|
||||
HRESULT hr;
|
||||
MSG msg;
|
||||
DWORD dwFlags = 0;
|
||||
DWORD dwTimeout;
|
||||
BOOL bMsgReady;
|
||||
|
||||
// First call StartRefreshRate with the DDSMT_ISTESTREQUIRED flag to determine
|
||||
// whether the tests can be performed and need to be performed.
|
||||
hr = pDD->StartModeTest( aTestModes, dwTestModes, DDSMT_ISTESTREQUIRED);
|
||||
|
||||
switch (hr)
|
||||
{
|
||||
case DDERR_NEWMODE:
|
||||
// DDERR_NEWMODE means that there are modes that need testing.
|
||||
break;
|
||||
case DDERR_TESTFINISHED:
|
||||
// DDERR_TESTFINISHED means that all the modes that we wish to test have already been tested correctly
|
||||
return S_OK;
|
||||
default:
|
||||
//Possible return codes here include DDERR_NOMONITORINFORMATION or DDERR_NODRIVERSUPPORT or
|
||||
//other fatal error codes (DDERR_INVALIDPARAMS, DDERR_NOEXCLUSIVEMODE, etc.)
|
||||
return hr;
|
||||
}
|
||||
|
||||
hr = pDD->StartModeTest( aTestModes, dwTestModes, 0 );
|
||||
if( hr == DDERR_TESTFINISHED )
|
||||
{
|
||||
// The tests completed early, so return
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
// Create the primary DirectDraw surface
|
||||
if( FAILED( SetupPrimarySurface( pDD, &pDDSPrimary ) ) )
|
||||
return hr;
|
||||
|
||||
// Loop until the mode tests are complete
|
||||
while( TRUE )
|
||||
{
|
||||
bMsgReady = PeekMessage(&msg, NULL, 0, 0, PM_REMOVE);
|
||||
|
||||
if( bMsgReady )
|
||||
{
|
||||
if (msg.message == WM_KEYDOWN)
|
||||
{
|
||||
switch (msg.wParam)
|
||||
{
|
||||
case VK_SPACE:
|
||||
dwFlags = DDEM_MODEPASSED;
|
||||
break;
|
||||
|
||||
case VK_ESCAPE:
|
||||
dwFlags = DDEM_MODEFAILED;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TranslateMessage( &msg );
|
||||
DispatchMessage( &msg );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// This method will only succeed with monitors that contain EDID data.
|
||||
// If the monitor is not EDID compliant, then the method will return
|
||||
// DDERR_TESTFINISHED without testing any modes. If the EDID table does not
|
||||
// contain values higher than 60hz, no modes will tested. Refresh rates
|
||||
// higher than 100 hz will only be tested if the EDID table contains values
|
||||
// higher than 85hz.
|
||||
hr = pDD->EvaluateMode(dwFlags, &dwTimeout);
|
||||
|
||||
if( hr == DD_OK )
|
||||
{
|
||||
if( pDDSPrimary )
|
||||
{
|
||||
// Clear the screen, and display the timeout value
|
||||
UpdatePrimarySurface( pDDSPrimary, dwTimeout );
|
||||
}
|
||||
}
|
||||
else if( hr == DDERR_NEWMODE )
|
||||
{
|
||||
// Cleanup the last DirectDraw surface, and create
|
||||
// a new one for the new mode
|
||||
SAFE_RELEASE( pDDSPrimary );
|
||||
|
||||
if( FAILED( SetupPrimarySurface( pDD, &pDDSPrimary ) ) )
|
||||
return hr;
|
||||
|
||||
dwFlags = 0;
|
||||
}
|
||||
else if( hr == DDERR_TESTFINISHED )
|
||||
{
|
||||
// Test complete, so stop looping
|
||||
break;
|
||||
}
|
||||
|
||||
Sleep( 100 );
|
||||
}
|
||||
}
|
||||
|
||||
// Cleanup
|
||||
SAFE_RELEASE( pDDSPrimary );
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,119 @@
|
||||
# Microsoft Developer Studio Project File - Name="RefreshRate" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
||||
|
||||
CFG=RefreshRate - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "RefreshRate.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "RefreshRate.mak" CFG="RefreshRate - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "RefreshRate - Win32 Release" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "RefreshRate - Win32 Debug" (based on "Win32 (x86) Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "RefreshRate - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /I "..\wavutil" /I "..\..\common\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
|
||||
# ADD LINK32 odbc32.lib odbccp32.lib dxerr8.lib ddraw.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 /stack:0x200000,0x200000
|
||||
|
||||
!ELSEIF "$(CFG)" == "RefreshRate - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "..\..\common\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 odbc32.lib odbccp32.lib comctl32.lib dxerr8.lib ddraw.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /stack:0x200000,0x200000
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "RefreshRate - Win32 Release"
|
||||
# Name "RefreshRate - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\RefreshRate.cpp
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\directx.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\RefreshRate.rc
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\resource.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\readme.txt
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
||||
@@ -0,0 +1,29 @@
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "RefreshRate"=.\refreshrate.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
# Microsoft Developer Studio Generated NMAKE File, Based on refreshrate.dsp
|
||||
!IF "$(CFG)" == ""
|
||||
CFG=RefreshRate - Win32 Debug
|
||||
!MESSAGE No configuration specified. Defaulting to RefreshRate - Win32 Debug.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(CFG)" != "RefreshRate - Win32 Release" && "$(CFG)" != "RefreshRate - Win32 Debug"
|
||||
!MESSAGE Invalid configuration "$(CFG)" specified.
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "refreshrate.mak" CFG="RefreshRate - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "RefreshRate - Win32 Release" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "RefreshRate - Win32 Debug" (based on "Win32 (x86) Application")
|
||||
!MESSAGE
|
||||
!ERROR An invalid configuration is specified.
|
||||
!ENDIF
|
||||
|
||||
!IF "$(OS)" == "Windows_NT"
|
||||
NULL=
|
||||
!ELSE
|
||||
NULL=nul
|
||||
!ENDIF
|
||||
|
||||
!IF "$(CFG)" == "RefreshRate - Win32 Release"
|
||||
|
||||
OUTDIR=.\Release
|
||||
INTDIR=.\Release
|
||||
# Begin Custom Macros
|
||||
OutDir=.\Release
|
||||
# End Custom Macros
|
||||
|
||||
ALL : "$(OUTDIR)\refreshrate.exe"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\RefreshRate.obj"
|
||||
-@erase "$(INTDIR)\RefreshRate.res"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(OUTDIR)\refreshrate.exe"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
CPP=cl.exe
|
||||
CPP_PROJ=/nologo /ML /W3 /GX /O2 /I "..\wavutil" /I "..\..\common\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Fp"$(INTDIR)\refreshrate.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
|
||||
|
||||
.c{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.c{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
MTL=midl.exe
|
||||
MTL_PROJ=/nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
RSC=rc.exe
|
||||
RSC_PROJ=/l 0x409 /fo"$(INTDIR)\RefreshRate.res" /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\refreshrate.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LINK32=link.exe
|
||||
LINK32_FLAGS=odbc32.lib odbccp32.lib dxerr8.lib ddraw.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /incremental:no /pdb:"$(OUTDIR)\refreshrate.pdb" /machine:I386 /out:"$(OUTDIR)\refreshrate.exe" /stack:0x200000,0x200000
|
||||
LINK32_OBJS= \
|
||||
"$(INTDIR)\RefreshRate.obj" \
|
||||
"$(INTDIR)\RefreshRate.res"
|
||||
|
||||
"$(OUTDIR)\refreshrate.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
|
||||
$(LINK32) @<<
|
||||
$(LINK32_FLAGS) $(LINK32_OBJS)
|
||||
<<
|
||||
|
||||
!ELSEIF "$(CFG)" == "RefreshRate - Win32 Debug"
|
||||
|
||||
OUTDIR=.\Debug
|
||||
INTDIR=.\Debug
|
||||
# Begin Custom Macros
|
||||
OutDir=.\Debug
|
||||
# End Custom Macros
|
||||
|
||||
ALL : "$(OUTDIR)\refreshrate.exe"
|
||||
|
||||
|
||||
CLEAN :
|
||||
-@erase "$(INTDIR)\RefreshRate.obj"
|
||||
-@erase "$(INTDIR)\RefreshRate.res"
|
||||
-@erase "$(INTDIR)\vc60.idb"
|
||||
-@erase "$(INTDIR)\vc60.pdb"
|
||||
-@erase "$(OUTDIR)\refreshrate.exe"
|
||||
-@erase "$(OUTDIR)\refreshrate.ilk"
|
||||
-@erase "$(OUTDIR)\refreshrate.pdb"
|
||||
|
||||
"$(OUTDIR)" :
|
||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
||||
|
||||
CPP=cl.exe
|
||||
CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /I "..\..\common\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /Fp"$(INTDIR)\refreshrate.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
|
||||
|
||||
.c{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.obj::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.c{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cpp{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
.cxx{$(INTDIR)}.sbr::
|
||||
$(CPP) @<<
|
||||
$(CPP_PROJ) $<
|
||||
<<
|
||||
|
||||
MTL=midl.exe
|
||||
MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
RSC=rc.exe
|
||||
RSC_PROJ=/l 0x409 /fo"$(INTDIR)\RefreshRate.res" /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)\refreshrate.bsc"
|
||||
BSC32_SBRS= \
|
||||
|
||||
LINK32=link.exe
|
||||
LINK32_FLAGS=odbc32.lib odbccp32.lib comctl32.lib dxerr8.lib ddraw.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /incremental:yes /pdb:"$(OUTDIR)\refreshrate.pdb" /debug /machine:I386 /out:"$(OUTDIR)\refreshrate.exe" /pdbtype:sept /stack:0x200000,0x200000
|
||||
LINK32_OBJS= \
|
||||
"$(INTDIR)\RefreshRate.obj" \
|
||||
"$(INTDIR)\RefreshRate.res"
|
||||
|
||||
"$(OUTDIR)\refreshrate.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
|
||||
$(LINK32) @<<
|
||||
$(LINK32_FLAGS) $(LINK32_OBJS)
|
||||
<<
|
||||
|
||||
!ENDIF
|
||||
|
||||
|
||||
!IF "$(NO_EXTERNAL_DEPS)" != "1"
|
||||
!IF EXISTS("refreshrate.dep")
|
||||
!INCLUDE "refreshrate.dep"
|
||||
!ELSE
|
||||
!MESSAGE Warning: cannot find "refreshrate.dep"
|
||||
!ENDIF
|
||||
!ENDIF
|
||||
|
||||
|
||||
!IF "$(CFG)" == "RefreshRate - Win32 Release" || "$(CFG)" == "RefreshRate - Win32 Debug"
|
||||
SOURCE=.\RefreshRate.cpp
|
||||
|
||||
"$(INTDIR)\RefreshRate.obj" : $(SOURCE) "$(INTDIR)"
|
||||
|
||||
|
||||
SOURCE=.\RefreshRate.rc
|
||||
|
||||
"$(INTDIR)\RefreshRate.res" : $(SOURCE) "$(INTDIR)"
|
||||
$(RSC) $(RSC_PROJ) $(SOURCE)
|
||||
|
||||
|
||||
|
||||
!ENDIF
|
||||
|
||||
@@ -0,0 +1,151 @@
|
||||
//Microsoft Developer Studio generated resource script.
|
||||
//
|
||||
#include "resource.h"
|
||||
|
||||
#define APSTUDIO_READONLY_SYMBOLS
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 2 resource.
|
||||
//
|
||||
#include "afxres.h"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#undef APSTUDIO_READONLY_SYMBOLS
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// English (U.S.) resources
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
||||
#ifdef _WIN32
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
#pragma code_page(1252)
|
||||
#endif //_WIN32
|
||||
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TEXTINCLUDE
|
||||
//
|
||||
|
||||
1 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"resource.h\0"
|
||||
END
|
||||
|
||||
2 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"#include ""afxres.h""\r\n"
|
||||
"\0"
|
||||
END
|
||||
|
||||
3 TEXTINCLUDE DISCARDABLE
|
||||
BEGIN
|
||||
"#define _AFX_NO_SPLITTER_RESOURCES\r\n"
|
||||
"#define _AFX_NO_OLE_RESOURCES\r\n"
|
||||
"#define _AFX_NO_TRACKER_RESOURCES\r\n"
|
||||
"#define _AFX_NO_PROPERTY_RESOURCES\r\n"
|
||||
"\r\n"
|
||||
"#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
|
||||
"#ifdef _WIN32\r\n"
|
||||
"LANGUAGE 9, 1\r\n"
|
||||
"#pragma code_page(1252)\r\n"
|
||||
"#endif\r\n"
|
||||
"#include ""afxres.rc"" // Standard components\r\n"
|
||||
"#endif\0"
|
||||
END
|
||||
|
||||
#endif // APSTUDIO_INVOKED
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Dialog
|
||||
//
|
||||
|
||||
IDD_MAIN DIALOG DISCARDABLE 0, 0, 292, 174
|
||||
STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
CAPTION "DirectDraw RefreshRate Sample"
|
||||
FONT 8, "MS Shell Dlg"
|
||||
BEGIN
|
||||
LTEXT "Select DirectDraw display device:",IDC_STATIC,7,7,107,8
|
||||
LISTBOX IDC_DDRAW_DEVICE_LIST,7,17,278,34,LBS_DISABLENOSCROLL |
|
||||
WS_VSCROLL | WS_TABSTOP
|
||||
LTEXT "Select display modes to test:",IDC_STATIC,7,58,90,8
|
||||
LISTBOX IDC_TEST_MODES_LIST,7,68,105,75,LBS_MULTIPLESEL |
|
||||
LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_VSCROLL |
|
||||
WS_TABSTOP
|
||||
LTEXT "All display modes:",IDC_STATIC,118,58,56,8
|
||||
LISTBOX IDC_ALL_MODES_LIST,117,68,168,75,LBS_NOINTEGRALHEIGHT |
|
||||
LBS_MULTICOLUMN | LBS_DISABLENOSCROLL | LBS_NOSEL |
|
||||
WS_HSCROLL | WS_TABSTOP
|
||||
PUSHBUTTON "&Test",IDC_TEST,7,153,50,14
|
||||
PUSHBUTTON "&Reset",IDC_RESET,61,153,50,14
|
||||
DEFPUSHBUTTON "E&xit",IDCANCEL,235,153,50,14
|
||||
END
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// DESIGNINFO
|
||||
//
|
||||
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
GUIDELINES DESIGNINFO DISCARDABLE
|
||||
BEGIN
|
||||
IDD_MAIN, DIALOG
|
||||
BEGIN
|
||||
LEFTMARGIN, 7
|
||||
RIGHTMARGIN, 285
|
||||
TOPMARGIN, 7
|
||||
BOTTOMMARGIN, 167
|
||||
END
|
||||
END
|
||||
#endif // APSTUDIO_INVOKED
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Icon
|
||||
//
|
||||
|
||||
// Icon with lowest ID value placed first to ensure application icon
|
||||
// remains consistent on all systems.
|
||||
IDI_ICON1 ICON DISCARDABLE "directx.ico"
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Accelerator
|
||||
//
|
||||
|
||||
IDR_ACCELERATOR1 ACCELERATORS DISCARDABLE
|
||||
BEGIN
|
||||
"R", IDC_RESET, VIRTKEY, ALT, NOINVERT
|
||||
"T", IDC_TEST, VIRTKEY, ALT, NOINVERT
|
||||
"X", IDCANCEL, VIRTKEY, ALT, NOINVERT
|
||||
END
|
||||
|
||||
#endif // English (U.S.) resources
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
#ifndef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 3 resource.
|
||||
//
|
||||
#define _AFX_NO_SPLITTER_RESOURCES
|
||||
#define _AFX_NO_OLE_RESOURCES
|
||||
#define _AFX_NO_TRACKER_RESOURCES
|
||||
#define _AFX_NO_PROPERTY_RESOURCES
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
||||
#ifdef _WIN32
|
||||
LANGUAGE 9, 1
|
||||
#pragma code_page(1252)
|
||||
#endif
|
||||
#include "afxres.rc" // Standard components
|
||||
#endif
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Developer Studio generated include file.
|
||||
// Used by RefreshRate.rc
|
||||
//
|
||||
#define IDC_TEST 3
|
||||
#define IDC_RESET 4
|
||||
#define IDI_ICON1 103
|
||||
#define IDD_MAIN 130
|
||||
#define IDR_ACCELERATOR1 132
|
||||
#define IDC_DDRAW_DEVICE_LIST 1000
|
||||
#define IDC_TEST_MODES_LIST 1001
|
||||
#define IDC_ALL_MODES_LIST 1002
|
||||
#define IDC_CLOSE 1017
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 133
|
||||
#define _APS_NEXT_COMMAND_VALUE 32771
|
||||
#define _APS_NEXT_CONTROL_VALUE 1019
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user