2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 00:37:37 +00:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2013 - Daniel De Matteis
|
2012-01-11 21:27:07 +00:00
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2012-01-11 21:27:07 +00:00
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2012-01-11 21:27:07 +00:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 21:31:57 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2012-01-11 21:27:07 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PS3_INPUT_H_
|
|
|
|
#define _PS3_INPUT_H_
|
|
|
|
|
2012-03-25 22:36:40 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wchar.h>
|
2012-07-01 11:33:30 +00:00
|
|
|
|
2012-07-01 18:45:13 +00:00
|
|
|
#include "sdk_defines.h"
|
2012-07-01 11:33:30 +00:00
|
|
|
|
2012-07-01 12:10:13 +00:00
|
|
|
#ifndef __PSL1GHT__
|
2012-03-19 01:55:13 +00:00
|
|
|
#define MAX_PADS 7
|
2012-07-01 12:10:13 +00:00
|
|
|
#endif
|
2012-03-19 01:55:13 +00:00
|
|
|
|
|
|
|
#define DEADZONE_LOW 55
|
|
|
|
#define DEADZONE_HIGH 210
|
|
|
|
|
2012-03-25 22:36:40 +00:00
|
|
|
#define OSK_IS_RUNNING(object) object.is_running
|
|
|
|
#define OUTPUT_TEXT_STRING(object) object.osk_text_buffer_char
|
|
|
|
|
2012-08-01 01:01:29 +00:00
|
|
|
#ifdef HAVE_OSKUTIL
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int osk_memorycontainer;
|
|
|
|
wchar_t init_message[CELL_OSKDIALOG_STRING_SIZE + 1];
|
|
|
|
wchar_t message[CELL_OSKDIALOG_STRING_SIZE + 1];
|
|
|
|
wchar_t osk_text_buffer[CELL_OSKDIALOG_STRING_SIZE + 1];
|
|
|
|
char osk_text_buffer_char[CELL_OSKDIALOG_STRING_SIZE + 1];
|
|
|
|
uint32_t flags;
|
|
|
|
bool is_running;
|
|
|
|
bool text_can_be_fetched;
|
|
|
|
sys_memory_container_t containerid;
|
|
|
|
CellOskDialogPoint pos;
|
|
|
|
CellOskDialogInputFieldInfo inputFieldInfo;
|
|
|
|
CellOskDialogCallbackReturnParam outputInfo;
|
|
|
|
CellOskDialogParam dialogParam;
|
|
|
|
} oskutil_params;
|
|
|
|
|
2012-03-25 22:36:40 +00:00
|
|
|
void oskutil_write_message(oskutil_params *params, const wchar_t* msg);
|
|
|
|
void oskutil_write_initial_message(oskutil_params *params, const wchar_t* msg);
|
2012-09-11 10:33:46 +00:00
|
|
|
void oskutil_init(oskutil_params *params, unsigned containersize);
|
2012-03-25 22:36:40 +00:00
|
|
|
bool oskutil_start(oskutil_params *params);
|
|
|
|
void oskutil_stop(oskutil_params *params);
|
|
|
|
void oskutil_finished(oskutil_params *params);
|
|
|
|
void oskutil_close(oskutil_params *params);
|
|
|
|
void oskutil_unload(oskutil_params *params);
|
|
|
|
|
2012-07-01 11:33:30 +00:00
|
|
|
#endif
|
2012-03-25 22:36:40 +00:00
|
|
|
|
2012-01-11 21:27:07 +00:00
|
|
|
#endif
|