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

KX_LibLoadStatus.h « Converter « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bedf4498c9668ee7c6282fcf9107ed180ce75d27 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Contributor(s): Mitchell Stokes
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file KX_LibLoadStatus.h
 *  \ingroup bgeconv
 */

#ifndef __KX_LIBLOADSTATUS_H__
#define __KX_LIBLOADSTATUS_H__

#include "EXP_PyObjectPlus.h"

class KX_LibLoadStatus : public PyObjectPlus
{
	Py_Header
private:
	class KX_BlenderSceneConverter*	m_converter;
	class KX_KetsjiEngine*			m_engine;
	class KX_Scene*					m_mergescene;
	void*							m_data;
	STR_String						m_libname;

	float	m_progress;
	double	m_starttime;
	double	m_endtime;

#ifdef WITH_PYTHON
	PyObject*	m_finish_cb;
	PyObject*	m_progress_cb;
#endif

public:
	KX_LibLoadStatus(class KX_BlenderSceneConverter* kx_converter,
						class KX_KetsjiEngine* kx_engine,
						class KX_Scene* merge_scene,
						const char *path);

	void Finish(); // Called when the libload is done
	void RunFinishCallback();
	void RunProgressCallback();

	class KX_BlenderSceneConverter *GetConverter();
	class KX_KetsjiEngine *GetEngine();
	class KX_Scene *GetMergeScene();

	void SetLibName(const char *name);
	const char *GetLibName();

	void SetData(void *data);
	void *GetData();

	void SetProgress(float progress);
	float GetProgress();
	void AddProgress(float progress);

#ifdef WITH_PYTHON
	static PyObject*	pyattr_get_onfinish(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
	static int			pyattr_set_onfinish(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);
	static PyObject*	pyattr_get_onprogress(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
	static int			pyattr_set_onprogress(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef, PyObject *value);

	static PyObject*	pyattr_get_timetaken(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
#endif
};

#endif // __KX_LIBLOADSTATUS_H__