mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-28 09:38:52 +01:00
72 lines
2.1 KiB
C++
72 lines
2.1 KiB
C++
/* This file is part of RetroFE.
|
|
*
|
|
* RetroFE 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 Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RetroFE 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 RetroFE. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "../../SDL.h"
|
|
#include "../Page.h"
|
|
#include "../ViewInfo.h"
|
|
#include "../Animate/Tween.h"
|
|
#include "../Animate/AnimationEvents.h"
|
|
#include "../../Collection/Item.h"
|
|
class Component
|
|
{
|
|
public:
|
|
Component(Page &p);
|
|
Component(const Component ©);
|
|
virtual ~Component();
|
|
virtual void freeGraphicsMemory();
|
|
virtual void allocateGraphicsMemory();
|
|
virtual void launchEnter() {}
|
|
virtual void launchExit() {}
|
|
void triggerEvent(std::string event, int menuIndex = -1);
|
|
void setPlaylist(std::string name );
|
|
void setNewItemSelected();
|
|
bool isIdle();
|
|
bool isMenuScrolling();
|
|
bool newItemSelected;
|
|
|
|
virtual void update(float dt);
|
|
virtual void draw();
|
|
void setTweens(AnimationEvents *set);
|
|
virtual bool isPlaying();
|
|
ViewInfo baseViewInfo;
|
|
std::string collectionName;
|
|
|
|
protected:
|
|
Page &page;
|
|
|
|
std::string playlistName;
|
|
private:
|
|
|
|
bool animate();
|
|
bool tweenSequencingComplete();
|
|
|
|
AnimationEvents *tweens_;
|
|
Animation *currentTweens_;
|
|
SDL_Texture *backgroundTexture_;
|
|
|
|
ViewInfo storeViewInfo_;
|
|
unsigned int currentTweenIndex_;
|
|
bool currentTweenComplete_;
|
|
float elapsedTweenTime_;
|
|
std::string animationRequestedType_;
|
|
std::string animationType_;
|
|
bool animationRequested_;
|
|
int menuIndex_;
|
|
};
|