only center vertically in DW2

svn-id: r39052
This commit is contained in:
Kostas Nakos 2009-03-01 21:03:46 +00:00
parent b42b7a8b40
commit a718713925
3 changed files with 9 additions and 9 deletions

View File

@ -501,7 +501,7 @@ void ClearScreen() {
* Updates the screen surface within the following rectangle
*/
void UpdateScreenRect(const Common::Rect &pClip) {
int yOffset = (g_system->getHeight() - SCREEN_HEIGHT) / 2;
int yOffset = TinselV2 ? (g_system->getHeight() - SCREEN_HEIGHT) / 2 : 0;
byte *pSrc = (byte *)_vm->screen().getBasePtr(pClip.left, pClip.top);
g_system->copyRectToScreen(pSrc, _vm->screen().pitch, pClip.left, pClip.top + yOffset,
pClip.width(), pClip.height());

View File

@ -1099,9 +1099,9 @@ bool TinselEngine::pollEvent() {
{
// This fragment takes care of Tinsel 2 when it's been compiled with
// blank areas at the top and bottom of thes creen
int ySize = (g_system->getHeight() - _vm->screen().h) / 2;
if ((event.mouse.y >= ySize) && (event.mouse.y < (g_system->getHeight() - ySize)))
_mousePos = Common::Point(event.mouse.x, event.mouse.y - ySize);
int ySkip = TinselV2 ? (g_system->getHeight() - _vm->screen().h) / 2 : 0;
if ((event.mouse.y >= ySkip) && (event.mouse.y < (g_system->getHeight() - ySkip)))
_mousePos = Common::Point(event.mouse.x, event.mouse.y - ySkip);
}
break;

View File

@ -124,6 +124,9 @@ typedef bool (*KEYFPTR)(const Common::KeyState &);
#define TinselV1 (TinselVersion == TINSEL_V1)
#define TinselV2 (TinselVersion == TINSEL_V2)
// Global reference to the TinselEngine object
extern TinselEngine *_vm;
class TinselEngine : public Engine {
int _gameId;
Common::KeyState _keyPressed;
@ -197,8 +200,8 @@ public:
Common::Point getMousePosition() const { return _mousePos; }
void setMousePosition(const Common::Point &pt) {
int ySize = (g_system->getHeight() - _screenSurface.h) / 2;
g_system->warpMouse(pt.x, pt.y + ySize);
int yOffset = TinselV2 ? (g_system->getHeight() - _screenSurface.h) / 2 : 0;
g_system->warpMouse(pt.x, pt.y + yOffset);
_mousePos = pt;
}
void divertKeyInput(KEYFPTR fptr) { _keyHandler = fptr; }
@ -206,9 +209,6 @@ public:
uint8 getKeyDirection() const { return _dosPlayerDir; }
};
// Global reference to the TinselEngine object
extern TinselEngine *_vm;
// Externally available methods
void CuttingScene(bool bCutting);
void CDChangeForRestore(int cdNumber);