RetroArch/menu/menu_animation.h

126 lines
3.2 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2015-01-07 17:46:50 +01:00
* Copyright (C) 2014-2015 - Jean-André Santoni
* Copyright (C) 2011-2015 - 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/>.
*/
2014-10-10 19:54:15 +02:00
#ifndef _MENU_ANIMATION_H
#define _MENU_ANIMATION_H
#include <stdint.h>
#include <stdlib.h>
2015-02-01 23:05:16 +01:00
#include <boolean.h>
#include "../libretro.h"
#ifndef IDEAL_DT
#define IDEAL_DT (1.0 / 60.0 * 1000000.0)
#endif
2015-09-25 23:33:11 +02:00
#ifdef __cplusplus
extern "C" {
#endif
typedef float (*easingFunc)(float, float, float, float);
2015-02-02 00:46:00 +01:00
typedef void (*tween_cb) (void);
2015-09-25 23:33:11 +02:00
enum menu_animation_ctl_state
{
2015-09-25 23:37:02 +02:00
MENU_ANIMATION_CTL_IS_ACTIVE = 0,
MENU_ANIMATION_CTL_CLEAR_ACTIVE,
2015-09-25 23:42:00 +02:00
MENU_ANIMATION_CTL_SET_ACTIVE,
2015-09-25 23:37:02 +02:00
MENU_ANIMATION_CTL_DELTA_TIME
2015-09-25 23:33:11 +02:00
};
2015-06-13 23:23:29 +02:00
enum menu_animation_easing_type
2015-02-11 01:15:16 +01:00
{
/* Linear */
EASING_LINEAR = 0,
/* Quad */
EASING_IN_QUAD,
EASING_OUT_QUAD,
EASING_IN_OUT_QUAD,
EASING_OUT_IN_QUAD,
/* Cubic */
EASING_IN_CUBIC,
EASING_OUT_CUBIC,
EASING_IN_OUT_CUBIC,
EASING_OUT_IN_CUBIC,
/* Quart */
EASING_IN_QUART,
EASING_OUT_QUART,
EASING_IN_OUT_QUART,
EASING_OUT_IN_QUART,
/* Quint */
EASING_IN_QUINT,
EASING_OUT_QUINT,
EASING_IN_OUT_QUINT,
EASING_OUT_IN_QUINT,
/* Sine */
EASING_IN_SINE,
EASING_OUT_SINE,
EASING_IN_OUT_SINE,
EASING_OUT_IN_SINE,
/* Expo */
EASING_IN_EXPO,
EASING_OUT_EXPO,
EASING_IN_OUT_EXPO,
EASING_OUT_IN_EXPO,
/* Circ */
EASING_IN_CIRC,
EASING_OUT_CIRC,
EASING_IN_OUT_CIRC,
EASING_OUT_IN_CIRC,
/* Bounce */
EASING_IN_BOUNCE,
EASING_OUT_BOUNCE,
EASING_IN_OUT_BOUNCE,
2015-06-26 15:53:18 +02:00
EASING_OUT_IN_BOUNCE
2015-02-11 01:15:16 +01:00
};
2015-09-25 22:24:07 +02:00
void menu_animation_free(void);
2015-02-11 00:40:18 +01:00
2015-09-25 22:24:07 +02:00
void menu_animation_kill_by_subject(size_t count, const void *subjects);
2015-09-25 22:24:07 +02:00
void menu_animation_kill_by_tag(int tag);
/* Use -1 for untagged */
2015-09-25 22:24:07 +02:00
bool menu_animation_push(float duration, float target_value, float* subject,
enum menu_animation_easing_type easing_enum, int tag, tween_cb cb);
2014-10-10 00:01:45 +02:00
2015-09-25 22:24:07 +02:00
bool menu_animation_update(float dt);
/**
* menu_animation_ticker_str:
2015-06-25 18:00:54 +02:00
* @s : buffer to write new message line to.
* @len : length of buffer @input.
* @idx : Index. Will be used for ticker logic.
* @str : Input string.
* @selected : Is the item currently selected in the menu?
*
* Take the contents of @str and apply a ticker effect to it,
2015-06-25 18:00:54 +02:00
* and write the results in @s.
**/
void menu_animation_ticker_str(char *s, size_t len, uint64_t tick,
const char *str, bool selected);
2015-08-21 04:03:59 +02:00
void menu_animation_update_time(void);
2015-09-25 23:33:11 +02:00
bool menu_animation_ctl(enum menu_animation_ctl_state state, void *data);
2015-09-06 02:41:36 +02:00
#ifdef __cplusplus
}
#endif
#endif