123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- //-----------------------------------------------------------------------------
- // Verve
- // Copyright (C) 2014 - Violent Tulip
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #include "Verve/GUI/VEditorWindow.h"
- #include "gfx/gfxInit.h"
- //-----------------------------------------------------------------------------
- IMPLEMENT_CONOBJECT( VEditorWindow );
- //-----------------------------------------------------------------------------
- bool VEditorWindow::onAdd( void )
- {
- if ( !Parent::onAdd() )
- {
- return false;
- }
- GFXAdapter *adapter = GFXInit::getBestAdapterChoice();
- if ( adapter && adapter->mType != NullDevice )
- {
- mPlatformWindow->setMinimumWindowSize( Point2I( 904, 287 ) );
- }
- return true;
- }
- //-----------------------------------------------------------------------------
- ConsoleMethod( VEditorWindow, resetCursor, void, 2, 2, "( )" )
- {
- S32 currCursor = PlatformCursorController::curArrow;
- if ( object->mCursorChanged == currCursor )
- {
- return;
- }
- PlatformWindow *window = object->getPlatformWindow();
- PlatformCursorController *controller = window->getCursorController();
- if( object->mCursorChanged != -1)
- {
- controller->popCursor();
- }
- controller->pushCursor(currCursor);
- object->mCursorChanged = currCursor;
- Platform::setWindowLocked( false );
- }
- ConsoleMethod( VEditorWindow, setVideoMode, void, 5, 8,
- "(int width, int height, bool fullscreen, [int bitDepth], [int refreshRate])\n"
- "Change the video mode of this canvas. This method has the side effect of setting the $pref::Video::mode to the new values.\n\n"
- "\\param width The screen width to set.\n"
- "\\param height The screen height to set.\n"
- "\\param fullscreen Specify true to run fullscreen or false to run in a window\n"
- "\\param bitDepth [optional] The desired bit-depth. Defaults to the current setting. This parameter is ignored if you are running in a window.\n"
- "\\param refreshRate [optional] The desired refresh rate. Defaults to the current setting. This parameter is ignored if you are running in a window"
- "\\param antialiasLevel [optional] The level of anti-aliasing to apply 0 = none" )
- {
- if (!object->getPlatformWindow())
- return;
- // Update the video mode and tell the window to reset.
- GFXVideoMode vm = object->getPlatformWindow()->getVideoMode();
- U32 width = dAtoi(argv[2]);
- U32 height = dAtoi(argv[3]);
- bool changed = false;
- if (width == 0 && height > 0)
- {
- // Our width is 0 but our height isn't...
- // Try to find a matching width
- for(S32 i=0; i<object->getPlatformWindow()->getGFXDevice()->getVideoModeList()->size(); i++)
- {
- const GFXVideoMode &newVm = (*(object->getPlatformWindow()->getGFXDevice()->getVideoModeList()))[i];
- if(newVm.resolution.y == height)
- {
- width = newVm.resolution.x;
- changed = true;
- break;
- }
- }
- }
- else if (height == 0 && width > 0)
- {
- // Our height is 0 but our width isn't...
- // Try to find a matching height
- for(S32 i=0; i<object->getPlatformWindow()->getGFXDevice()->getVideoModeList()->size(); i++)
- {
- const GFXVideoMode &newVm = (*(object->getPlatformWindow()->getGFXDevice()->getVideoModeList()))[i];
- if(newVm.resolution.x == width)
- {
- height = newVm.resolution.y;
- changed = true;
- break;
- }
- }
- }
- if (width == 0 || height == 0)
- {
- // Got a bad size for both of our dimensions or one of our dimensions and
- // didn't get a match for the other default back to our current resolution
- width = vm.resolution.x;
- height = vm.resolution.y;
- changed = true;
- }
- if (changed)
- Con::errorf("GuiCanvas::setVideoMode(): Error - Invalid resolution of (%d, %d) - attempting (%d, %d)", dAtoi(argv[2]), dAtoi(argv[3]), width, height);
- vm.resolution = Point2I(width, height);
- vm.fullScreen = dAtob(argv[4]);
- // These optional params are set to default at construction of vm. If they
- // aren't specified, just leave them at whatever they were set to.
- if ((argc > 5) && (dStrlen(argv[5]) > 0))
- {
- vm.bitDepth = dAtoi(argv[5]);
- }
- if ((argc > 6) && (dStrlen(argv[6]) > 0))
- {
- vm.refreshRate = dAtoi(argv[6]);
- }
- if ((argc > 7) && (dStrlen(argv[7]) > 0))
- {
- vm.antialiasLevel = dAtoi(argv[7]);
- }
- #ifndef TORQUE_OS_XENON
- object->getPlatformWindow()->setVideoMode(vm);
- #endif
- }
|