mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-05 18:00:41 +01:00
0c6385cb92
Usually something like __IRR_SOME_GUARD_INCLUDED__ replaced by IRR_SOME_GUARD_INCLUDED. Removing underscores at the end wasn't necessary, but more symmetric (probably the reason they got added there as well). While this touches every header it shouldn't affect users (I hope). Also a few whitespace changes to unify whitespace usage a bit. And a bunch of spelling fixes in comments. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6252 dfc29bdd-3216-0410-991c-e03cc46cb475
46 lines
1.5 KiB
C++
46 lines
1.5 KiB
C++
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#ifndef IRR_I_Q3_LEVEL_MESH_H_INCLUDED
|
|
#define IRR_I_Q3_LEVEL_MESH_H_INCLUDED
|
|
|
|
#include "IAnimatedMesh.h"
|
|
#include "IQ3Shader.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace scene
|
|
{
|
|
//! Interface for a Mesh which can be loaded directly from a Quake3 .bsp-file.
|
|
/** The Mesh tries to load all textures of the map.*/
|
|
class IQ3LevelMesh : public IAnimatedMesh
|
|
{
|
|
public:
|
|
|
|
//! loads the shader definition from file
|
|
/** \param filename Name of the shaderfile, defaults to /scripts if fileNameIsValid is false.
|
|
\param fileNameIsValid Specifies whether the filename is valid in the current situation. */
|
|
virtual const quake3::IShader* getShader( const c8* filename, bool fileNameIsValid=true ) = 0;
|
|
|
|
//! returns a already loaded Shader
|
|
virtual const quake3::IShader* getShader(u32 index) const = 0;
|
|
|
|
//! get's an interface to the entities
|
|
virtual quake3::tQ3EntityList& getEntityList() = 0;
|
|
|
|
//! returns the requested brush entity
|
|
/** \param num The number from the model key of the entity.
|
|
|
|
Use this interface if you parse the entities yourself.*/
|
|
virtual IMesh* getBrushEntityMesh(s32 num) const = 0;
|
|
|
|
//! returns the requested brush entity
|
|
virtual IMesh* getBrushEntityMesh(quake3::IEntity &ent) const = 0;
|
|
};
|
|
|
|
} // end namespace scene
|
|
} // end namespace irr
|
|
|
|
#endif
|