2012-05-22 20:39:41 +08:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-11-29 23:47:09 +08:00
|
|
|
#include "config.h"
|
2012-05-22 20:39:41 +08:00
|
|
|
#include "xcursor.h"
|
|
|
|
#include "wayland-cursor.h"
|
|
|
|
#include "wayland-client.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
2013-11-29 23:47:09 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
2012-05-22 20:39:41 +08:00
|
|
|
|
2012-07-10 18:05:02 +08:00
|
|
|
#include "os-compatibility.h"
|
|
|
|
|
2012-10-20 05:08:38 +08:00
|
|
|
#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
struct shm_pool {
|
|
|
|
struct wl_shm_pool *pool;
|
|
|
|
int fd;
|
|
|
|
unsigned int size;
|
|
|
|
unsigned int used;
|
|
|
|
char *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct shm_pool *
|
|
|
|
shm_pool_create(struct wl_shm *shm, int size)
|
|
|
|
{
|
|
|
|
struct shm_pool *pool;
|
|
|
|
|
|
|
|
pool = malloc(sizeof *pool);
|
|
|
|
if (!pool)
|
|
|
|
return NULL;
|
|
|
|
|
2012-07-10 18:05:02 +08:00
|
|
|
pool->fd = os_create_anonymous_file(size);
|
2012-05-22 20:39:41 +08:00
|
|
|
if (pool->fd < 0)
|
2012-07-09 17:35:54 +08:00
|
|
|
goto err_free;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
|
|
|
pool->data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
pool->fd, 0);
|
|
|
|
|
2012-07-09 17:35:54 +08:00
|
|
|
if (pool->data == MAP_FAILED)
|
|
|
|
goto err_close;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
|
|
|
pool->pool = wl_shm_create_pool(shm, pool->fd, size);
|
|
|
|
pool->size = size;
|
|
|
|
pool->used = 0;
|
|
|
|
|
|
|
|
return pool;
|
2012-07-09 17:35:54 +08:00
|
|
|
|
|
|
|
err_close:
|
|
|
|
close(pool->fd);
|
|
|
|
err_free:
|
|
|
|
free(pool);
|
|
|
|
return NULL;
|
2012-05-22 20:39:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
shm_pool_resize(struct shm_pool *pool, int size)
|
|
|
|
{
|
|
|
|
if (ftruncate(pool->fd, size) < 0)
|
|
|
|
return 0;
|
|
|
|
|
2013-11-29 23:47:09 +08:00
|
|
|
#ifdef HAVE_POSIX_FALLOCATE
|
|
|
|
errno = posix_fallocate(pool->fd, 0, size);
|
|
|
|
if (errno != 0)
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
wl_shm_pool_resize(pool->pool, size);
|
|
|
|
|
|
|
|
munmap(pool->data, pool->size);
|
|
|
|
|
|
|
|
pool->data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
pool->fd, 0);
|
2014-03-18 18:29:00 +08:00
|
|
|
if (pool->data == (void *)-1)
|
|
|
|
return 0;
|
2012-05-22 20:39:41 +08:00
|
|
|
pool->size = size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
shm_pool_allocate(struct shm_pool *pool, int size)
|
|
|
|
{
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
if (pool->used + size > pool->size)
|
|
|
|
if (!shm_pool_resize(pool, 2 * pool->size + size))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
offset = pool->used;
|
|
|
|
pool->used += size;
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shm_pool_destroy(struct shm_pool *pool)
|
|
|
|
{
|
|
|
|
munmap(pool->data, pool->size);
|
|
|
|
wl_shm_pool_destroy(pool->pool);
|
2012-07-10 18:05:03 +08:00
|
|
|
close(pool->fd);
|
2012-05-22 20:39:41 +08:00
|
|
|
free(pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wl_cursor_theme {
|
|
|
|
unsigned int cursor_count;
|
|
|
|
struct wl_cursor **cursors;
|
|
|
|
struct wl_shm *shm;
|
|
|
|
struct shm_pool *pool;
|
|
|
|
char *name;
|
|
|
|
int size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cursor_image {
|
|
|
|
struct wl_cursor_image image;
|
|
|
|
struct wl_cursor_theme *theme;
|
|
|
|
struct wl_buffer *buffer;
|
|
|
|
int offset; /* data offset of this image in the shm pool */
|
|
|
|
};
|
|
|
|
|
2012-06-15 22:27:33 +08:00
|
|
|
struct cursor {
|
|
|
|
struct wl_cursor cursor;
|
|
|
|
uint32_t total_delay; /* length of the animation in ms */
|
|
|
|
};
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
/** Get an shm buffer for a cursor image
|
|
|
|
*
|
|
|
|
* \param image The cursor image
|
|
|
|
* \return An shm buffer for the cursor image. The user should not destroy
|
|
|
|
* the returned buffer.
|
|
|
|
*/
|
|
|
|
WL_EXPORT struct wl_buffer *
|
|
|
|
wl_cursor_image_get_buffer(struct wl_cursor_image *_img)
|
|
|
|
{
|
|
|
|
struct cursor_image *image = (struct cursor_image *) _img;
|
|
|
|
struct wl_cursor_theme *theme = image->theme;
|
|
|
|
|
|
|
|
if (!image->buffer) {
|
|
|
|
image->buffer =
|
|
|
|
wl_shm_pool_create_buffer(theme->pool->pool,
|
|
|
|
image->offset,
|
|
|
|
_img->width, _img->height,
|
|
|
|
_img->width * 4,
|
|
|
|
WL_SHM_FORMAT_ARGB8888);
|
|
|
|
};
|
|
|
|
|
|
|
|
return image->buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_cursor_image_destroy(struct wl_cursor_image *_img)
|
|
|
|
{
|
|
|
|
struct cursor_image *image = (struct cursor_image *) _img;
|
|
|
|
|
|
|
|
if (image->buffer)
|
|
|
|
wl_buffer_destroy(image->buffer);
|
|
|
|
|
|
|
|
free(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wl_cursor_destroy(struct wl_cursor *cursor)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < cursor->image_count; i++)
|
|
|
|
wl_cursor_image_destroy(cursor->images[i]);
|
|
|
|
|
|
|
|
free(cursor->name);
|
|
|
|
free(cursor);
|
|
|
|
}
|
|
|
|
|
2012-10-05 05:27:39 +08:00
|
|
|
#include "cursor-data.h"
|
2012-09-07 00:54:01 +08:00
|
|
|
|
|
|
|
static struct wl_cursor *
|
|
|
|
wl_cursor_create_from_data(struct cursor_metadata *metadata,
|
|
|
|
struct wl_cursor_theme *theme)
|
|
|
|
{
|
|
|
|
struct cursor *cursor;
|
|
|
|
struct cursor_image *image;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
cursor = malloc(sizeof *cursor);
|
|
|
|
if (!cursor)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cursor->cursor.image_count = 1;
|
|
|
|
cursor->cursor.images = malloc(sizeof *cursor->cursor.images);
|
2013-11-29 23:47:09 +08:00
|
|
|
if (!cursor->cursor.images)
|
|
|
|
goto err_free_cursor;
|
2012-09-07 00:54:01 +08:00
|
|
|
|
|
|
|
cursor->cursor.name = strdup(metadata->name);
|
|
|
|
cursor->total_delay = 0;
|
|
|
|
|
|
|
|
image = malloc(sizeof *image);
|
2013-11-29 23:47:09 +08:00
|
|
|
if (!image)
|
|
|
|
goto err_free_images;
|
2012-09-07 00:54:01 +08:00
|
|
|
|
|
|
|
cursor->cursor.images[0] = (struct wl_cursor_image *) image;
|
|
|
|
image->theme = theme;
|
|
|
|
image->buffer = NULL;
|
|
|
|
image->image.width = metadata->width;
|
|
|
|
image->image.height = metadata->height;
|
|
|
|
image->image.hotspot_x = metadata->hotspot_x;
|
|
|
|
image->image.hotspot_y = metadata->hotspot_y;
|
|
|
|
image->image.delay = 0;
|
|
|
|
|
|
|
|
size = metadata->width * metadata->height * sizeof(uint32_t);
|
|
|
|
image->offset = shm_pool_allocate(theme->pool, size);
|
2013-11-29 23:47:09 +08:00
|
|
|
|
|
|
|
if (image->offset < 0)
|
|
|
|
goto err_free_image;
|
|
|
|
|
2012-09-07 00:54:01 +08:00
|
|
|
memcpy(theme->pool->data + image->offset,
|
|
|
|
cursor_data + metadata->offset, size);
|
|
|
|
|
|
|
|
return &cursor->cursor;
|
2013-11-29 23:47:09 +08:00
|
|
|
|
|
|
|
err_free_image:
|
|
|
|
free(image);
|
|
|
|
|
|
|
|
err_free_images:
|
|
|
|
free(cursor->cursor.name);
|
|
|
|
free(cursor->cursor.images);
|
|
|
|
|
|
|
|
err_free_cursor:
|
|
|
|
free(cursor);
|
|
|
|
return NULL;
|
2012-09-07 00:54:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_default_theme(struct wl_cursor_theme *theme)
|
|
|
|
{
|
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
free(theme->name);
|
|
|
|
theme->name = strdup("default");
|
|
|
|
|
2013-11-29 23:47:09 +08:00
|
|
|
theme->cursor_count = ARRAY_LENGTH(cursor_metadata);
|
2012-09-07 00:54:01 +08:00
|
|
|
theme->cursors = malloc(theme->cursor_count * sizeof(*theme->cursors));
|
|
|
|
|
2014-01-11 06:33:36 +08:00
|
|
|
if (theme->cursors == NULL) {
|
|
|
|
theme->cursor_count = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-29 23:47:09 +08:00
|
|
|
for (i = 0; i < theme->cursor_count; ++i) {
|
2012-09-07 00:54:01 +08:00
|
|
|
theme->cursors[i] =
|
|
|
|
wl_cursor_create_from_data(&cursor_metadata[i], theme);
|
2013-11-29 23:47:09 +08:00
|
|
|
|
|
|
|
if (theme->cursors[i] == NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
theme->cursor_count = i;
|
2012-09-07 00:54:01 +08:00
|
|
|
}
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
static struct wl_cursor *
|
2012-05-24 21:17:48 +08:00
|
|
|
wl_cursor_create_from_xcursor_images(XcursorImages *images,
|
|
|
|
struct wl_cursor_theme *theme)
|
2012-05-22 20:39:41 +08:00
|
|
|
{
|
2012-06-15 22:27:33 +08:00
|
|
|
struct cursor *cursor;
|
2012-05-22 20:39:41 +08:00
|
|
|
struct cursor_image *image;
|
|
|
|
int i, size;
|
|
|
|
|
|
|
|
cursor = malloc(sizeof *cursor);
|
2012-05-24 21:17:48 +08:00
|
|
|
if (!cursor)
|
2012-05-22 20:39:41 +08:00
|
|
|
return NULL;
|
|
|
|
|
2012-06-15 22:27:33 +08:00
|
|
|
cursor->cursor.images =
|
|
|
|
malloc(images->nimage * sizeof cursor->cursor.images[0]);
|
|
|
|
if (!cursor->cursor.images) {
|
2012-05-22 20:39:41 +08:00
|
|
|
free(cursor);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-06-15 22:27:33 +08:00
|
|
|
cursor->cursor.name = strdup(images->name);
|
|
|
|
cursor->total_delay = 0;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
|
|
|
for (i = 0; i < images->nimage; i++) {
|
|
|
|
image = malloc(sizeof *image);
|
2014-01-11 06:33:36 +08:00
|
|
|
if (image == NULL)
|
|
|
|
break;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
|
|
|
image->theme = theme;
|
|
|
|
image->buffer = NULL;
|
|
|
|
|
|
|
|
image->image.width = images->images[i]->width;
|
|
|
|
image->image.height = images->images[i]->height;
|
|
|
|
image->image.hotspot_x = images->images[i]->xhot;
|
|
|
|
image->image.hotspot_y = images->images[i]->yhot;
|
|
|
|
image->image.delay = images->images[i]->delay;
|
|
|
|
|
|
|
|
size = image->image.width * image->image.height * 4;
|
|
|
|
image->offset = shm_pool_allocate(theme->pool, size);
|
2013-11-29 23:47:09 +08:00
|
|
|
if (image->offset < 0) {
|
|
|
|
free(image);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy pixels to shm pool */
|
2012-05-22 20:39:41 +08:00
|
|
|
memcpy(theme->pool->data + image->offset,
|
|
|
|
images->images[i]->pixels, size);
|
2013-11-29 23:47:09 +08:00
|
|
|
cursor->total_delay += image->image.delay;
|
|
|
|
cursor->cursor.images[i] = (struct wl_cursor_image *) image;
|
|
|
|
}
|
|
|
|
cursor->cursor.image_count = i;
|
|
|
|
|
|
|
|
if (cursor->cursor.image_count == 0) {
|
|
|
|
free(cursor->cursor.name);
|
|
|
|
free(cursor->cursor.images);
|
|
|
|
free(cursor);
|
|
|
|
return NULL;
|
2012-05-22 20:39:41 +08:00
|
|
|
}
|
|
|
|
|
2012-06-15 22:27:33 +08:00
|
|
|
return &cursor->cursor;
|
2012-05-22 20:39:41 +08:00
|
|
|
}
|
|
|
|
|
2012-05-24 21:17:48 +08:00
|
|
|
static void
|
|
|
|
load_callback(XcursorImages *images, void *data)
|
|
|
|
{
|
|
|
|
struct wl_cursor_theme *theme = data;
|
|
|
|
struct wl_cursor *cursor;
|
|
|
|
|
|
|
|
if (wl_cursor_theme_get_cursor(theme, images->name)) {
|
|
|
|
XcursorImagesDestroy(images);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor = wl_cursor_create_from_xcursor_images(images, theme);
|
|
|
|
|
|
|
|
if (cursor) {
|
|
|
|
theme->cursor_count++;
|
|
|
|
theme->cursors =
|
|
|
|
realloc(theme->cursors,
|
|
|
|
theme->cursor_count * sizeof theme->cursors[0]);
|
|
|
|
|
2014-01-11 06:33:36 +08:00
|
|
|
if (theme->cursors == NULL) {
|
|
|
|
theme->cursor_count--;
|
|
|
|
free(cursor);
|
|
|
|
} else {
|
|
|
|
theme->cursors[theme->cursor_count - 1] = cursor;
|
|
|
|
}
|
2012-05-24 21:17:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
XcursorImagesDestroy(images);
|
|
|
|
}
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
/** Load a cursor theme to memory shared with the compositor
|
|
|
|
*
|
|
|
|
* \param name The name of the cursor theme to load. If %NULL, the default
|
|
|
|
* theme will be loaded.
|
|
|
|
* \param size Desired size of the cursor images.
|
|
|
|
* \param shm The compositor's shm interface.
|
|
|
|
*
|
|
|
|
* \return An object representing the theme that should be destroyed with
|
2012-09-07 00:54:01 +08:00
|
|
|
* wl_cursor_theme_destroy() or %NULL on error. If no theme with the given
|
|
|
|
* name exists, a default theme will be loaded.
|
2012-05-22 20:39:41 +08:00
|
|
|
*/
|
|
|
|
WL_EXPORT struct wl_cursor_theme *
|
|
|
|
wl_cursor_theme_load(const char *name, int size, struct wl_shm *shm)
|
|
|
|
{
|
|
|
|
struct wl_cursor_theme *theme;
|
|
|
|
|
|
|
|
theme = malloc(sizeof *theme);
|
|
|
|
if (!theme)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
name = "default";
|
|
|
|
|
|
|
|
theme->name = strdup(name);
|
2014-03-18 18:29:00 +08:00
|
|
|
if (!theme->name)
|
|
|
|
goto out_error_name;
|
2012-05-22 20:39:41 +08:00
|
|
|
theme->size = size;
|
2012-05-24 21:17:48 +08:00
|
|
|
theme->cursor_count = 0;
|
|
|
|
theme->cursors = NULL;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
2014-03-18 18:29:00 +08:00
|
|
|
theme->pool = shm_pool_create(shm, size * size * 4);
|
|
|
|
if (!theme->pool)
|
|
|
|
goto out_error_pool;
|
2012-05-22 20:39:41 +08:00
|
|
|
|
2012-05-24 21:17:48 +08:00
|
|
|
xcursor_load_theme(name, size, load_callback, theme);
|
2012-05-22 20:39:41 +08:00
|
|
|
|
2012-09-07 00:54:01 +08:00
|
|
|
if (theme->cursor_count == 0)
|
|
|
|
load_default_theme(theme);
|
|
|
|
|
2012-05-22 20:39:41 +08:00
|
|
|
return theme;
|
2014-03-18 18:29:00 +08:00
|
|
|
|
|
|
|
out_error_pool:
|
|
|
|
free(theme->name);
|
|
|
|
out_error_name:
|
|
|
|
free(theme);
|
|
|
|
return NULL;
|
2012-05-22 20:39:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Destroys a cursor theme object
|
|
|
|
*
|
|
|
|
* \param theme The cursor theme to be destroyed
|
|
|
|
*/
|
|
|
|
WL_EXPORT void
|
|
|
|
wl_cursor_theme_destroy(struct wl_cursor_theme *theme)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < theme->cursor_count; i++)
|
|
|
|
wl_cursor_destroy(theme->cursors[i]);
|
|
|
|
|
|
|
|
shm_pool_destroy(theme->pool);
|
|
|
|
|
2014-01-11 05:49:44 +08:00
|
|
|
free(theme->name);
|
2012-05-22 20:39:41 +08:00
|
|
|
free(theme->cursors);
|
|
|
|
free(theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the cursor for a given name from a cursor theme
|
|
|
|
*
|
|
|
|
* \param theme The cursor theme
|
|
|
|
* \param name Name of the desired cursor
|
|
|
|
* \return The theme's cursor of the given name or %NULL if there is no
|
|
|
|
* such cursor
|
|
|
|
*/
|
|
|
|
WL_EXPORT struct wl_cursor *
|
2012-05-24 21:17:47 +08:00
|
|
|
wl_cursor_theme_get_cursor(struct wl_cursor_theme *theme,
|
|
|
|
const char *name)
|
2012-05-22 20:39:41 +08:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < theme->cursor_count; i++) {
|
|
|
|
if (strcmp(name, theme->cursors[i]->name) == 0)
|
|
|
|
return theme->cursors[i];
|
|
|
|
}
|
|
|
|
|
2012-05-24 21:17:48 +08:00
|
|
|
return NULL;
|
2012-05-22 20:39:41 +08:00
|
|
|
}
|
2012-06-15 22:27:33 +08:00
|
|
|
|
|
|
|
/** Find the frame for a given elapsed time in a cursor animation
|
2015-03-05 04:30:41 +08:00
|
|
|
* as well as the time left until next cursor change.
|
2012-06-15 22:27:33 +08:00
|
|
|
*
|
|
|
|
* \param cursor The cursor
|
2015-03-05 04:30:41 +08:00
|
|
|
* \param time Elapsed time in ms since the beginning of the animation
|
|
|
|
* \param duration pointer to uint32_t to store time left for this image or
|
|
|
|
* zero if the cursor won't change.
|
2012-06-15 22:27:33 +08:00
|
|
|
*
|
|
|
|
* \return The index of the image that should be displayed for the
|
|
|
|
* given time in the cursor animation.
|
|
|
|
*/
|
|
|
|
WL_EXPORT int
|
2015-03-05 04:30:41 +08:00
|
|
|
wl_cursor_frame_and_duration(struct wl_cursor *_cursor, uint32_t time,
|
|
|
|
uint32_t *duration)
|
2012-06-15 22:27:33 +08:00
|
|
|
{
|
|
|
|
struct cursor *cursor = (struct cursor *) _cursor;
|
|
|
|
uint32_t t;
|
|
|
|
int i;
|
|
|
|
|
2015-03-05 04:30:41 +08:00
|
|
|
if (cursor->cursor.image_count == 1) {
|
|
|
|
if (duration)
|
|
|
|
*duration = 0;
|
2012-06-15 22:27:33 +08:00
|
|
|
return 0;
|
2015-03-05 04:30:41 +08:00
|
|
|
}
|
2012-06-15 22:27:33 +08:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
t = time % cursor->total_delay;
|
|
|
|
|
2015-03-05 04:30:41 +08:00
|
|
|
/* If there is a 0 delay in the image set then this
|
|
|
|
* loop breaks on it and we display that cursor until
|
|
|
|
* time % cursor->total_delay wraps again.
|
|
|
|
* Since a 0 delay is silly, and we've never actually
|
|
|
|
* seen one in a cursor file, we haven't bothered to
|
|
|
|
* "fix" this.
|
|
|
|
*/
|
2012-06-15 22:27:33 +08:00
|
|
|
while (t - cursor->cursor.images[i]->delay < t)
|
|
|
|
t -= cursor->cursor.images[i++]->delay;
|
|
|
|
|
2015-03-05 04:30:41 +08:00
|
|
|
if (!duration)
|
|
|
|
return i;
|
|
|
|
|
|
|
|
/* Make sure we don't accidentally tell the caller this is
|
|
|
|
* a static cursor image.
|
|
|
|
*/
|
|
|
|
if (t >= cursor->cursor.images[i]->delay)
|
|
|
|
*duration = 1;
|
|
|
|
else
|
|
|
|
*duration = cursor->cursor.images[i]->delay - t;
|
|
|
|
|
2012-06-15 22:27:33 +08:00
|
|
|
return i;
|
|
|
|
}
|
2015-03-05 04:30:41 +08:00
|
|
|
|
|
|
|
/** Find the frame for a given elapsed time in a cursor animation
|
|
|
|
*
|
|
|
|
* \param cursor The cursor
|
|
|
|
* \param time Elapsed time in ms since the beginning of the animation
|
|
|
|
*
|
|
|
|
* \return The index of the image that should be displayed for the
|
|
|
|
* given time in the cursor animation.
|
|
|
|
*/
|
|
|
|
WL_EXPORT int
|
|
|
|
wl_cursor_frame(struct wl_cursor *_cursor, uint32_t time)
|
|
|
|
{
|
|
|
|
return wl_cursor_frame_and_duration(_cursor, time, NULL);
|
|
|
|
}
|