2006-04-13 20:47:06 +00:00
|
|
|
/*
|
|
|
|
* mouse.c
|
|
|
|
* MACT library -to- JonoF's Build Port Mouse Glue
|
2008-06-29 10:41:01 +00:00
|
|
|
*
|
2006-04-13 20:47:06 +00:00
|
|
|
* by Jonathon Fowler
|
|
|
|
*
|
|
|
|
* Since we don't have the source to the MACT library I've had to
|
|
|
|
* concoct some magic to glue its idea of controllers into that of
|
|
|
|
* my Build port.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Duke Nukem Copyright (C) 1996, 2003 3D Realms Entertainment
|
|
|
|
|
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2006-12-21 12:53:11 +00:00
|
|
|
#include "compat.h"
|
2009-04-26 05:57:42 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#include "mouse.h"
|
|
|
|
#include "baselayer.h"
|
|
|
|
|
2012-05-01 12:38:43 +00:00
|
|
|
int32_t Mouse_Init(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2008-06-29 10:41:01 +00:00
|
|
|
initmouse();
|
|
|
|
return ((inputdevices & 2) == 2);
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-29 10:41:01 +00:00
|
|
|
void MOUSE_Shutdown(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2008-06-29 10:41:01 +00:00
|
|
|
uninitmouse();
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
2012-08-20 21:24:54 +00:00
|
|
|
#if 0
|
2008-06-29 10:41:01 +00:00
|
|
|
void MOUSE_ShowCursor(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-29 10:41:01 +00:00
|
|
|
void MOUSE_HideCursor(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
}
|
2012-08-20 21:24:54 +00:00
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t MOUSE_GetButtons(void)
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t buttons;
|
2012-05-01 12:38:43 +00:00
|
|
|
|
2008-06-29 10:41:01 +00:00
|
|
|
readmousebstatus(&buttons);
|
2012-05-01 12:38:43 +00:00
|
|
|
|
2008-06-29 10:41:01 +00:00
|
|
|
return buttons;
|
2006-04-13 20:47:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|