2016-05-10 07:54:47 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2016-05-10 07:54:47 +02: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 <stdint.h>
|
2017-05-09 20:08:40 +02:00
|
|
|
#include <stdlib.h>
|
2016-05-10 07:54:47 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <file/nbio.h>
|
|
|
|
#include <formats/image.h>
|
|
|
|
#include <compat/strl.h>
|
2017-09-29 22:16:17 +02:00
|
|
|
#include <string/stdstring.h>
|
2016-05-10 07:54:47 +02:00
|
|
|
#include <retro_miscellaneous.h>
|
2019-05-28 12:55:31 +01:00
|
|
|
#include <features/features_cpu.h>
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2019-01-20 02:17:43 +01:00
|
|
|
#include "task_file_transfer.h"
|
2016-07-23 11:28:24 +02:00
|
|
|
#include "tasks_internal.h"
|
|
|
|
|
2019-05-28 12:55:31 +01:00
|
|
|
#include "../dynamic.h"
|
|
|
|
|
2016-05-10 07:55:31 +02:00
|
|
|
enum image_status_enum
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2019-05-28 12:55:31 +01:00
|
|
|
IMAGE_STATUS_WAIT = 0,
|
|
|
|
IMAGE_STATUS_TRANSFER,
|
2016-05-10 07:55:31 +02:00
|
|
|
IMAGE_STATUS_TRANSFER_PARSE,
|
|
|
|
IMAGE_STATUS_PROCESS_TRANSFER,
|
2017-05-14 17:32:07 +02:00
|
|
|
IMAGE_STATUS_PROCESS_TRANSFER_PARSE
|
2016-05-10 07:54:47 +02:00
|
|
|
};
|
|
|
|
|
2016-05-13 15:00:44 +02:00
|
|
|
struct nbio_image_handle
|
|
|
|
{
|
2017-05-09 20:01:42 +02:00
|
|
|
enum image_type_enum type;
|
2017-09-29 22:36:48 +02:00
|
|
|
enum image_status_enum status;
|
2016-05-13 15:00:44 +02:00
|
|
|
bool is_blocking;
|
|
|
|
bool is_blocking_on_processing;
|
|
|
|
bool is_finished;
|
2017-09-29 22:36:48 +02:00
|
|
|
int processing_final_state;
|
2019-05-28 12:55:31 +01:00
|
|
|
unsigned frame_duration;
|
2017-09-29 22:36:48 +02:00
|
|
|
size_t size;
|
|
|
|
void *handle;
|
|
|
|
transfer_cb_t cb;
|
|
|
|
struct texture_image ti;
|
2016-05-13 15:00:44 +02:00
|
|
|
};
|
|
|
|
|
2019-05-22 04:54:37 +02:00
|
|
|
static int cb_image_upload_generic(void *data, size_t len)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
|
|
|
unsigned r_shift, g_shift, b_shift, a_shift;
|
2016-09-23 02:49:25 +02:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
|
|
|
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-05-26 17:47:21 +02:00
|
|
|
if (!image)
|
2016-05-10 07:54:47 +02:00
|
|
|
return -1;
|
|
|
|
|
2017-01-05 04:52:04 +01:00
|
|
|
switch (image->processing_final_state)
|
|
|
|
{
|
|
|
|
case IMAGE_PROCESS_ERROR:
|
|
|
|
case IMAGE_PROCESS_ERROR_END:
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-12-29 22:53:10 +01:00
|
|
|
image_texture_set_color_shifts(&r_shift, &g_shift, &b_shift,
|
2016-12-29 23:22:40 +01:00
|
|
|
&a_shift, &image->ti);
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-05-18 12:57:44 +02:00
|
|
|
image_texture_color_convert(r_shift, g_shift, b_shift,
|
2016-05-13 15:18:40 +02:00
|
|
|
a_shift, &image->ti);
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-05-13 15:18:40 +02:00
|
|
|
image->is_blocking_on_processing = false;
|
|
|
|
image->is_blocking = true;
|
|
|
|
image->is_finished = true;
|
|
|
|
nbio->is_finished = true;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-13 10:13:36 +02:00
|
|
|
static int task_image_process(
|
2017-05-09 20:01:42 +02:00
|
|
|
struct nbio_image_handle *image,
|
2016-05-12 13:13:14 +02:00
|
|
|
unsigned *width,
|
|
|
|
unsigned *height)
|
|
|
|
{
|
2019-05-27 13:04:54 +01:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (!image_transfer_is_valid(image->handle, image->type))
|
|
|
|
return IMAGE_PROCESS_ERROR;
|
|
|
|
|
|
|
|
retval = image_transfer_process(
|
2016-05-20 21:03:42 +02:00
|
|
|
image->handle,
|
2017-05-09 20:01:42 +02:00
|
|
|
image->type,
|
2016-05-13 15:18:40 +02:00
|
|
|
&image->ti.pixels, image->size, width, height);
|
2016-05-12 13:13:14 +02:00
|
|
|
|
|
|
|
if (retval == IMAGE_PROCESS_ERROR)
|
|
|
|
return IMAGE_PROCESS_ERROR;
|
|
|
|
|
2016-05-13 15:18:40 +02:00
|
|
|
image->ti.width = *width;
|
|
|
|
image->ti.height = *height;
|
2016-05-10 08:23:49 +02:00
|
|
|
|
2016-05-11 20:38:09 +02:00
|
|
|
return retval;
|
2016-05-10 08:23:49 +02:00
|
|
|
}
|
|
|
|
|
2019-05-22 04:54:37 +02:00
|
|
|
static int cb_image_thumbnail(void *data, size_t len)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2017-05-14 08:09:21 +02:00
|
|
|
unsigned width = 0;
|
|
|
|
unsigned height = 0;
|
2017-12-11 23:55:31 -08:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
2017-05-14 08:09:21 +02:00
|
|
|
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
|
2018-01-23 04:57:12 +01:00
|
|
|
int retval = image ? task_image_process(image, &width, &height) : IMAGE_PROCESS_ERROR;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-14 07:58:43 +02:00
|
|
|
if ((retval == IMAGE_PROCESS_ERROR) ||
|
|
|
|
(retval == IMAGE_PROCESS_ERROR_END)
|
|
|
|
)
|
2016-05-10 07:54:47 +02:00
|
|
|
return -1;
|
|
|
|
|
2017-05-14 08:09:21 +02:00
|
|
|
image->is_blocking_on_processing = (retval != IMAGE_PROCESS_END);
|
|
|
|
image->is_finished = (retval == IMAGE_PROCESS_END);
|
2019-05-22 04:54:37 +02:00
|
|
|
image->cb = &cb_image_upload_generic;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-09 20:01:42 +02:00
|
|
|
static int task_image_iterate_process_transfer(struct nbio_image_handle *image)
|
2016-05-11 21:22:45 +02:00
|
|
|
{
|
2017-01-05 07:48:11 +01:00
|
|
|
int retval = 0;
|
|
|
|
unsigned width = 0;
|
|
|
|
unsigned height = 0;
|
2019-05-28 12:55:31 +01:00
|
|
|
retro_time_t start_time = cpu_features_get_time_usec();
|
2016-05-11 21:22:45 +02:00
|
|
|
|
2019-05-28 12:55:31 +01:00
|
|
|
do
|
2016-05-11 21:22:45 +02:00
|
|
|
{
|
2019-05-27 13:04:54 +01:00
|
|
|
retval = task_image_process(image, &width, &height);
|
|
|
|
|
|
|
|
if (retval != IMAGE_PROCESS_NEXT)
|
2016-05-11 21:22:45 +02:00
|
|
|
break;
|
|
|
|
}
|
2019-05-28 12:55:31 +01:00
|
|
|
while (cpu_features_get_time_usec() - start_time < image->frame_duration);
|
2016-05-11 21:22:45 +02:00
|
|
|
|
|
|
|
if (retval == IMAGE_PROCESS_NEXT)
|
|
|
|
return 0;
|
|
|
|
|
2016-05-13 15:18:40 +02:00
|
|
|
image->processing_final_state = retval;
|
2016-05-11 21:22:45 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-05-14 07:58:43 +02:00
|
|
|
static void task_image_cleanup(nbio_handle_t *nbio)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2017-05-14 07:58:43 +02:00
|
|
|
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-14 07:58:43 +02:00
|
|
|
if (image)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2017-05-14 07:58:43 +02:00
|
|
|
image_transfer_free(image->handle, image->type);
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-14 07:58:43 +02:00
|
|
|
image->handle = NULL;
|
|
|
|
image->cb = NULL;
|
|
|
|
}
|
2017-09-30 06:23:23 +02:00
|
|
|
if (!string_is_empty(nbio->path))
|
2017-09-29 22:16:17 +02:00
|
|
|
free(nbio->path);
|
2017-05-14 07:58:43 +02:00
|
|
|
if (nbio->data)
|
|
|
|
free(nbio->data);
|
|
|
|
nbio_free(nbio->handle);
|
2017-09-29 22:16:17 +02:00
|
|
|
nbio->path = NULL;
|
2017-05-14 07:58:43 +02:00
|
|
|
nbio->data = NULL;
|
|
|
|
nbio->handle = NULL;
|
2016-05-10 08:09:12 +02:00
|
|
|
}
|
|
|
|
|
2017-05-13 18:08:37 +02:00
|
|
|
static void task_image_load_free(retro_task_t *task)
|
|
|
|
{
|
|
|
|
nbio_handle_t *nbio = task ? (nbio_handle_t*)task->state : NULL;
|
|
|
|
|
|
|
|
if (nbio)
|
|
|
|
{
|
2017-05-14 07:58:43 +02:00
|
|
|
task_image_cleanup(nbio);
|
2017-05-13 18:08:37 +02:00
|
|
|
free(nbio);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 04:54:37 +02:00
|
|
|
static int cb_nbio_image_thumbnail(void *data, size_t len)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2017-05-14 08:06:40 +02:00
|
|
|
void *ptr = NULL;
|
2017-12-11 23:55:31 -08:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)data;
|
2019-05-28 12:55:31 +01:00
|
|
|
struct nbio_image_handle *image = nbio ? (struct nbio_image_handle*)nbio->data : NULL;
|
|
|
|
void *handle = image ? image_transfer_new(image->type) : NULL;
|
|
|
|
float refresh_rate;
|
2016-05-13 04:28:16 +02:00
|
|
|
|
2016-05-18 17:27:05 +02:00
|
|
|
if (!handle)
|
2017-05-14 07:58:43 +02:00
|
|
|
return -1;
|
|
|
|
|
2019-05-28 12:55:31 +01:00
|
|
|
image->status = IMAGE_STATUS_TRANSFER;
|
2017-05-14 08:09:21 +02:00
|
|
|
image->handle = handle;
|
|
|
|
image->size = len;
|
2019-05-22 04:54:37 +02:00
|
|
|
image->cb = &cb_image_thumbnail;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-14 08:09:21 +02:00
|
|
|
ptr = nbio_get_ptr(nbio->handle, &len);
|
2017-05-14 08:06:40 +02:00
|
|
|
|
2019-05-27 13:04:54 +01:00
|
|
|
image_transfer_set_buffer_ptr(image->handle, image->type, ptr, len);
|
2017-05-14 08:06:40 +02:00
|
|
|
|
2019-05-28 12:55:31 +01:00
|
|
|
/* Set task iteration duration */
|
|
|
|
rarch_environment_cb(RETRO_ENVIRONMENT_GET_TARGET_REFRESH_RATE, &refresh_rate);
|
|
|
|
if (refresh_rate == 0.0f)
|
|
|
|
refresh_rate = 60.0f;
|
|
|
|
image->frame_duration = (unsigned)((1.0 / refresh_rate) * 1000000.0f);
|
2017-05-14 08:06:40 +02:00
|
|
|
|
|
|
|
if (!image_transfer_start(image->handle, image->type))
|
|
|
|
{
|
|
|
|
task_image_cleanup(nbio);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-05-14 08:09:21 +02:00
|
|
|
image->is_blocking = false;
|
|
|
|
image->is_finished = false;
|
|
|
|
nbio->is_finished = true;
|
2017-05-14 08:06:40 +02:00
|
|
|
|
|
|
|
return 0;
|
2016-05-10 07:54:47 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:14:47 +02:00
|
|
|
bool task_image_load_handler(retro_task_t *task)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2016-12-29 22:53:10 +01:00
|
|
|
nbio_handle_t *nbio = (nbio_handle_t*)task->state;
|
|
|
|
struct nbio_image_handle *image = (struct nbio_image_handle*)nbio->data;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-12-28 00:40:46 +01:00
|
|
|
if (image)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2016-12-28 00:40:46 +01:00
|
|
|
switch (image->status)
|
|
|
|
{
|
2019-05-28 12:55:31 +01:00
|
|
|
case IMAGE_STATUS_WAIT:
|
|
|
|
return true;
|
2016-12-28 00:40:46 +01:00
|
|
|
case IMAGE_STATUS_PROCESS_TRANSFER:
|
2019-05-28 12:55:31 +01:00
|
|
|
if (task_image_iterate_process_transfer(image) == -1)
|
2016-12-28 00:40:46 +01:00
|
|
|
image->status = IMAGE_STATUS_PROCESS_TRANSFER_PARSE;
|
2016-05-10 07:54:47 +02:00
|
|
|
break;
|
2016-12-28 00:40:46 +01:00
|
|
|
case IMAGE_STATUS_TRANSFER_PARSE:
|
2017-05-09 20:01:42 +02:00
|
|
|
if (image->handle && image->cb)
|
|
|
|
{
|
|
|
|
size_t len = 0;
|
2019-05-27 13:04:54 +01:00
|
|
|
if (image->cb(nbio, len) == -1)
|
|
|
|
return false;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
2016-12-28 00:40:46 +01:00
|
|
|
if (image->is_blocking_on_processing)
|
|
|
|
image->status = IMAGE_STATUS_PROCESS_TRANSFER;
|
|
|
|
break;
|
|
|
|
case IMAGE_STATUS_TRANSFER:
|
2017-05-14 07:58:43 +02:00
|
|
|
if (!image->is_blocking && !image->is_finished)
|
|
|
|
{
|
2019-05-28 12:55:31 +01:00
|
|
|
retro_time_t start_time = cpu_features_get_time_usec();
|
|
|
|
do
|
2017-05-14 07:58:43 +02:00
|
|
|
{
|
|
|
|
if (!image_transfer_iterate(image->handle, image->type))
|
|
|
|
{
|
|
|
|
image->status = IMAGE_STATUS_TRANSFER_PARSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-05-28 12:55:31 +01:00
|
|
|
while (cpu_features_get_time_usec() - start_time < image->frame_duration);
|
2017-05-14 07:58:43 +02:00
|
|
|
}
|
2016-12-28 00:40:46 +01:00
|
|
|
break;
|
|
|
|
case IMAGE_STATUS_PROCESS_TRANSFER_PARSE:
|
2017-05-09 20:01:42 +02:00
|
|
|
if (image->handle && image->cb)
|
|
|
|
{
|
|
|
|
size_t len = 0;
|
2019-05-27 13:04:54 +01:00
|
|
|
if (image->cb(nbio, len) == -1)
|
|
|
|
return false;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
2016-12-28 00:40:46 +01:00
|
|
|
if (!image->is_finished)
|
|
|
|
break;
|
|
|
|
}
|
2016-05-10 07:54:47 +02:00
|
|
|
}
|
|
|
|
|
2017-02-21 20:28:49 +01:00
|
|
|
if ( nbio->is_finished
|
2019-05-27 13:04:54 +01:00
|
|
|
&& (image && image->is_finished)
|
2017-02-21 20:29:29 +01:00
|
|
|
&& (!task_get_cancelled(task)))
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2017-05-18 01:31:14 +02:00
|
|
|
struct texture_image *img = (struct texture_image*)malloc(sizeof(struct texture_image));
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-18 01:31:14 +02:00
|
|
|
if (img)
|
|
|
|
{
|
|
|
|
img->width = image->ti.width;
|
|
|
|
img->height = image->ti.height;
|
|
|
|
img->pixels = image->ti.pixels;
|
|
|
|
img->supports_rgba = image->ti.supports_rgba;
|
|
|
|
}
|
2016-12-29 00:50:18 -05:00
|
|
|
|
2017-05-18 01:31:14 +02:00
|
|
|
task_set_data(task, img);
|
2016-05-10 07:54:47 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-05-22 06:17:08 +02:00
|
|
|
bool task_push_image_load(const char *fullpath,
|
|
|
|
bool supports_rgba,
|
|
|
|
retro_task_callback_t cb, void *user_data)
|
2016-05-10 07:54:47 +02:00
|
|
|
{
|
2016-12-29 22:53:10 +01:00
|
|
|
nbio_handle_t *nbio = NULL;
|
2016-09-23 02:50:29 +02:00
|
|
|
struct nbio_image_handle *image = NULL;
|
2018-11-22 15:45:52 +01:00
|
|
|
retro_task_t *t = task_init();
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2016-12-29 22:53:10 +01:00
|
|
|
if (!t)
|
2019-05-22 04:54:37 +02:00
|
|
|
return false;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio = (nbio_handle_t*)malloc(sizeof(*nbio));
|
2016-12-30 05:33:04 +01:00
|
|
|
|
2016-05-10 07:54:47 +02:00
|
|
|
if (!nbio)
|
2019-05-22 04:54:37 +02:00
|
|
|
{
|
|
|
|
free(t);
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->type = NBIO_TYPE_NONE;
|
|
|
|
nbio->is_finished = false;
|
|
|
|
nbio->status = NBIO_STATUS_INIT;
|
|
|
|
nbio->pos_increment = 0;
|
|
|
|
nbio->status_flags = 0;
|
|
|
|
nbio->data = NULL;
|
|
|
|
nbio->handle = NULL;
|
|
|
|
nbio->msg_queue = NULL;
|
2019-05-22 04:54:37 +02:00
|
|
|
nbio->cb = &cb_nbio_image_thumbnail;
|
2016-05-23 22:41:24 +02:00
|
|
|
|
2019-05-22 06:17:08 +02:00
|
|
|
if (supports_rgba)
|
2016-12-29 23:14:48 +01:00
|
|
|
BIT32_SET(nbio->status_flags, NBIO_FLAG_IMAGE_SUPPORTS_RGBA);
|
|
|
|
|
2017-12-11 23:55:31 -08:00
|
|
|
image = (struct nbio_image_handle*)malloc(sizeof(*image));
|
2016-05-14 00:48:40 +02:00
|
|
|
if (!image)
|
2019-05-22 04:54:37 +02:00
|
|
|
{
|
|
|
|
free(nbio);
|
|
|
|
free(t);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nbio->path = strdup(fullpath);
|
2016-05-14 00:48:40 +02:00
|
|
|
|
2017-09-29 22:36:48 +02:00
|
|
|
image->type = IMAGE_TYPE_NONE;
|
2019-05-28 12:55:31 +01:00
|
|
|
image->status = IMAGE_STATUS_WAIT;
|
2017-09-29 22:36:48 +02:00
|
|
|
image->is_blocking = false;
|
|
|
|
image->is_blocking_on_processing = false;
|
2017-10-03 19:54:32 -03:00
|
|
|
image->is_finished = false;
|
2017-09-29 22:36:48 +02:00
|
|
|
image->processing_final_state = 0;
|
2019-05-28 12:55:31 +01:00
|
|
|
image->frame_duration = 0;
|
2017-09-29 22:36:48 +02:00
|
|
|
image->size = 0;
|
|
|
|
image->handle = NULL;
|
|
|
|
|
|
|
|
image->ti.width = 0;
|
|
|
|
image->ti.height = 0;
|
|
|
|
image->ti.pixels = NULL;
|
2019-05-22 06:17:08 +02:00
|
|
|
/* TODO/FIXME - shouldn't we set this ? */
|
2017-09-29 22:36:48 +02:00
|
|
|
image->ti.supports_rgba = false;
|
2017-05-09 20:01:42 +02:00
|
|
|
|
2019-05-22 04:54:37 +02:00
|
|
|
if (strstr(fullpath, ".png"))
|
2017-05-09 20:01:42 +02:00
|
|
|
{
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->type = NBIO_TYPE_PNG;
|
|
|
|
image->type = IMAGE_TYPE_PNG;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
2019-05-22 04:54:37 +02:00
|
|
|
else if (strstr(fullpath, ".jpeg")
|
|
|
|
|| strstr(fullpath, ".jpg"))
|
2017-05-09 20:01:42 +02:00
|
|
|
{
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->type = NBIO_TYPE_JPEG;
|
|
|
|
image->type = IMAGE_TYPE_JPEG;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
2019-05-22 04:54:37 +02:00
|
|
|
else if (strstr(fullpath, ".bmp"))
|
2017-05-09 20:01:42 +02:00
|
|
|
{
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->type = NBIO_TYPE_BMP;
|
|
|
|
image->type = IMAGE_TYPE_BMP;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
2019-05-22 04:54:37 +02:00
|
|
|
else if (strstr(fullpath, ".tga"))
|
2017-05-09 20:01:42 +02:00
|
|
|
{
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->type = NBIO_TYPE_TGA;
|
|
|
|
image->type = IMAGE_TYPE_TGA;
|
2017-05-09 20:01:42 +02:00
|
|
|
}
|
|
|
|
|
2017-09-29 22:36:48 +02:00
|
|
|
nbio->data = (struct nbio_image_handle*)image;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-09 07:13:47 +02:00
|
|
|
t->state = nbio;
|
|
|
|
t->handler = task_file_load_handler;
|
|
|
|
t->cleanup = task_image_load_free;
|
|
|
|
t->callback = cb;
|
|
|
|
t->user_data = user_data;
|
2016-05-10 07:54:47 +02:00
|
|
|
|
2017-05-14 20:43:39 +02:00
|
|
|
task_queue_push(t);
|
2016-05-10 08:28:48 +02:00
|
|
|
|
2016-05-10 07:54:47 +02:00
|
|
|
return true;
|
|
|
|
}
|