61 lines
2.0 KiB
C++
61 lines
2.0 KiB
C++
/**
|
|
* This file is part of RenderD7
|
|
* Copyright (C) 2021-2024 NPI-D7, tobid7
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <citro2d.h>
|
|
#include <citro3d.h>
|
|
|
|
#include <renderd7/Sheet.hpp>
|
|
#include <renderd7/Sprite.hpp>
|
|
#include <renderd7/smart_ctor.hpp>
|
|
|
|
namespace RenderD7 {
|
|
/// @brief SpriteSheetAnimation Class
|
|
class SpriteSheetAnimation : public RenderD7::Sprite {
|
|
public:
|
|
/// @brief Constructor
|
|
SpriteSheetAnimation();
|
|
/// @brief Deconstructor
|
|
~SpriteSheetAnimation();
|
|
RD7_SMART_CTOR(SpriteSheetAnimation);
|
|
/// @brief Setup an Animation
|
|
/// @param sheet Input Spritesheet
|
|
/// @param imagecount Count of Images
|
|
/// @param startimage Where to Start the Loop
|
|
/// @param frame_begin Current Time (Should be 0)
|
|
/// @param frame_finish Time Length
|
|
void Setup(RenderD7::Sheet::Ref sheet, size_t imagecount, size_t startimage,
|
|
float frame_begin, float frame_finish);
|
|
/// @brief Play the Animation
|
|
/// @param timespeed Speed of the animation
|
|
void Play(float timespeed);
|
|
|
|
private:
|
|
/// @param images Count of Images
|
|
size_t images;
|
|
/// @param imgs Another Count of images ???
|
|
size_t imgs = 0;
|
|
/// @param D_totaltime Current Time
|
|
float D_totaltime;
|
|
/// @param sheet The Sheet of Images
|
|
RenderD7::Sheet::Ref sheet;
|
|
/// @param time Total Time from frame_finish
|
|
float time;
|
|
};
|
|
} // namespace RenderD7
|