turbocat a27452493c OpenTyrian: Sources uploaded
git-svn-id: svn://kolibrios.org@9169 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-08-31 18:22:39 +00:00

116 lines
2.9 KiB
C

/*
* OpenTyrian: A modern cross-platform port of Tyrian
* Copyright (C) 2007-2009 The OpenTyrian Development Team
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "mouse.h"
#include "keyboard.h"
#include "nortvars.h"
#include "sprite.h"
#include "video.h"
#include "vga256d.h"
#if defined(TARGET_GP2X) || defined(TARGET_DINGUX)
bool has_mouse = false;
#else
bool has_mouse = true;
#endif
bool mouse_has_three_buttons = true;
JE_word lastMouseX, lastMouseY;
JE_byte mouseCursor;
JE_word mouseX, mouseY, mouseButton;
JE_word mouseXB, mouseYB;
JE_byte mouseGrabShape[24 * 28]; /* [1..24*28] */
void JE_drawShapeTypeOne( JE_word x, JE_word y, JE_byte *shape )
{
JE_word xloop = 0, yloop = 0;
JE_byte *p = shape; /* shape pointer */
Uint8 *s; /* screen pointer, 8-bit specific */
Uint8 *s_limit; /* buffer boundary */
s = (Uint8 *)VGAScreen->pixels;
s += y * VGAScreen->pitch + x;
s_limit = (Uint8 *)VGAScreen->pixels;
s_limit += VGAScreen->h * VGAScreen->pitch;
for (yloop = 0; yloop < 28; yloop++)
{
for (xloop = 0; xloop < 24; xloop++)
{
if (s >= s_limit) return;
*s = *p;
s++; p++;
}
s -= 24;
s += VGAScreen->pitch;
}
}
void JE_grabShapeTypeOne( JE_word x, JE_word y, JE_byte *shape )
{
JE_word xloop = 0, yloop = 0;
JE_byte *p = shape; /* shape pointer */
Uint8 *s; /* screen pointer, 8-bit specific */
Uint8 *s_limit; /* buffer boundary */
s = (Uint8 *)VGAScreen->pixels;
s += y * VGAScreen->pitch + x;
s_limit = (Uint8 *)VGAScreen->pixels;
s_limit += VGAScreen->h * VGAScreen->pitch;
for (yloop = 0; yloop < 28; yloop++)
{
for (xloop = 0; xloop < 24; xloop++)
{
if (s >= s_limit) return;
*p = *s;
s++; p++;
}
s -= 24;
s += VGAScreen->pitch;
}
}
void JE_mouseStart( void )
{
const JE_word mouseCursorGr[3] /* [1..3] */ = {273, 275, 277};
if (has_mouse)
{
service_SDL_events(false);
mouseButton = mousedown ? lastmouse_but : 0; /* incorrect, possibly unimportant */
lastMouseX = MIN(mouse_x, 320 - 13);
lastMouseY = MIN(mouse_y, 200 - 16);
JE_grabShapeTypeOne(lastMouseX, lastMouseY, mouseGrabShape);
blit_sprite2x2(VGAScreen, lastMouseX, lastMouseY, shapes6, mouseCursorGr[mouseCursor]);
}
}
void JE_mouseReplace( void )
{
if (has_mouse)
JE_drawShapeTypeOne(lastMouseX, lastMouseY, mouseGrabShape);
}