From 92f17580846c88108aab023092c23e6bcdcf2f75 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Fri, 14 Aug 2015 23:45:02 +0800 Subject: SMELT is finally finished! Add the SMELT library for future use. Add .gitignore. --- include/smanim.hpp | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 include/smanim.hpp (limited to 'include/smanim.hpp') diff --git a/include/smanim.hpp b/include/smanim.hpp new file mode 100644 index 0000000..b206d5e --- /dev/null +++ b/include/smanim.hpp @@ -0,0 +1,71 @@ +// -*- C++ -*- +/* + * Simple MultimEdia LiTerator(SMELT) + * by Chris Xiong 2015 + * api level 1 + * Animation header + * + * WARNING: This library is in development and interfaces would be very + * unstable. + * + */ +#ifndef SMANIM_H +#define SMANIM_H +#include "smelt.hpp" +#include "smentity.hpp" +#include "smdatapack.hpp" +#include +#include + +class smTexInfo +{ +public: + smTexRect rect; + char *name,*path; + SMTEX tex; +}; +class smAnmInfo +{ +public: + smTexInfo frames[256]; + int framedur[256],mode,fc; + char* name; +}; +class smAnmFile +{ +private: + static SMELT *sm; + smDtpFileR anm; + void parseMeta(char* meta,DWORD size); + std::map tm; + std::map am; + std::map xm; +public: + bool loadAnmFromMemory(char* ptr,DWORD size); + void close(); + smTexInfo* getTextureInfo(const char* name); + smAnmInfo* getAnimationInfo(const char* name); +}; +class smAnimation2D:public smEntity2D +{ +private: + smAnmInfo ai; + smAnimation2D(); + int cf,mf,r; +public: + smAnimation2D(smAnmInfo a); + void updateAnim(int f=1); + void resetAnim(); +}; +class smAnimation3D:public smEntity3D +{ +private: + smAnmInfo ai; + smAnimation3D(); + int cf,mf,r; +public: + smAnimation3D(smAnmInfo a); + void updateAnim(int f=1); + void resetAnim(); +}; +#endif -- cgit v1.2.3