DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2006 Torus Knot Software Ltd Also see acknowledgements in Readme.html This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt. You may alternatively use this source under the terms of a specific version of the OGRE Unrestricted License provided you have obtained such a license from Torus Knot Software Ltd. ----------------------------------------------------------------------------- */ #ifndef __Billboard_H__ #define __Billboard_H__ #include "OgrePrerequisites.h" #include "OgreVector3.h" #include "OgreColourValue.h" #include "OgreCommon.h" namespace Ogre { /** A billboard is a primitive which always faces the camera in every frame. @remarks Billboards can be used for special effects or some other trickery which requires the triangles to always facing the camera no matter where it is. Ogre groups billboards into sets for efficiency, so you should never create a billboard on it's own (it's ok to have a set of one if you need it). @par Billboards have their geometry generated every frame depending on where the camera is. It is most beneficial for all billboards in a set to be identically sized since Ogre can take advantage of this and save some calculations - useful when you have sets of hundreds of billboards as is possible with special effects. You can deviate from this if you wish (example: a smoke effect would probably have smoke puffs expanding as they rise, so each billboard will legitimately have it's own size) but be aware the extra overhead this brings and try to avoid it if you can. @par Billboards are just the mechanism for rendering a range of effects such as particles. It is other classes which use billboards to create their individual effects, so the methods here are quite generic. @see BillboardSet */ class _OgreExport Billboard { friend class BillboardSet; friend class BillboardParticleRenderer; protected: bool mOwnDimensions; bool mUseTexcoordRect; uint16 mTexcoordIndex; // index into the BillboardSet array of texture coordinates FloatRect mTexcoordRect; // individual texture coordinates Real mWidth; Real mHeight; public: // Note the intentional public access to main internal variables used at runtime // Forcing access via get/set would be too costly for 000's of billboards Vector3 mPosition; // Normalised direction vector Vector3 mDirection; BillboardSet* mParentSet; ColourValue mColour; Radian mRotation; /** Default constructor. */ Billboard(); /** Default destructor. */ ~Billboard(); /** Normal constructor as called by BillboardSet. */ Billboard(const Vector3& position, BillboardSet* owner, const ColourValue& colour = ColourValue::White); /** Get the rotation of the billboard. @remarks This rotation is relative to the center of the billboard. */ const Radian& getRotation(void) const { return mRotation; } /** Set the rotation of the billboard. @remarks This rotation is relative to the center of the billboard. */ void setRotation(const Radian& rotation); /** Set the position of the billboard. @remarks This position is relative to a point on the quad which is the billboard. Depending on the BillboardSet, this may be the center of the quad, the top-left etc. See BillboardSet::setBillboardOrigin for more info. */ void setPosition(const Vector3& position); /** Set the position of the billboard. @remarks This position is relative to a point on the quad which is the billboard. Depending on the BillboardSet, this may be the center of the quad, the top-left etc. See BillboardSet::setBillboardOrigin for more info. */ void setPosition(Real x, Real y, Real z); /** Get the position of the billboard. @remarks This position is relative to a point on the quad which is the billboard. Depending on the BillboardSet, this may be the center of the quad, the top-left etc. See BillboardSet::setBillboardOrigin for more info. */ const Vector3& getPosition(void) const; /** Sets the width and height for this billboard. @remarks Note that it is most efficient for every billboard in a BillboardSet to have the same dimensions. If you choose to alter the dimensions of an individual billboard the set will be less efficient. Do not call this method unless you really need to have different billboard dimensions within the same set. Otherwise just call the BillboardSet::setDefaultDimensions method instead. */ void setDimensions(Real width, Real height); /** Resets this Billboard to use the parent BillboardSet's dimensions instead of it's own. */ void resetDimensions(void) { mOwnDimensions = false; } /** Sets the colour of this billboard. @remarks Billboards can be tinted based on a base colour. This allows variations in colour irresective of the base colour of the material allowing more varied billboards. The default colour is white. The tinting is effected using vertex colours. */ void setColour(const ColourValue& colour); /** Gets the colour of this billboard. */ const ColourValue& getColour(void) const; /** Returns true if this billboard deviates from the BillboardSet's default dimensions (i.e. if the Billboard::setDimensions method has been called for this instance). @see Billboard::setDimensions */ bool hasOwnDimensions(void) const; /** Retrieves the billboard's personal width, if hasOwnDimensions is true. */ Real getOwnWidth(void) const; /** Retrieves the billboard's personal width, if hasOwnDimensions is true. */ Real getOwnHeight(void) const; /** Internal method for notifying the billboard of it's owner. */ void _notifyOwner(BillboardSet* owner); /** Returns true if this billboard use individual texture coordinate rect (i.e. if the Billboard::setTexcoordRect method has been called for this instance), or returns false if use texture coordinates defined in the parent BillboardSet's texture coordinates array (i.e. if the Billboard::setTexcoordIndex method has been called for this instance). @see Billboard::setTexcoordIndex() Billboard::setTexcoordRect() */ bool isUseTexcoordRect(void) const { return mUseTexcoordRect; } /** setTexcoordIndex() sets which texture coordinate rect this billboard will use when rendering. The parent billboard set may contain more than one, in which case a billboard can be textured with different pieces of a larger texture sheet very efficiently. @see BillboardSet::setTextureCoords() */ void setTexcoordIndex(uint16 texcoordIndex); /** getTexcoordIndex() returns the previous value set by setTexcoordIndex(). The default value is 0, which is always a valid texture coordinate set. @remarks This value is useful only when isUseTexcoordRect return false. */ uint16 getTexcoordIndex(void) const { return mTexcoordIndex; } /** setTexcoordRect() sets the individual texture coordinate rect of this billboard will use when rendering. The parent billboard set may contain more than one, in which case a billboard can be textured with different pieces of a larger texture sheet very efficiently. */ void setTexcoordRect(const FloatRect& texcoordRect); /** setTexcoordRect() sets the individual texture coordinate rect of this billboard will use when rendering. The parent billboard set may contain more than one, in which case a billboard can be textured with different pieces of a larger texture sheet very efficiently. */ void setTexcoordRect(Real u0, Real v0, Real u1, Real v1); /** getTexcoordRect() returns the previous value set by setTexcoordRect(). @remarks This value is useful only when isUseTexcoordRect return true. */ const FloatRect& getTexcoordRect(void) const { return mTexcoordRect; } }; } #endif
OgreBillboard.h
Page URL
File URL
Prev
16/217
Next
Download
( 9 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.