Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KX_MaterialIpoController.h « Ketsji « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d2e258bf94cdd0399ebb9da4f782604f23cfb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef __KX_MATERIALIPOCONTROLLER_H__
#define __KX_MATERIALIPOCONTROLLER_H__



#include "SG_Controller.h"
#include "SG_Spatial.h"
#include "KX_IInterpolator.h"

#include "STR_String.h" //typedef dword

class KX_MaterialIpoController : public SG_Controller
{
public:
	MT_Vector4			m_rgba;
	MT_Vector3			m_specrgb;
	MT_Scalar			m_hard;
	MT_Scalar			m_spec;
	MT_Scalar			m_ref;
	MT_Scalar			m_emit;
	MT_Scalar			m_alpha;

private:
	T_InterpolatorList	m_interpolators;
	bool				m_modified;

	double		        m_ipotime;
	dword				m_matname_hash;
public:
	KX_MaterialIpoController(dword matname_hash) : 
				m_modified(true),
				m_ipotime(0.0),
				m_matname_hash(matname_hash)
		{}
	virtual ~KX_MaterialIpoController();
	virtual	SG_Controller*	GetReplica(class SG_Node* destnode);
	virtual bool Update(double time);
	virtual void SetSimulatedTime(double time) {
		m_ipotime = time;
		m_modified = true;
	}
	
		void
	SetOption(
		int option,
		int value
	){
		// intentionally empty
	};


	void	AddInterpolator(KX_IInterpolator* interp);
};




#endif//__KX_MATERIALIPOCONTROLLER_H__