2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2016 sfan5 <sfan5@live.de>
|
2016-12-23 13:48:32 +01:00
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2016-12-23 13:48:32 +01:00
|
|
|
|
|
|
|
#include <iostream>
|
2017-04-07 23:22:00 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2016-12-23 13:48:32 +01:00
|
|
|
|
2024-01-17 20:05:46 +01:00
|
|
|
enum TileAnimationType : u8
|
2017-04-07 23:22:00 +02:00
|
|
|
{
|
2016-12-23 13:48:32 +01:00
|
|
|
TAT_NONE = 0,
|
|
|
|
TAT_VERTICAL_FRAMES = 1,
|
2016-12-23 14:43:56 +01:00
|
|
|
TAT_SHEET_2D = 2,
|
2016-12-23 13:48:32 +01:00
|
|
|
};
|
|
|
|
|
2017-04-07 23:22:00 +02:00
|
|
|
struct TileAnimationParams
|
|
|
|
{
|
2024-04-03 13:56:49 +02:00
|
|
|
enum TileAnimationType type = TileAnimationType::TAT_NONE;
|
2017-04-07 23:22:00 +02:00
|
|
|
union
|
|
|
|
{
|
2016-12-23 13:48:32 +01:00
|
|
|
// struct {
|
|
|
|
// } none;
|
2017-04-07 23:22:00 +02:00
|
|
|
struct
|
|
|
|
{
|
2016-12-23 13:48:32 +01:00
|
|
|
int aspect_w; // width for aspect ratio
|
|
|
|
int aspect_h; // height for aspect ratio
|
|
|
|
float length; // seconds
|
|
|
|
} vertical_frames;
|
2017-04-07 23:22:00 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
int frames_w; // number of frames left-to-right
|
|
|
|
int frames_h; // number of frames top-to-bottom
|
2016-12-23 14:43:56 +01:00
|
|
|
float frame_length; // seconds
|
|
|
|
} sheet_2d;
|
2016-12-23 13:48:32 +01:00
|
|
|
};
|
|
|
|
|
2022-09-04 16:22:12 +02:00
|
|
|
void serialize(std::ostream &os, u16 protocol_ver) const;
|
|
|
|
void deSerialize(std::istream &is, u16 protocol_ver);
|
2017-04-07 23:22:00 +02:00
|
|
|
void determineParams(v2u32 texture_size, int *frame_count, int *frame_length_ms,
|
|
|
|
v2u32 *frame_size) const;
|
2016-12-23 13:48:32 +01:00
|
|
|
void getTextureModifer(std::ostream &os, v2u32 texture_size, int frame) const;
|
2017-01-14 16:48:49 +01:00
|
|
|
v2f getTextureCoords(v2u32 texture_size, int frame) const;
|
2016-12-23 13:48:32 +01:00
|
|
|
};
|