aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llprimitive/lltextureanim.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llprimitive/lltextureanim.h')
-rw-r--r--linden/indra/llprimitive/lltextureanim.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/linden/indra/llprimitive/lltextureanim.h b/linden/indra/llprimitive/lltextureanim.h
new file mode 100644
index 0000000..b47d492
--- /dev/null
+++ b/linden/indra/llprimitive/lltextureanim.h
@@ -0,0 +1,73 @@
1/**
2 * @file lltextureanim.h
3 * @brief LLTextureAnim base class
4 *
5 * Copyright (c) 2001-2007, Linden Research, Inc.
6 *
7 * The source code in this file ("Source Code") is provided by Linden Lab
8 * to you under the terms of the GNU General Public License, version 2.0
9 * ("GPL"), unless you have obtained a separate licensing agreement
10 * ("Other License"), formally executed by you and Linden Lab. Terms of
11 * the GPL can be found in doc/GPL-license.txt in this distribution, or
12 * online at http://secondlife.com/developers/opensource/gplv2
13 *
14 * There are special exceptions to the terms and conditions of the GPL as
15 * it is applied to this Source Code. View the full text of the exception
16 * in the file doc/FLOSS-exception.txt in this software distribution, or
17 * online at http://secondlife.com/developers/opensource/flossexception
18 *
19 * By copying, modifying or distributing this software, you acknowledge
20 * that you have read and understood your obligations described above,
21 * and agree to abide by those obligations.
22 *
23 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
24 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
25 * COMPLETENESS OR PERFORMANCE.
26 */
27
28#ifndef LL_LLTEXTUREANIM_H
29#define LL_LLTEXTUREANIM_H
30
31#include "stdtypes.h"
32#include "llsd.h"
33
34class LLMessageSystem;
35class LLDataPacker;
36
37class LLTextureAnim
38{
39public:
40 LLTextureAnim();
41 virtual ~LLTextureAnim();
42
43 virtual void reset();
44 void packTAMessage(LLMessageSystem *mesgsys) const;
45 void packTAMessage(LLDataPacker &dp) const;
46 void unpackTAMessage(LLMessageSystem *mesgsys, const S32 block_num);
47 void unpackTAMessage(LLDataPacker &dp);
48 BOOL equals(const LLTextureAnim &other) const;
49 LLSD asLLSD() const;
50 operator LLSD() const { return asLLSD(); }
51 bool fromLLSD(LLSD& sd);
52
53 enum
54 {
55 ON = 0x01,
56 LOOP = 0x02,
57 REVERSE = 0x04,
58 PING_PONG = 0x08,
59 SMOOTH = 0x10,
60 ROTATE = 0x20,
61 SCALE = 0x40,
62 };
63
64public:
65 U8 mMode;
66 S8 mFace;
67 U8 mSizeX;
68 U8 mSizeY;
69 F32 mStart;
70 F32 mLength;
71 F32 mRate; // Rate in frames per second.
72};
73#endif