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

DNA_lightprobe_types.h « makesdna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75705f7dd370e3272ae5175c196e523288e4caf1 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * ***** 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): Blender Foundation
 *
 * ***** END GPL LICENSE BLOCK *****
 *
 */

/** \file DNA_lightprobe_types.h
 *  \ingroup DNA
 */

#ifndef __DNA_LIGHTPROBE_TYPES_H__
#define __DNA_LIGHTPROBE_TYPES_H__

#include "DNA_defs.h"
#include "DNA_listBase.h"
#include "DNA_ID.h"

#ifdef __cplusplus
extern "C" {
#endif

struct Object;
struct AnimData;

typedef struct LightProbe {
	ID id;
	struct AnimData *adt;		/* animation data (must be immediately after id for utilities to use it) */

	char type;        /* For realtime probe objects */
	char flag;        /* General purpose flags for probes */
	char attenuation_type; /* Attenuation type */
	char parallax_type;    /* Parallax type */

	float distinf;    /* Influence Radius */
	float distpar;    /* Parallax Radius */
	float falloff;    /* Influence falloff */

	float clipsta, clipend;

	float vis_bias, vis_bleedbias; /* VSM visibility biases */
	float vis_blur, pad2;

	int grid_resolution_x;  /* Irradiance grid resolution */
	int grid_resolution_y;
	int grid_resolution_z;
	int pad1;

	struct Object *parallax_ob;    /* Object to use as a parallax origin */
	struct Image *image;           /* Image to use on as lighting data */

	float data_draw_size;

	/* Runtime display data */
	float distfalloff, distgridinf;
	float pad;
} LightProbe;

/* Probe->type */
enum {
	LIGHTPROBE_TYPE_CUBE      = 0,
	LIGHTPROBE_TYPE_PLANAR    = 1,
	LIGHTPROBE_TYPE_GRID      = 2,
};

/* Probe->flag */
enum {
	LIGHTPROBE_FLAG_CUSTOM_PARALLAX = (1 << 0),
	LIGHTPROBE_FLAG_SHOW_INFLUENCE  = (1 << 1),
	LIGHTPROBE_FLAG_SHOW_PARALLAX   = (1 << 2),
	LIGHTPROBE_FLAG_SHOW_CLIP_DIST  = (1 << 3),
	LIGHTPROBE_FLAG_SHOW_DATA       = (1 << 4),
};

/* Probe->display */
enum {
	LIGHTPROBE_DISP_WIRE         = 0,
	LIGHTPROBE_DISP_SHADED       = 1,
	LIGHTPROBE_DISP_DIFFUSE      = 2,
	LIGHTPROBE_DISP_REFLECTIVE   = 3,
};

/* Probe->parallax && Probe->attenuation_type*/
enum {
	LIGHTPROBE_SHAPE_ELIPSOID   = 0,
	LIGHTPROBE_SHAPE_BOX        = 1,
};

#ifdef __cplusplus
}
#endif

#endif /* __DNA_LIGHTPROBE_TYPES_H__ */