2016-05-10 05:54:47 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
|
|
|
*
|
|
|
|
* 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 <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <file/nbio.h>
|
|
|
|
#include <formats/image.h>
|
|
|
|
#include <compat/strl.h>
|
|
|
|
#include <retro_assert.h>
|
|
|
|
#include <retro_miscellaneous.h>
|
|
|
|
#include <lists/string_list.h>
|
|
|
|
#include <rhash.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "../menu/menu_driver.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "tasks_internal.h"
|
|
|
|
#include "../verbosity.h"
|
|
|
|
|
2016-05-18 22:07:49 +00:00
|
|
|
#define CB_MENU_WALLPAPER 0xb476e505U
|
|
|
|
#define CB_MENU_THUMBNAIL 0x82f93a21U
|
|
|
|
|
2016-05-10 05:55:31 +00:00
|
|
|
enum image_status_enum
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
2016-05-10 05:55:31 +00:00
|
|
|
IMAGE_STATUS_POLL = 0,
|
|
|
|
IMAGE_STATUS_TRANSFER,
|
|
|
|
IMAGE_STATUS_TRANSFER_PARSE,
|
|
|
|
IMAGE_STATUS_PROCESS_TRANSFER,
|
|
|
|
IMAGE_STATUS_PROCESS_TRANSFER_PARSE,
|
|
|
|
IMAGE_STATUS_TRANSFER_PARSE_FREE
|
2016-05-10 05:54:47 +00:00
|
|
|
};
|
|
|
|
|
2016-05-18 22:06:52 +00:00
|
|
|
typedef struct nbio_image_handle nbio_image_handle_t;
|
|
|
|
|
2016-05-13 13:00:44 +00:00
|
|
|
struct nbio_image_handle
|
|
|
|
{
|
|
|
|
struct texture_image ti;
|
|
|
|
bool is_blocking;
|
|
|
|
bool is_blocking_on_processing;
|
|
|
|
bool is_finished;
|
|
|
|
transfer_cb_t cb;
|
|
|
|
void *handle;
|
|
|
|
size_t size;
|
|
|
|
unsigned processing_pos_increment;
|
|
|
|
unsigned pos_increment;
|
|
|
|
int processing_final_state;
|
|
|
|
unsigned status;
|
|
|
|
};
|
|
|
|
|
2016-05-10 05:54:47 +00:00
|
|
|
static int cb_image_menu_upload_generic(void *data, size_t len)
|
|
|
|
{
|
|
|
|
unsigned r_shift, g_shift, b_shift, a_shift;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!nbio || !image)
|
2016-05-10 05:54:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (image->processing_final_state == IMAGE_PROCESS_ERROR ||
|
|
|
|
image->processing_final_state == IMAGE_PROCESS_ERROR_END)
|
2016-05-10 05:54:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-05-18 10:57:44 +00:00
|
|
|
image_texture_set_color_shifts(&r_shift, &g_shift, &b_shift,
|
2016-05-10 05:54:47 +00:00
|
|
|
&a_shift);
|
|
|
|
|
2016-05-18 10:57:44 +00:00
|
|
|
image_texture_color_convert(r_shift, g_shift, b_shift,
|
2016-05-13 13:18:40 +00:00
|
|
|
a_shift, &image->ti);
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->is_blocking_on_processing = false;
|
|
|
|
image->is_blocking = true;
|
|
|
|
image->is_finished = true;
|
|
|
|
nbio->is_finished = true;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 08:13:36 +00:00
|
|
|
static int task_image_iterate_transfer_parse(nbio_handle_t *nbio)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-13 13:18:40 +00:00
|
|
|
|
|
|
|
if (image->handle && image->cb)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
|
|
|
size_t len = 0;
|
2016-05-13 13:18:40 +00:00
|
|
|
image->cb(nbio, len);
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 08:13:36 +00:00
|
|
|
static int task_image_process(
|
2016-05-12 11:13:14 +00:00
|
|
|
nbio_handle_t *nbio,
|
|
|
|
unsigned *width,
|
|
|
|
unsigned *height)
|
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-18 08:52:23 +00:00
|
|
|
|
2016-05-12 11:13:14 +00:00
|
|
|
int retval = image_transfer_process(
|
2016-05-13 13:18:40 +00:00
|
|
|
image->handle,
|
2016-05-12 11:13:14 +00:00
|
|
|
nbio->image_type,
|
2016-05-13 13:18:40 +00:00
|
|
|
&image->ti.pixels, image->size, width, height);
|
2016-05-12 11:13:14 +00:00
|
|
|
|
|
|
|
if (retval == IMAGE_PROCESS_ERROR)
|
|
|
|
return IMAGE_PROCESS_ERROR;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->ti.width = *width;
|
|
|
|
image->ti.height = *height;
|
2016-05-10 06:23:49 +00:00
|
|
|
|
2016-05-11 18:38:09 +00:00
|
|
|
return retval;
|
2016-05-10 06:23:49 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 01:55:09 +00:00
|
|
|
static int cb_image_menu_generic(nbio_handle_t *nbio)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
|
|
|
unsigned width = 0, height = 0;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!nbio || !image)
|
2016-05-10 05:54:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-05-13 08:13:36 +00:00
|
|
|
switch (task_image_process(nbio,
|
2016-05-13 07:22:29 +00:00
|
|
|
&width, &height))
|
2016-05-10 06:02:42 +00:00
|
|
|
{
|
|
|
|
case IMAGE_PROCESS_ERROR:
|
|
|
|
case IMAGE_PROCESS_ERROR_END:
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->is_blocking_on_processing = true;
|
|
|
|
image->is_finished = false;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cb_image_menu_thumbnail(void *data, size_t len)
|
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-11 01:55:09 +00:00
|
|
|
if (cb_image_menu_generic(nbio) != 0)
|
2016-05-10 05:54:47 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->cb = &cb_image_menu_upload_generic;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 08:13:36 +00:00
|
|
|
static int task_image_iterate_process_transfer(nbio_handle_t *nbio)
|
2016-05-11 19:22:45 +00:00
|
|
|
{
|
|
|
|
unsigned i, width = 0, height = 0;
|
|
|
|
int retval = 0;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-11 19:22:45 +00:00
|
|
|
|
2016-05-18 21:28:03 +00:00
|
|
|
if (!nbio || !image)
|
2016-05-11 19:22:45 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
for (i = 0; i < image->processing_pos_increment; i++)
|
2016-05-11 19:22:45 +00:00
|
|
|
{
|
2016-05-13 08:13:36 +00:00
|
|
|
retval = task_image_process(nbio,
|
2016-05-11 19:22:45 +00:00
|
|
|
&width, &height);
|
|
|
|
if (retval != IMAGE_PROCESS_NEXT)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retval == IMAGE_PROCESS_NEXT)
|
|
|
|
return 0;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->processing_final_state = retval;
|
2016-05-11 19:22:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-05-13 08:13:36 +00:00
|
|
|
static int task_image_iterate_transfer(nbio_handle_t *nbio)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!nbio || !image)
|
2016-05-12 11:13:14 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (image->is_finished)
|
2016-05-10 05:54:47 +00:00
|
|
|
return 0;
|
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
for (i = 0; i < image->pos_increment; i++)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!image_transfer_iterate(image->handle, nbio->image_type))
|
2016-05-12 11:13:14 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-05-10 06:09:12 +00:00
|
|
|
static void rarch_task_image_load_free_internal(nbio_handle_t *nbio)
|
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-13 13:00:44 +00:00
|
|
|
|
2016-05-13 22:48:40 +00:00
|
|
|
if (image)
|
|
|
|
free(image);
|
2016-05-13 13:00:44 +00:00
|
|
|
|
2016-05-13 02:28:16 +00:00
|
|
|
image_transfer_free(image->handle, nbio->image_type);
|
2016-05-18 21:38:51 +00:00
|
|
|
image_texture_free(&image->ti);
|
2016-05-10 06:09:12 +00:00
|
|
|
|
|
|
|
image->handle = NULL;
|
|
|
|
image->cb = NULL;
|
|
|
|
}
|
|
|
|
|
2016-05-11 02:03:21 +00:00
|
|
|
static int cb_nbio_generic(nbio_handle_t *nbio, size_t *len)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
void *ptr = NULL;
|
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!image || !image->handle)
|
2016-05-10 06:09:12 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
ptr = nbio_get_ptr(nbio->handle, len);
|
|
|
|
|
|
|
|
if (!ptr)
|
2016-05-10 06:09:12 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image_transfer_set_buffer_ptr(image->handle, nbio->image_type, ptr);
|
2016-05-11 01:51:26 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->size = *len;
|
|
|
|
image->pos_increment = (*len / 2) ? (*len / 2) : 1;
|
|
|
|
image->processing_pos_increment = (*len / 4) ? (*len / 4) : 1;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
if (!image_transfer_start(image->handle, nbio->image_type))
|
2016-05-13 02:33:11 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 13:18:40 +00:00
|
|
|
image->is_blocking = false;
|
|
|
|
image->is_finished = false;
|
|
|
|
nbio->is_finished = true;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-05-10 06:09:12 +00:00
|
|
|
|
|
|
|
error:
|
|
|
|
rarch_task_image_load_free_internal(nbio);
|
|
|
|
return -1;
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 01:56:31 +00:00
|
|
|
static int cb_nbio_image_menu_thumbnail(void *data, size_t len)
|
2016-05-10 05:54:47 +00:00
|
|
|
{
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = NULL;
|
2016-05-18 15:27:05 +00:00
|
|
|
void *handle = NULL;
|
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-18 21:28:03 +00:00
|
|
|
if (!nbio)
|
2016-05-18 15:27:05 +00:00
|
|
|
goto error;
|
2016-05-13 02:28:16 +00:00
|
|
|
|
2016-05-18 15:27:05 +00:00
|
|
|
handle = image_transfer_new(nbio->image_type);
|
2016-05-13 02:28:16 +00:00
|
|
|
|
2016-05-18 15:27:05 +00:00
|
|
|
if (!handle)
|
2016-05-13 02:28:16 +00:00
|
|
|
goto error;
|
2016-05-18 21:28:03 +00:00
|
|
|
|
|
|
|
image = (nbio_image_handle_t*)nbio->data;
|
2016-05-18 15:27:05 +00:00
|
|
|
|
|
|
|
image->handle = handle;
|
|
|
|
image->size = len;
|
2016-05-13 13:18:40 +00:00
|
|
|
image->cb = &cb_image_menu_thumbnail;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-11 02:03:21 +00:00
|
|
|
return cb_nbio_generic(nbio, &len);
|
2016-05-13 02:28:16 +00:00
|
|
|
|
|
|
|
error:
|
|
|
|
return -1;
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool rarch_task_image_load_handler(retro_task_t *task)
|
|
|
|
{
|
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)task->state;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio_image_handle_t *image = (nbio_image_handle_t*)nbio->data;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
switch (image->status)
|
|
|
|
{
|
2016-05-10 05:55:31 +00:00
|
|
|
case IMAGE_STATUS_PROCESS_TRANSFER:
|
2016-05-13 08:13:36 +00:00
|
|
|
if (task_image_iterate_process_transfer(nbio) == -1)
|
2016-05-10 05:55:31 +00:00
|
|
|
image->status = IMAGE_STATUS_PROCESS_TRANSFER_PARSE;
|
2016-05-10 05:54:47 +00:00
|
|
|
break;
|
2016-05-10 05:55:31 +00:00
|
|
|
case IMAGE_STATUS_TRANSFER_PARSE:
|
2016-05-13 08:13:36 +00:00
|
|
|
task_image_iterate_transfer_parse(nbio);
|
2016-05-10 05:54:47 +00:00
|
|
|
if (image->is_blocking_on_processing)
|
2016-05-10 05:55:31 +00:00
|
|
|
image->status = IMAGE_STATUS_PROCESS_TRANSFER;
|
2016-05-10 05:54:47 +00:00
|
|
|
break;
|
2016-05-10 05:55:31 +00:00
|
|
|
case IMAGE_STATUS_TRANSFER:
|
2016-05-10 05:54:47 +00:00
|
|
|
if (!image->is_blocking)
|
2016-05-13 08:13:36 +00:00
|
|
|
if (task_image_iterate_transfer(nbio) == -1)
|
2016-05-10 05:55:31 +00:00
|
|
|
image->status = IMAGE_STATUS_TRANSFER_PARSE;
|
2016-05-10 05:54:47 +00:00
|
|
|
break;
|
2016-05-10 05:55:31 +00:00
|
|
|
case IMAGE_STATUS_PROCESS_TRANSFER_PARSE:
|
2016-05-13 08:13:36 +00:00
|
|
|
task_image_iterate_transfer_parse(nbio);
|
2016-05-10 05:54:47 +00:00
|
|
|
if (!image->is_finished)
|
|
|
|
break;
|
2016-05-10 05:55:31 +00:00
|
|
|
case IMAGE_STATUS_TRANSFER_PARSE_FREE:
|
|
|
|
case IMAGE_STATUS_POLL:
|
2016-05-10 05:54:47 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( nbio->is_finished
|
2016-05-13 22:48:40 +00:00
|
|
|
&& image->is_finished
|
2016-05-10 05:54:47 +00:00
|
|
|
&& !task->cancelled)
|
|
|
|
{
|
2016-05-13 22:48:40 +00:00
|
|
|
task->task_data = malloc(sizeof(image->ti));
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
if (task->task_data)
|
2016-05-13 22:48:40 +00:00
|
|
|
memcpy(task->task_data, &image->ti, sizeof(image->ti));
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool rarch_task_push_image_load(const char *fullpath,
|
|
|
|
const char *type, retro_task_callback_t cb, void *user_data)
|
|
|
|
{
|
2016-05-13 22:48:40 +00:00
|
|
|
nbio_handle_t *nbio = NULL;
|
|
|
|
retro_task_t *t = NULL;
|
|
|
|
uint32_t cb_type_hash = djb2_calculate(type);
|
|
|
|
struct nbio_t *handle = nbio_open(fullpath, NBIO_READ);
|
|
|
|
nbio_image_handle_t *image = NULL;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-18 21:28:03 +00:00
|
|
|
switch (cb_type_hash)
|
|
|
|
{
|
|
|
|
case CB_MENU_WALLPAPER:
|
|
|
|
case CB_MENU_THUMBNAIL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2016-05-10 05:54:47 +00:00
|
|
|
if (!handle)
|
2016-05-10 06:28:48 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
nbio = (nbio_handle_t*)calloc(1, sizeof(*nbio));
|
|
|
|
|
|
|
|
if (!nbio)
|
2016-05-10 06:28:48 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
2016-05-13 22:48:40 +00:00
|
|
|
image = (nbio_image_handle_t*)calloc(1, sizeof(*image));
|
|
|
|
|
|
|
|
if (!image)
|
|
|
|
goto error;
|
|
|
|
|
2016-05-18 21:28:03 +00:00
|
|
|
image->status = IMAGE_STATUS_TRANSFER;
|
|
|
|
|
|
|
|
nbio->data = (nbio_image_handle_t*)image;
|
2016-05-10 05:54:47 +00:00
|
|
|
nbio->handle = handle;
|
|
|
|
nbio->is_finished = false;
|
2016-05-18 21:28:03 +00:00
|
|
|
nbio->cb = &cb_nbio_image_menu_thumbnail;
|
2016-05-10 05:54:47 +00:00
|
|
|
nbio->status = NBIO_STATUS_TRANSFER;
|
|
|
|
|
|
|
|
if (strstr(fullpath, ".png"))
|
2016-05-11 02:10:42 +00:00
|
|
|
nbio->image_type = IMAGE_TYPE_PNG;
|
2016-05-10 05:54:47 +00:00
|
|
|
else if (strstr(fullpath, ".jpeg") || strstr(fullpath, ".jpg"))
|
2016-05-11 02:10:42 +00:00
|
|
|
nbio->image_type = IMAGE_TYPE_JPEG;
|
2016-05-17 19:38:51 +00:00
|
|
|
else if (strstr(fullpath, ".bmp"))
|
|
|
|
nbio->image_type = IMAGE_TYPE_BMP;
|
2016-05-18 08:52:23 +00:00
|
|
|
else if (strstr(fullpath, ".tga"))
|
|
|
|
nbio->image_type = IMAGE_TYPE_TGA;
|
2016-05-11 02:10:42 +00:00
|
|
|
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
nbio_begin_read(handle);
|
|
|
|
|
|
|
|
t = (retro_task_t*)calloc(1, sizeof(*t));
|
|
|
|
|
|
|
|
if (!t)
|
2016-05-10 06:28:48 +00:00
|
|
|
goto error;
|
2016-05-10 05:54:47 +00:00
|
|
|
|
|
|
|
t->state = nbio;
|
|
|
|
t->handler = rarch_task_file_load_handler;
|
|
|
|
t->callback = cb;
|
|
|
|
t->user_data = user_data;
|
|
|
|
|
|
|
|
task_queue_ctl(TASK_QUEUE_CTL_PUSH, t);
|
2016-05-10 06:28:48 +00:00
|
|
|
|
2016-05-10 05:54:47 +00:00
|
|
|
return true;
|
2016-05-10 06:28:48 +00:00
|
|
|
|
|
|
|
error:
|
2016-05-18 21:57:35 +00:00
|
|
|
rarch_task_image_load_free(t);
|
2016-05-10 06:28:48 +00:00
|
|
|
if (t)
|
|
|
|
free(t);
|
|
|
|
if (nbio)
|
|
|
|
free(nbio);
|
2016-05-14 04:00:53 +00:00
|
|
|
|
2016-05-10 06:28:48 +00:00
|
|
|
RARCH_ERR("[image load] Failed to open '%s': %s.\n",
|
|
|
|
fullpath, strerror(errno));
|
|
|
|
return false;
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rarch_task_image_load_free(retro_task_t *task)
|
|
|
|
{
|
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)task->state;
|
2016-05-10 06:09:12 +00:00
|
|
|
rarch_task_image_load_free_internal(nbio);
|
2016-05-10 05:54:47 +00:00
|
|
|
}
|
2016-05-10 06:09:12 +00:00
|
|
|
|