summaryrefslogtreecommitdiff
path: root/indra/newview/llvoclouds.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llvoclouds.h
Print done when done.
Diffstat (limited to 'indra/newview/llvoclouds.h')
-rw-r--r--indra/newview/llvoclouds.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/indra/newview/llvoclouds.h b/indra/newview/llvoclouds.h
new file mode 100644
index 0000000000..0debe20730
--- /dev/null
+++ b/indra/newview/llvoclouds.h
@@ -0,0 +1,48 @@
+/**
+ * @file llvoclouds.h
+ * @brief Description of LLVOClouds class
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLVOCLOUDS_H
+#define LL_LLVOCLOUDS_H
+
+#include "llviewerobject.h"
+#include "lltable.h"
+#include "v4coloru.h"
+
+class LLViewerImage;
+class LLViewerCloudGroup;
+
+class LLCloudGroup;
+
+
+class LLVOClouds : public LLViewerObject
+{
+public:
+ LLVOClouds(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp );
+ virtual ~LLVOClouds();
+
+ // Initialize data that's only inited once per class.
+ static void initClass();
+
+ /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline);
+ /*virtual*/ BOOL updateGeometry(LLDrawable *drawable);
+
+ /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate.
+
+ /*virtual*/ void updateTextures(LLAgent &agent);
+ /*virtual*/ void setPixelAreaAndAngle(LLAgent &agent); // generate accurate apparent angle and area
+
+ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time);
+
+ void setCloudGroup(LLCloudGroup *cgp) { mCloudGroupp = cgp; }
+protected:
+ LLCloudGroup *mCloudGroupp;
+};
+
+extern LLUUID gCloudTextureID;
+
+#endif // LL_VO_CLOUDS_H