2014-11-05 03:01:01 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2014-2015 - Jay McCarthy
|
2014-11-05 03:01:01 +00:00
|
|
|
*
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2015-01-12 18:11:51 +00:00
|
|
|
#include "../menu_driver.h"
|
2015-01-10 03:53:37 +00:00
|
|
|
#include "../menu.h"
|
2014-11-05 03:01:01 +00:00
|
|
|
#include "../../general.h"
|
|
|
|
#include "ios.h"
|
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
static void *ios_init(void)
|
|
|
|
{
|
|
|
|
menu_handle_t *menu = (menu_handle_t*)calloc(1, sizeof(*menu));
|
|
|
|
if (!menu)
|
|
|
|
return NULL;
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
menu->userdata = (ios_handle_t*)calloc(1, sizeof(ios_handle_t));
|
|
|
|
if (!menu->userdata)
|
|
|
|
{
|
|
|
|
free(menu);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
return menu;
|
2014-11-05 03:01:01 +00:00
|
|
|
}
|
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
static void ios_free(void *data)
|
|
|
|
{
|
|
|
|
menu_handle_t *menu = (menu_handle_t*)data;
|
|
|
|
if (!menu)
|
|
|
|
return;
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
if (menu->userdata)
|
|
|
|
free(menu->userdata);
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
free(menu);
|
|
|
|
return;
|
2014-11-05 03:01:01 +00:00
|
|
|
}
|
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
static int menu_ios_iterate(unsigned action)
|
|
|
|
{
|
2015-01-19 05:44:46 +00:00
|
|
|
ios_handle_t *ios = NULL;
|
2014-11-09 13:43:10 +00:00
|
|
|
if (!driver.menu)
|
|
|
|
return 0;
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2015-01-19 05:44:46 +00:00
|
|
|
ios = (ios_handle_t*)driver.menu->userdata;
|
|
|
|
if (ios->switch_to_ios)
|
|
|
|
ios->switch_to_ios();
|
2014-11-05 03:01:01 +00:00
|
|
|
|
2014-11-09 13:43:10 +00:00
|
|
|
return 0;
|
2014-11-05 03:01:01 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 02:49:26 +00:00
|
|
|
static void ios_update_core_info(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
menu_update_libretro_info(&g_extern.menu.info);
|
|
|
|
}
|
|
|
|
|
2014-11-05 16:19:41 +00:00
|
|
|
menu_ctx_driver_backend_t menu_ctx_backend_ios = {
|
|
|
|
menu_ios_iterate,
|
|
|
|
|
|
|
|
"menu_ios",
|
|
|
|
};
|
|
|
|
|
2014-11-05 03:01:01 +00:00
|
|
|
menu_ctx_driver_t menu_ctx_ios = {
|
|
|
|
NULL, // set_texture
|
|
|
|
NULL, // render_messagebox
|
2014-11-05 16:19:41 +00:00
|
|
|
NULL, // render
|
2014-11-05 03:01:01 +00:00
|
|
|
NULL, // frame
|
|
|
|
ios_init, // init
|
|
|
|
NULL, // init_lists
|
|
|
|
ios_free, // free
|
|
|
|
NULL, // context_reset
|
|
|
|
NULL, // context_destroy
|
|
|
|
NULL, // populate_entries
|
|
|
|
NULL, // iterate
|
|
|
|
NULL, // input_postprocess
|
|
|
|
NULL, // navigation_clear
|
|
|
|
NULL, // navigation_decrement
|
|
|
|
NULL, // navigation_increment
|
|
|
|
NULL, // navigation_set
|
|
|
|
NULL, // navigation_set_last
|
|
|
|
NULL, // navigation_descend_alphabet
|
|
|
|
NULL, // navigation_ascend_alphabet
|
|
|
|
NULL, // list_insert
|
|
|
|
NULL, // list_delete
|
|
|
|
NULL, // list_clear
|
2014-12-01 15:09:29 +00:00
|
|
|
NULL, // list_cache
|
2014-11-05 03:01:01 +00:00
|
|
|
NULL, // list_set_selection
|
|
|
|
NULL, // init_core_info
|
2014-11-25 02:49:26 +00:00
|
|
|
ios_update_core_info, // ios_update_core_info
|
2014-11-05 16:19:41 +00:00
|
|
|
&menu_ctx_backend_ios, // backend
|
2014-11-05 03:01:01 +00:00
|
|
|
"ios",
|
|
|
|
};
|