2017-02-17 17:29:43 +01:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
2019-01-23 11:29:18 +11:00
|
|
|
* Copyright 2016, Blender Foundation.
|
2017-02-17 17:29:43 +01:00
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup draw
|
2017-02-17 17:29:43 +01:00
|
|
|
*/
|
|
|
|
|
2017-02-17 17:53:51 +01:00
|
|
|
#include "DRW_engine.h"
|
2017-02-17 17:29:43 +01:00
|
|
|
#include "DRW_render.h"
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "DNA_userdef_types.h"
|
|
|
|
#include "DNA_armature_types.h"
|
2018-08-20 14:01:46 -03:00
|
|
|
#include "DNA_constraint_types.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "DNA_camera_types.h"
|
2017-04-10 22:22:37 +02:00
|
|
|
#include "DNA_curve_types.h"
|
2019-03-11 17:42:45 +01:00
|
|
|
#include "DNA_gpencil_types.h"
|
2017-06-01 02:26:24 +10:00
|
|
|
#include "DNA_mesh_types.h"
|
2017-11-16 15:12:32 -02:00
|
|
|
#include "DNA_meta_types.h"
|
2018-07-16 15:01:44 +02:00
|
|
|
#include "DNA_modifier_types.h"
|
2018-02-07 11:18:50 +11:00
|
|
|
#include "DNA_object_force_types.h"
|
2017-06-12 20:59:54 +10:00
|
|
|
#include "DNA_lightprobe_types.h"
|
2017-05-09 16:23:47 +02:00
|
|
|
#include "DNA_particle_types.h"
|
2018-06-28 15:20:55 +02:00
|
|
|
#include "DNA_rigidbody_types.h"
|
2018-07-16 15:01:44 +02:00
|
|
|
#include "DNA_smoke_types.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "DNA_view3d_types.h"
|
|
|
|
#include "DNA_world_types.h"
|
2017-02-17 17:29:43 +01:00
|
|
|
|
2017-04-10 22:22:37 +02:00
|
|
|
#include "BKE_anim.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "BKE_camera.h"
|
2018-08-20 14:01:46 -03:00
|
|
|
#include "BKE_constraint.h"
|
2017-04-10 22:22:37 +02:00
|
|
|
#include "BKE_curve.h"
|
2018-12-18 21:45:06 +01:00
|
|
|
#include "BKE_editmesh.h"
|
2017-11-16 15:12:32 -02:00
|
|
|
#include "BKE_mball.h"
|
2018-05-30 14:27:28 +02:00
|
|
|
#include "BKE_mesh.h"
|
2018-07-16 15:01:44 +02:00
|
|
|
#include "BKE_modifier.h"
|
2018-08-13 11:54:03 -03:00
|
|
|
#include "BKE_movieclip.h"
|
2017-09-21 12:55:14 +02:00
|
|
|
#include "BKE_object.h"
|
2017-05-19 18:32:40 +02:00
|
|
|
#include "BKE_particle.h"
|
2018-08-13 11:54:03 -03:00
|
|
|
#include "BKE_tracking.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-03-22 21:28:59 +01:00
|
|
|
#include "ED_view3d.h"
|
|
|
|
|
2018-08-15 12:22:29 -03:00
|
|
|
#include "GPU_batch.h"
|
|
|
|
#include "GPU_draw.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "GPU_shader.h"
|
2017-05-20 22:57:47 +10:00
|
|
|
#include "GPU_texture.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-02-14 18:59:15 +01:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "UI_resources.h"
|
|
|
|
|
|
|
|
#include "draw_mode_engines.h"
|
2017-04-28 04:33:58 +10:00
|
|
|
#include "draw_manager_text.h"
|
2017-03-08 20:00:09 +01:00
|
|
|
#include "draw_common.h"
|
2017-02-17 17:29:43 +01:00
|
|
|
|
2018-01-18 15:58:02 +01:00
|
|
|
#include "DEG_depsgraph_query.h"
|
|
|
|
|
2018-06-10 19:35:25 +02:00
|
|
|
extern char datatoc_object_outline_prepass_vert_glsl[];
|
|
|
|
extern char datatoc_object_outline_prepass_geom_glsl[];
|
2018-04-16 19:38:40 +02:00
|
|
|
extern char datatoc_object_outline_prepass_frag_glsl[];
|
2017-03-20 14:59:27 +01:00
|
|
|
extern char datatoc_object_outline_resolve_frag_glsl[];
|
2017-03-21 19:29:58 +01:00
|
|
|
extern char datatoc_object_outline_detect_frag_glsl[];
|
2017-03-20 14:59:27 +01:00
|
|
|
extern char datatoc_object_outline_expand_frag_glsl[];
|
2017-03-22 21:28:59 +01:00
|
|
|
extern char datatoc_object_grid_frag_glsl[];
|
|
|
|
extern char datatoc_object_grid_vert_glsl[];
|
2017-05-20 22:57:47 +10:00
|
|
|
extern char datatoc_object_empty_image_frag_glsl[];
|
|
|
|
extern char datatoc_object_empty_image_vert_glsl[];
|
2017-09-30 19:34:23 +02:00
|
|
|
extern char datatoc_object_lightprobe_grid_vert_glsl[];
|
2018-12-10 23:16:03 +01:00
|
|
|
extern char datatoc_object_loose_points_frag_glsl[];
|
2017-05-23 14:13:25 +02:00
|
|
|
extern char datatoc_object_particle_prim_vert_glsl[];
|
2017-05-23 14:25:12 +02:00
|
|
|
extern char datatoc_object_particle_dot_vert_glsl[];
|
|
|
|
extern char datatoc_object_particle_dot_frag_glsl[];
|
2017-03-22 21:28:59 +01:00
|
|
|
extern char datatoc_common_globals_lib_glsl[];
|
2017-09-22 17:30:39 +02:00
|
|
|
extern char datatoc_common_fxaa_lib_glsl[];
|
2018-01-29 15:51:23 -02:00
|
|
|
extern char datatoc_gpu_shader_flat_color_frag_glsl[];
|
2018-04-17 13:01:01 +02:00
|
|
|
extern char datatoc_gpu_shader_flat_id_frag_glsl[];
|
2018-03-22 16:10:54 +01:00
|
|
|
extern char datatoc_common_fullscreen_vert_glsl[];
|
2017-09-30 19:34:23 +02:00
|
|
|
extern char datatoc_gpu_shader_uniform_color_frag_glsl[];
|
2019-01-25 08:01:07 +11:00
|
|
|
extern char datatoc_gpu_shader_3D_vert_glsl[];
|
2017-03-18 22:14:53 +01:00
|
|
|
|
|
|
|
/* *********** LISTS *********** */
|
2017-02-22 18:52:07 +01:00
|
|
|
typedef struct OBJECT_PassList {
|
2018-08-16 23:56:33 +02:00
|
|
|
struct DRWPass *non_meshes[2];
|
2018-11-22 18:22:34 +01:00
|
|
|
struct DRWPass *image_empties[2];
|
2019-03-06 15:48:15 +01:00
|
|
|
struct DRWPass *transp_shapes[2];
|
2017-03-08 20:00:09 +01:00
|
|
|
struct DRWPass *ob_center;
|
2017-03-18 01:55:41 +01:00
|
|
|
struct DRWPass *outlines;
|
2017-03-22 02:14:23 +01:00
|
|
|
struct DRWPass *outlines_search;
|
2017-03-20 14:59:27 +01:00
|
|
|
struct DRWPass *outlines_expand;
|
2017-09-22 17:30:39 +02:00
|
|
|
struct DRWPass *outlines_bleed;
|
2017-03-20 14:59:27 +01:00
|
|
|
struct DRWPass *outlines_resolve;
|
2017-03-22 21:28:59 +01:00
|
|
|
struct DRWPass *grid;
|
2018-08-16 23:56:33 +02:00
|
|
|
struct DRWPass *bone_solid[2];
|
|
|
|
struct DRWPass *bone_outline[2];
|
|
|
|
struct DRWPass *bone_wire[2];
|
|
|
|
struct DRWPass *bone_envelope[2];
|
|
|
|
struct DRWPass *bone_axes[2];
|
2017-05-19 18:32:40 +02:00
|
|
|
struct DRWPass *particle;
|
2017-09-30 19:34:23 +02:00
|
|
|
struct DRWPass *lightprobes;
|
2017-02-17 17:29:43 +01:00
|
|
|
} OBJECT_PassList;
|
|
|
|
|
2017-03-20 14:59:27 +01:00
|
|
|
typedef struct OBJECT_FramebufferList {
|
2018-03-25 17:46:48 +02:00
|
|
|
struct GPUFrameBuffer *outlines_fb;
|
|
|
|
struct GPUFrameBuffer *blur_fb;
|
|
|
|
struct GPUFrameBuffer *expand_fb;
|
2018-08-16 23:56:33 +02:00
|
|
|
struct GPUFrameBuffer *ghost_fb;
|
2017-03-20 14:59:27 +01:00
|
|
|
} OBJECT_FramebufferList;
|
|
|
|
|
2017-03-26 20:13:34 +02:00
|
|
|
typedef struct OBJECT_StorageList {
|
2017-04-29 16:52:12 +10:00
|
|
|
struct OBJECT_PrivateData *g_data;
|
2017-03-26 20:13:34 +02:00
|
|
|
} OBJECT_StorageList;
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
typedef struct OBJECT_Data {
|
2017-04-03 19:32:05 +02:00
|
|
|
void *engine_type;
|
2017-04-12 19:49:19 +10:00
|
|
|
OBJECT_FramebufferList *fbl;
|
2017-05-16 03:03:58 +02:00
|
|
|
DRWViewportEmptyList *txl;
|
2017-03-08 20:00:09 +01:00
|
|
|
OBJECT_PassList *psl;
|
2017-04-12 19:49:19 +10:00
|
|
|
OBJECT_StorageList *stl;
|
2017-03-08 20:00:09 +01:00
|
|
|
} OBJECT_Data;
|
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
typedef struct OBJECT_Shaders {
|
|
|
|
/* fullscreen shaders */
|
|
|
|
GPUShader *outline_prepass;
|
|
|
|
GPUShader *outline_prepass_wire;
|
|
|
|
GPUShader *outline_resolve;
|
|
|
|
GPUShader *outline_resolve_aa;
|
|
|
|
GPUShader *outline_detect;
|
|
|
|
GPUShader *outline_detect_wire;
|
|
|
|
GPUShader *outline_fade;
|
|
|
|
GPUShader *outline_fade_large;
|
|
|
|
|
|
|
|
/* regular shaders */
|
|
|
|
GPUShader *object_empty_image;
|
|
|
|
GPUShader *object_empty_image_wire;
|
|
|
|
GPUShader *grid;
|
|
|
|
GPUShader *part_dot;
|
|
|
|
GPUShader *part_prim;
|
|
|
|
GPUShader *part_axis;
|
|
|
|
GPUShader *lightprobe_grid;
|
|
|
|
GPUShader *loose_points;
|
|
|
|
} OBJECT_Shaders;
|
|
|
|
|
2017-03-18 22:14:53 +01:00
|
|
|
/* *********** STATIC *********** */
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
typedef struct OBJECT_ShadingGroupList {
|
|
|
|
/* Reference only */
|
|
|
|
struct DRWPass *non_meshes;
|
2018-11-22 18:22:34 +01:00
|
|
|
struct DRWPass *image_empties;
|
2019-03-06 15:48:15 +01:00
|
|
|
struct DRWPass *transp_shapes;
|
2018-08-16 23:56:33 +02:00
|
|
|
struct DRWPass *bone_solid;
|
|
|
|
struct DRWPass *bone_outline;
|
|
|
|
struct DRWPass *bone_wire;
|
|
|
|
struct DRWPass *bone_envelope;
|
|
|
|
struct DRWPass *bone_axes;
|
|
|
|
|
2017-03-18 22:14:53 +01:00
|
|
|
/* Empties */
|
|
|
|
DRWShadingGroup *plain_axes;
|
|
|
|
DRWShadingGroup *cube;
|
|
|
|
DRWShadingGroup *circle;
|
|
|
|
DRWShadingGroup *sphere;
|
2018-08-15 19:05:20 -03:00
|
|
|
DRWShadingGroup *sphere_solid;
|
2018-07-17 11:36:07 +02:00
|
|
|
DRWShadingGroup *cylinder;
|
|
|
|
DRWShadingGroup *capsule_cap;
|
|
|
|
DRWShadingGroup *capsule_body;
|
2017-03-18 22:14:53 +01:00
|
|
|
DRWShadingGroup *cone;
|
|
|
|
DRWShadingGroup *single_arrow;
|
|
|
|
DRWShadingGroup *single_arrow_line;
|
2018-08-17 12:16:50 +02:00
|
|
|
DRWShadingGroup *empty_axes;
|
2017-03-18 22:14:53 +01:00
|
|
|
|
2017-04-10 22:22:37 +02:00
|
|
|
/* Force Field */
|
|
|
|
DRWShadingGroup *field_wind;
|
|
|
|
DRWShadingGroup *field_force;
|
|
|
|
DRWShadingGroup *field_vortex;
|
|
|
|
DRWShadingGroup *field_curve_sta;
|
|
|
|
DRWShadingGroup *field_curve_end;
|
|
|
|
DRWShadingGroup *field_tube_limit;
|
|
|
|
DRWShadingGroup *field_cone_limit;
|
|
|
|
|
2018-07-31 10:22:19 +02:00
|
|
|
/* Grease Pencil */
|
|
|
|
DRWShadingGroup *gpencil_axes;
|
|
|
|
|
2017-03-18 22:14:53 +01:00
|
|
|
/* Speaker */
|
|
|
|
DRWShadingGroup *speaker;
|
|
|
|
|
2017-06-27 14:59:53 +02:00
|
|
|
/* Probe */
|
|
|
|
DRWShadingGroup *probe_cube;
|
|
|
|
DRWShadingGroup *probe_planar;
|
|
|
|
DRWShadingGroup *probe_grid;
|
2017-06-07 16:00:10 +02:00
|
|
|
|
2017-11-16 15:12:32 -02:00
|
|
|
/* MetaBalls */
|
2018-02-16 02:01:09 -02:00
|
|
|
DRWShadingGroup *mball_handle;
|
2017-11-16 15:12:32 -02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
/* Lights */
|
|
|
|
DRWShadingGroup *light_center;
|
|
|
|
DRWShadingGroup *light_groundpoint;
|
|
|
|
DRWShadingGroup *light_groundline;
|
|
|
|
DRWShadingGroup *light_circle;
|
|
|
|
DRWShadingGroup *light_circle_shadow;
|
|
|
|
DRWShadingGroup *light_sunrays;
|
|
|
|
DRWShadingGroup *light_distance;
|
|
|
|
DRWShadingGroup *light_buflimit;
|
|
|
|
DRWShadingGroup *light_buflimit_points;
|
|
|
|
DRWShadingGroup *light_area_sphere;
|
|
|
|
DRWShadingGroup *light_area_square;
|
|
|
|
DRWShadingGroup *light_area_disk;
|
|
|
|
DRWShadingGroup *light_hemi;
|
|
|
|
DRWShadingGroup *light_spot_cone;
|
|
|
|
DRWShadingGroup *light_spot_blend;
|
|
|
|
DRWShadingGroup *light_spot_pyramid;
|
|
|
|
DRWShadingGroup *light_spot_blend_rect;
|
|
|
|
DRWShadingGroup *light_spot_volume;
|
|
|
|
DRWShadingGroup *light_spot_volume_rect;
|
|
|
|
DRWShadingGroup *light_spot_volume_outside;
|
|
|
|
DRWShadingGroup *light_spot_volume_rect_outside;
|
2017-03-18 22:14:53 +01:00
|
|
|
|
|
|
|
/* Helpers */
|
|
|
|
DRWShadingGroup *relationship_lines;
|
2018-08-20 14:01:46 -03:00
|
|
|
DRWShadingGroup *constraint_lines;
|
2017-03-18 22:14:53 +01:00
|
|
|
|
|
|
|
/* Camera */
|
|
|
|
DRWShadingGroup *camera;
|
2018-01-22 00:14:28 +01:00
|
|
|
DRWShadingGroup *camera_frame;
|
2017-03-18 22:14:53 +01:00
|
|
|
DRWShadingGroup *camera_tria;
|
|
|
|
DRWShadingGroup *camera_focus;
|
|
|
|
DRWShadingGroup *camera_clip;
|
|
|
|
DRWShadingGroup *camera_clip_points;
|
|
|
|
DRWShadingGroup *camera_mist;
|
|
|
|
DRWShadingGroup *camera_mist_points;
|
2019-01-11 13:38:18 -02:00
|
|
|
DRWShadingGroup *camera_stereo_plane;
|
2019-03-06 12:39:07 -03:00
|
|
|
DRWShadingGroup *camera_stereo_plane_wires;
|
2019-01-11 13:38:18 -02:00
|
|
|
DRWShadingGroup *camera_stereo_volume;
|
|
|
|
DRWShadingGroup *camera_stereo_volume_wires;
|
2018-08-15 12:22:29 -03:00
|
|
|
ListBase camera_path;
|
2017-03-18 22:14:53 +01:00
|
|
|
|
2017-04-13 22:09:59 +10:00
|
|
|
/* Wire */
|
|
|
|
DRWShadingGroup *wire;
|
|
|
|
DRWShadingGroup *wire_active;
|
|
|
|
DRWShadingGroup *wire_select;
|
|
|
|
DRWShadingGroup *wire_transform;
|
2019-01-10 16:51:36 +11:00
|
|
|
/* Wire (duplicator) */
|
|
|
|
DRWShadingGroup *wire_dupli;
|
|
|
|
DRWShadingGroup *wire_dupli_select;
|
2018-02-24 04:45:13 +01:00
|
|
|
|
|
|
|
/* Points */
|
|
|
|
DRWShadingGroup *points;
|
|
|
|
DRWShadingGroup *points_active;
|
|
|
|
DRWShadingGroup *points_select;
|
|
|
|
DRWShadingGroup *points_transform;
|
2019-01-10 16:51:36 +11:00
|
|
|
/* Points (duplicator) */
|
|
|
|
DRWShadingGroup *points_dupli;
|
|
|
|
DRWShadingGroup *points_dupli_select;
|
2018-04-16 19:38:40 +02:00
|
|
|
|
2018-05-30 14:27:28 +02:00
|
|
|
/* Texture Space */
|
|
|
|
DRWShadingGroup *texspace;
|
2018-08-16 23:56:33 +02:00
|
|
|
} OBJECT_ShadingGroupList;
|
|
|
|
|
|
|
|
typedef struct OBJECT_PrivateData {
|
|
|
|
OBJECT_ShadingGroupList sgl;
|
|
|
|
OBJECT_ShadingGroupList sgl_ghost;
|
|
|
|
|
|
|
|
/* Outlines */
|
|
|
|
DRWShadingGroup *outlines_active;
|
|
|
|
DRWShadingGroup *outlines_select;
|
2019-01-10 18:04:27 +11:00
|
|
|
DRWShadingGroup *outlines_select_dupli;
|
2018-08-16 23:56:33 +02:00
|
|
|
DRWShadingGroup *outlines_transform;
|
|
|
|
|
|
|
|
/* Lightprobes */
|
|
|
|
DRWShadingGroup *lightprobes_cube_select;
|
2019-01-10 18:04:27 +11:00
|
|
|
DRWShadingGroup *lightprobes_cube_select_dupli;
|
2018-08-16 23:56:33 +02:00
|
|
|
DRWShadingGroup *lightprobes_cube_active;
|
|
|
|
DRWShadingGroup *lightprobes_cube_transform;
|
|
|
|
|
|
|
|
DRWShadingGroup *lightprobes_planar_select;
|
2019-01-10 18:04:27 +11:00
|
|
|
DRWShadingGroup *lightprobes_planar_select_dupli;
|
2018-08-16 23:56:33 +02:00
|
|
|
DRWShadingGroup *lightprobes_planar_active;
|
|
|
|
DRWShadingGroup *lightprobes_planar_transform;
|
|
|
|
|
|
|
|
/* Objects Centers */
|
|
|
|
DRWShadingGroup *center_active;
|
|
|
|
DRWShadingGroup *center_selected;
|
|
|
|
DRWShadingGroup *center_deselected;
|
|
|
|
DRWShadingGroup *center_selected_lib;
|
|
|
|
DRWShadingGroup *center_deselected_lib;
|
2018-05-30 14:27:28 +02:00
|
|
|
|
2019-01-10 18:04:27 +11:00
|
|
|
/* Outlines id offset (accessed as an array) */
|
2018-04-16 19:38:40 +02:00
|
|
|
int id_ofs_active;
|
|
|
|
int id_ofs_select;
|
2019-01-10 18:04:27 +11:00
|
|
|
int id_ofs_select_dupli;
|
2018-04-16 19:38:40 +02:00
|
|
|
int id_ofs_transform;
|
2019-01-10 18:04:27 +11:00
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
int id_ofs_prb_active;
|
|
|
|
int id_ofs_prb_select;
|
2019-01-10 18:04:27 +11:00
|
|
|
int id_ofs_prb_select_dupli;
|
2018-04-17 13:01:01 +02:00
|
|
|
int id_ofs_prb_transform;
|
2018-09-21 15:44:04 +02:00
|
|
|
|
|
|
|
bool xray_enabled;
|
2019-02-22 16:06:13 +01:00
|
|
|
bool xray_enabled_and_not_wire;
|
2017-04-29 16:52:12 +10:00
|
|
|
} OBJECT_PrivateData; /* Transient data */
|
2017-03-18 22:14:53 +01:00
|
|
|
|
|
|
|
static struct {
|
2018-02-14 18:59:15 +01:00
|
|
|
/* Instance Data format */
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUVertFormat *particle_format;
|
|
|
|
struct GPUVertFormat *empty_image_format;
|
|
|
|
struct GPUVertFormat *empty_image_wire_format;
|
2018-02-14 18:59:15 +01:00
|
|
|
|
2019-02-06 09:15:16 +11:00
|
|
|
OBJECT_Shaders sh_data[GPU_SHADER_CFG_LEN];
|
2017-05-20 22:57:47 +10:00
|
|
|
|
2017-03-22 21:28:59 +01:00
|
|
|
float camera_pos[3];
|
2017-03-27 14:01:25 +02:00
|
|
|
float grid_settings[5];
|
2019-01-18 16:29:52 +01:00
|
|
|
float grid_mesh_size;
|
2017-03-25 02:46:23 +01:00
|
|
|
int grid_flag;
|
2017-05-27 21:35:03 +02:00
|
|
|
float grid_axes[3];
|
2017-03-25 02:46:23 +01:00
|
|
|
int zpos_flag;
|
|
|
|
int zneg_flag;
|
2017-05-27 21:35:03 +02:00
|
|
|
float zplane_axes[3];
|
2017-09-22 17:30:39 +02:00
|
|
|
float inv_viewport_size[2];
|
2017-05-27 21:28:29 +02:00
|
|
|
bool draw_grid;
|
2017-05-16 03:03:58 +02:00
|
|
|
/* Temp buffer textures */
|
|
|
|
struct GPUTexture *outlines_depth_tx;
|
2018-04-16 19:38:40 +02:00
|
|
|
struct GPUTexture *outlines_id_tx;
|
2017-05-16 03:03:58 +02:00
|
|
|
struct GPUTexture *outlines_color_tx;
|
|
|
|
struct GPUTexture *outlines_blur_tx;
|
2018-07-16 15:01:44 +02:00
|
|
|
|
|
|
|
ListBase smoke_domains;
|
2017-03-18 22:14:53 +01:00
|
|
|
} e_data = {NULL}; /* Engine data */
|
|
|
|
|
2017-03-25 02:46:23 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
SHOW_AXIS_X = (1 << 0),
|
|
|
|
SHOW_AXIS_Y = (1 << 1),
|
|
|
|
SHOW_AXIS_Z = (1 << 2),
|
|
|
|
SHOW_GRID = (1 << 3),
|
|
|
|
PLANE_XY = (1 << 4),
|
|
|
|
PLANE_XZ = (1 << 5),
|
|
|
|
PLANE_YZ = (1 << 6),
|
|
|
|
CLIP_ZPOS = (1 << 7),
|
|
|
|
CLIP_ZNEG = (1 << 8),
|
2018-05-27 11:25:29 +02:00
|
|
|
GRID_BACK = (1 << 9),
|
2017-03-25 02:46:23 +01:00
|
|
|
};
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
/* Prototypes. */
|
2019-03-23 12:16:38 +11:00
|
|
|
static void DRW_shgroup_empty_ex(
|
|
|
|
OBJECT_ShadingGroupList *sgl, const float mat[4][4], const float *draw_size, char draw_type, const float color[4]);
|
2018-08-16 23:56:33 +02:00
|
|
|
|
2017-03-18 22:14:53 +01:00
|
|
|
/* *********** FUNCTIONS *********** */
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2017-03-26 19:10:53 +02:00
|
|
|
static void OBJECT_engine_init(void *vedata)
|
2017-03-18 01:55:41 +01:00
|
|
|
{
|
2017-03-26 19:10:53 +02:00
|
|
|
OBJECT_FramebufferList *fbl = ((OBJECT_Data *)vedata)->fbl;
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2017-04-12 12:10:01 +10:00
|
|
|
const float *viewport_size = DRW_viewport_size_get();
|
2018-03-25 17:46:48 +02:00
|
|
|
const int size[2] = {(int)viewport_size[0], (int)viewport_size[1]};
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2017-04-27 02:04:56 +10:00
|
|
|
if (DRW_state_is_fbo()) {
|
2019-03-20 18:17:16 +11:00
|
|
|
e_data.outlines_depth_tx = DRW_texture_pool_query_2d(size[0], size[1], GPU_DEPTH_COMPONENT24,
|
2018-03-25 17:46:48 +02:00
|
|
|
&draw_engine_object_type);
|
2018-04-30 16:02:24 +02:00
|
|
|
/* XXX TODO GPU_R16UI can overflow, it would cause no harm
|
2018-04-16 19:38:40 +02:00
|
|
|
* (only bad colored or missing outlines) but we should
|
|
|
|
* use 32bits only if the scene have that many objects */
|
2019-03-20 18:17:16 +11:00
|
|
|
e_data.outlines_id_tx = DRW_texture_pool_query_2d(size[0], size[1], GPU_R16UI,
|
2018-04-16 19:38:40 +02:00
|
|
|
&draw_engine_object_type);
|
2017-05-16 03:03:58 +02:00
|
|
|
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_ensure_config(&fbl->outlines_fb, {
|
|
|
|
GPU_ATTACHMENT_TEXTURE(e_data.outlines_depth_tx),
|
2018-04-16 19:38:40 +02:00
|
|
|
GPU_ATTACHMENT_TEXTURE(e_data.outlines_id_tx)
|
2018-03-25 17:46:48 +02:00
|
|
|
});
|
2017-04-26 04:39:25 +10:00
|
|
|
|
2019-03-20 18:17:16 +11:00
|
|
|
e_data.outlines_color_tx = DRW_texture_pool_query_2d(size[0], size[1], GPU_RGBA8,
|
2018-04-16 19:38:40 +02:00
|
|
|
&draw_engine_object_type);
|
|
|
|
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_ensure_config(&fbl->expand_fb, {
|
|
|
|
GPU_ATTACHMENT_NONE,
|
|
|
|
GPU_ATTACHMENT_TEXTURE(e_data.outlines_color_tx)
|
|
|
|
});
|
|
|
|
|
2019-03-20 18:17:16 +11:00
|
|
|
e_data.outlines_blur_tx = DRW_texture_pool_query_2d(size[0], size[1], GPU_RGBA8,
|
2018-03-25 17:46:48 +02:00
|
|
|
&draw_engine_object_type);
|
|
|
|
|
|
|
|
GPU_framebuffer_ensure_config(&fbl->blur_fb, {
|
|
|
|
GPU_ATTACHMENT_NONE,
|
|
|
|
GPU_ATTACHMENT_TEXTURE(e_data.outlines_blur_tx)
|
|
|
|
});
|
2017-04-26 04:39:25 +10:00
|
|
|
}
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Shaders */
|
2019-01-23 12:37:12 +11:00
|
|
|
const DRWContextState *draw_ctx = DRW_context_state_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
OBJECT_Shaders *sh_data = &e_data.sh_data[draw_ctx->sh_cfg];
|
2019-01-23 12:37:12 +11:00
|
|
|
|
2019-02-10 11:06:22 +11:00
|
|
|
const GPUShaderConfigData *sh_cfg_data = &GPU_shader_cfg_data[draw_ctx->sh_cfg];
|
2019-01-24 15:02:40 +11:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
if (!sh_data->outline_resolve) {
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Outline */
|
2019-02-06 09:15:16 +11:00
|
|
|
sh_data->outline_prepass = GPU_shader_create_from_arrays({
|
2019-02-10 11:06:22 +11:00
|
|
|
.vert = (const char *[]){sh_cfg_data->lib, datatoc_gpu_shader_3D_vert_glsl, NULL},
|
2019-01-24 18:27:26 +11:00
|
|
|
.frag = (const char *[]){datatoc_object_outline_prepass_frag_glsl, NULL},
|
2019-02-10 11:06:22 +11:00
|
|
|
.defs = (const char *[]){sh_cfg_data->def, NULL},
|
2019-01-31 08:28:56 +11:00
|
|
|
});
|
2019-02-06 09:15:16 +11:00
|
|
|
sh_data->outline_prepass_wire = GPU_shader_create_from_arrays({
|
2019-02-10 11:06:22 +11:00
|
|
|
.vert = (const char *[]){sh_cfg_data->lib, datatoc_object_outline_prepass_vert_glsl, NULL},
|
|
|
|
.geom = (const char *[]){sh_cfg_data->lib, datatoc_object_outline_prepass_geom_glsl, NULL},
|
2019-01-24 18:27:26 +11:00
|
|
|
.frag = (const char *[]){datatoc_object_outline_prepass_frag_glsl, NULL},
|
2019-02-10 11:06:22 +11:00
|
|
|
.defs = (const char *[]){sh_cfg_data->def, NULL},
|
2019-01-31 08:28:56 +11:00
|
|
|
});
|
2018-06-10 19:35:25 +02:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->outline_resolve = DRW_shader_create_fullscreen(datatoc_object_outline_resolve_frag_glsl, NULL);
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->outline_resolve_aa = DRW_shader_create_with_lib(
|
2018-03-22 16:10:54 +01:00
|
|
|
datatoc_common_fullscreen_vert_glsl, NULL,
|
2017-09-22 17:30:39 +02:00
|
|
|
datatoc_object_outline_resolve_frag_glsl,
|
2018-01-17 20:35:06 +11:00
|
|
|
datatoc_common_fxaa_lib_glsl,
|
2017-09-22 17:30:39 +02:00
|
|
|
"#define FXAA_ALPHA\n"
|
2018-01-17 20:35:06 +11:00
|
|
|
"#define USE_FXAA\n");
|
2017-09-22 17:30:39 +02:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->outline_detect = DRW_shader_create_with_lib(
|
2018-04-16 19:38:40 +02:00
|
|
|
datatoc_common_fullscreen_vert_glsl, NULL,
|
|
|
|
datatoc_object_outline_detect_frag_glsl,
|
|
|
|
datatoc_common_globals_lib_glsl,
|
2018-08-13 11:48:44 +02:00
|
|
|
NULL);
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->outline_detect_wire = DRW_shader_create_with_lib(
|
2018-06-11 18:03:50 +02:00
|
|
|
datatoc_common_fullscreen_vert_glsl, NULL,
|
|
|
|
datatoc_object_outline_detect_frag_glsl,
|
|
|
|
datatoc_common_globals_lib_glsl,
|
2018-08-13 11:48:44 +02:00
|
|
|
"#define WIRE\n");
|
2018-06-11 18:03:50 +02:00
|
|
|
|
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->outline_fade = DRW_shader_create_fullscreen(datatoc_object_outline_expand_frag_glsl, NULL);
|
|
|
|
sh_data->outline_fade_large = DRW_shader_create_fullscreen(datatoc_object_outline_expand_frag_glsl, "#define LARGE_OUTLINE\n");
|
2017-03-22 21:28:59 +01:00
|
|
|
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Empty images */
|
2019-01-26 15:00:03 +11:00
|
|
|
{
|
|
|
|
const char *empty_image_defs = (
|
|
|
|
"#define DEPTH_UNCHANGED " STRINGIFY(OB_EMPTY_IMAGE_DEPTH_DEFAULT) "\n"
|
|
|
|
"#define DEPTH_FRONT " STRINGIFY(OB_EMPTY_IMAGE_DEPTH_FRONT) "\n"
|
|
|
|
"#define DEPTH_BACK " STRINGIFY(OB_EMPTY_IMAGE_DEPTH_BACK) "\n");
|
2018-10-31 13:35:53 +01:00
|
|
|
|
2019-02-06 09:15:16 +11:00
|
|
|
sh_data->object_empty_image = GPU_shader_create_from_arrays({
|
2019-02-10 11:06:22 +11:00
|
|
|
.vert = (const char *[]){sh_cfg_data->lib, datatoc_object_empty_image_vert_glsl, NULL},
|
2019-01-26 15:00:03 +11:00
|
|
|
.frag = (const char *[]){datatoc_object_empty_image_frag_glsl, NULL},
|
2019-02-10 11:06:22 +11:00
|
|
|
.defs = (const char *[]){sh_cfg_data->def, empty_image_defs, NULL},
|
2019-01-31 08:28:56 +11:00
|
|
|
});
|
2019-02-06 09:15:16 +11:00
|
|
|
sh_data->object_empty_image_wire = GPU_shader_create_from_arrays({
|
2019-02-10 11:06:22 +11:00
|
|
|
.vert = (const char *[]){sh_cfg_data->lib, datatoc_object_empty_image_vert_glsl, NULL},
|
2019-01-26 15:00:03 +11:00
|
|
|
.frag = (const char *[]){datatoc_object_empty_image_frag_glsl, NULL},
|
2019-02-10 11:06:22 +11:00
|
|
|
.defs = (const char *[]){sh_cfg_data->def, "#define USE_WIRE\n", empty_image_defs, NULL},
|
2019-01-31 08:28:56 +11:00
|
|
|
});
|
2019-01-26 15:00:03 +11:00
|
|
|
}
|
2017-05-20 22:57:47 +10:00
|
|
|
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Grid */
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->grid = DRW_shader_create_with_lib(
|
2017-04-21 04:39:51 +10:00
|
|
|
datatoc_object_grid_vert_glsl, NULL,
|
2018-01-17 20:35:06 +11:00
|
|
|
datatoc_object_grid_frag_glsl,
|
|
|
|
datatoc_common_globals_lib_glsl, NULL);
|
2017-03-22 21:28:59 +01:00
|
|
|
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Particles */
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_prim = DRW_shader_create(
|
2018-01-29 15:51:23 -02:00
|
|
|
datatoc_object_particle_prim_vert_glsl, NULL, datatoc_gpu_shader_flat_color_frag_glsl, NULL);
|
2017-05-19 18:32:40 +02:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_axis = DRW_shader_create(
|
2018-01-29 15:51:23 -02:00
|
|
|
datatoc_object_particle_prim_vert_glsl, NULL, datatoc_gpu_shader_flat_color_frag_glsl,
|
2017-07-14 16:56:02 +10:00
|
|
|
"#define USE_AXIS\n");
|
2017-05-23 18:13:41 +02:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_dot = DRW_shader_create(
|
2017-07-14 16:56:02 +10:00
|
|
|
datatoc_object_particle_dot_vert_glsl, NULL, datatoc_object_particle_dot_frag_glsl, NULL);
|
2017-05-19 18:32:40 +02:00
|
|
|
|
2018-04-16 19:38:40 +02:00
|
|
|
/* Lightprobes */
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->lightprobe_grid = DRW_shader_create(
|
2018-04-17 13:01:01 +02:00
|
|
|
datatoc_object_lightprobe_grid_vert_glsl, NULL, datatoc_gpu_shader_flat_id_frag_glsl, NULL);
|
2018-12-10 23:16:03 +01:00
|
|
|
|
|
|
|
/* Loose Points */
|
2019-02-06 09:15:16 +11:00
|
|
|
sh_data->loose_points = GPU_shader_create_from_arrays({
|
2019-02-10 11:06:22 +11:00
|
|
|
.vert = (const char *[]){sh_cfg_data->lib, datatoc_gpu_shader_3D_vert_glsl, NULL},
|
2019-01-24 15:02:40 +11:00
|
|
|
.frag = (const char *[]){datatoc_object_loose_points_frag_glsl, NULL},
|
2019-02-10 11:06:22 +11:00
|
|
|
.defs = (const char *[]){sh_cfg_data->def, NULL},
|
2019-01-31 08:28:56 +11:00
|
|
|
});
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
|
|
|
|
2017-03-22 21:28:59 +01:00
|
|
|
{
|
2017-03-25 02:46:23 +01:00
|
|
|
/* Grid precompute */
|
2017-05-27 12:48:25 +02:00
|
|
|
float invviewmat[4][4], invwinmat[4][4];
|
|
|
|
float viewmat[4][4], winmat[4][4];
|
2017-04-26 00:35:08 +10:00
|
|
|
View3D *v3d = draw_ctx->v3d;
|
|
|
|
Scene *scene = draw_ctx->scene;
|
|
|
|
RegionView3D *rv3d = draw_ctx->rv3d;
|
2017-03-25 02:46:23 +01:00
|
|
|
float grid_scale = ED_view3d_grid_scale(scene, v3d, NULL);
|
2017-10-12 04:03:42 +02:00
|
|
|
float grid_res;
|
2017-03-25 02:46:23 +01:00
|
|
|
|
2017-04-21 18:43:54 +10:00
|
|
|
const bool show_axis_x = (v3d->gridflag & V3D_SHOW_X) != 0;
|
|
|
|
const bool show_axis_y = (v3d->gridflag & V3D_SHOW_Y) != 0;
|
|
|
|
const bool show_axis_z = (v3d->gridflag & V3D_SHOW_Z) != 0;
|
|
|
|
const bool show_floor = (v3d->gridflag & V3D_SHOW_FLOOR) != 0;
|
2017-05-27 21:28:29 +02:00
|
|
|
e_data.draw_grid = show_axis_x || show_axis_y || show_axis_z || show_floor;
|
2017-03-25 02:46:23 +01:00
|
|
|
|
2017-03-25 19:02:04 +01:00
|
|
|
DRW_viewport_matrix_get(winmat, DRW_MAT_WIN);
|
|
|
|
DRW_viewport_matrix_get(viewmat, DRW_MAT_VIEW);
|
2017-05-27 12:48:25 +02:00
|
|
|
DRW_viewport_matrix_get(invwinmat, DRW_MAT_WININV);
|
|
|
|
DRW_viewport_matrix_get(invviewmat, DRW_MAT_VIEWINV);
|
2017-03-25 19:02:04 +01:00
|
|
|
|
2017-03-22 21:28:59 +01:00
|
|
|
/* Setup camera pos */
|
2017-05-27 12:48:25 +02:00
|
|
|
copy_v3_v3(e_data.camera_pos, invviewmat[3]);
|
2017-03-22 21:28:59 +01:00
|
|
|
|
2017-03-25 02:46:23 +01:00
|
|
|
/* if perps */
|
|
|
|
if (winmat[3][3] == 0.0f) {
|
|
|
|
float fov;
|
|
|
|
float viewvecs[2][4] = {
|
|
|
|
{1.0f, -1.0f, -1.0f, 1.0f},
|
2019-02-03 14:01:45 +11:00
|
|
|
{-1.0f, 1.0f, -1.0f, 1.0f},
|
2017-03-25 02:46:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* convert the view vectors to view space */
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
mul_m4_v4(invwinmat, viewvecs[i]);
|
2017-05-27 12:48:25 +02:00
|
|
|
mul_v3_fl(viewvecs[i], 1.0f / viewvecs[i][2]); /* perspective divide */
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fov = angle_v3v3(viewvecs[0], viewvecs[1]) / 2.0f;
|
|
|
|
grid_res = fabsf(tanf(fov)) / grid_scale;
|
|
|
|
|
|
|
|
e_data.grid_flag = (1 << 4); /* XY plane */
|
2019-01-25 07:10:13 +11:00
|
|
|
if (show_axis_x) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_AXIS_X;
|
2019-01-25 07:10:13 +11:00
|
|
|
}
|
|
|
|
if (show_axis_y) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_AXIS_Y;
|
2019-01-25 07:10:13 +11:00
|
|
|
}
|
|
|
|
if (show_floor) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_GRID;
|
2019-01-25 07:10:13 +11:00
|
|
|
}
|
2017-05-27 12:48:25 +02:00
|
|
|
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2018-10-30 16:44:02 +01:00
|
|
|
if (rv3d->view != RV3D_VIEW_USER) {
|
|
|
|
/* Allow 3 more subdivisions. */
|
|
|
|
grid_scale /= powf(v3d->gridsubdiv, 3);
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:02:04 +01:00
|
|
|
float viewdist = 1.0f / max_ff(fabsf(winmat[0][0]), fabsf(winmat[1][1]));
|
2017-03-25 02:46:23 +01:00
|
|
|
grid_res = viewdist / grid_scale;
|
|
|
|
|
|
|
|
if (ELEM(rv3d->view, RV3D_VIEW_RIGHT, RV3D_VIEW_LEFT)) {
|
2019-02-19 18:51:57 +01:00
|
|
|
e_data.draw_grid = true;
|
2019-01-02 18:33:07 +11:00
|
|
|
e_data.grid_flag = PLANE_YZ | SHOW_AXIS_Y | SHOW_AXIS_Z | SHOW_GRID | GRID_BACK;
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
else if (ELEM(rv3d->view, RV3D_VIEW_TOP, RV3D_VIEW_BOTTOM)) {
|
2019-02-19 18:51:57 +01:00
|
|
|
e_data.draw_grid = true;
|
2019-01-02 18:33:07 +11:00
|
|
|
e_data.grid_flag = PLANE_XY | SHOW_AXIS_X | SHOW_AXIS_Y | SHOW_GRID | GRID_BACK;
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
else if (ELEM(rv3d->view, RV3D_VIEW_FRONT, RV3D_VIEW_BACK)) {
|
2019-02-19 18:51:57 +01:00
|
|
|
e_data.draw_grid = true;
|
2019-01-02 18:33:07 +11:00
|
|
|
e_data.grid_flag = PLANE_XZ | SHOW_AXIS_X | SHOW_AXIS_Z | SHOW_GRID | GRID_BACK;
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
else { /* RV3D_VIEW_USER */
|
|
|
|
e_data.grid_flag = PLANE_XY;
|
2018-07-11 11:59:11 +02:00
|
|
|
if (show_axis_x) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_AXIS_X;
|
2018-07-11 11:59:11 +02:00
|
|
|
}
|
|
|
|
if (show_axis_y) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_AXIS_Y;
|
2018-07-11 11:59:11 +02:00
|
|
|
}
|
|
|
|
if (show_floor) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_flag |= SHOW_GRID;
|
2018-07-11 11:59:11 +02:00
|
|
|
}
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-27 21:35:03 +02:00
|
|
|
e_data.grid_axes[0] = (float)((e_data.grid_flag & (PLANE_XZ | PLANE_XY)) != 0);
|
|
|
|
e_data.grid_axes[1] = (float)((e_data.grid_flag & (PLANE_YZ | PLANE_XY)) != 0);
|
|
|
|
e_data.grid_axes[2] = (float)((e_data.grid_flag & (PLANE_YZ | PLANE_XZ)) != 0);
|
|
|
|
|
2017-03-25 02:46:23 +01:00
|
|
|
/* Z axis if needed */
|
2017-04-03 21:37:40 +02:00
|
|
|
if (((rv3d->view == RV3D_VIEW_USER) || (rv3d->persp != RV3D_ORTHO)) && show_axis_z) {
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.zpos_flag = SHOW_AXIS_Z;
|
|
|
|
|
|
|
|
float zvec[4] = {0.0f, 0.0f, -1.0f, 0.0f};
|
2017-05-27 12:48:25 +02:00
|
|
|
mul_m4_v4(invviewmat, zvec);
|
2017-03-25 02:46:23 +01:00
|
|
|
|
|
|
|
/* z axis : chose the most facing plane */
|
2017-03-27 14:01:25 +02:00
|
|
|
if (fabsf(zvec[0]) < fabsf(zvec[1])) {
|
2017-04-03 21:37:40 +02:00
|
|
|
e_data.zpos_flag |= PLANE_XZ;
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2017-04-03 21:37:40 +02:00
|
|
|
e_data.zpos_flag |= PLANE_YZ;
|
2017-03-25 02:46:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
e_data.zneg_flag = e_data.zpos_flag;
|
|
|
|
|
|
|
|
/* Persp : If camera is below floor plane, we switch clipping
|
|
|
|
* Ortho : If eye vector is looking up, we switch clipping */
|
|
|
|
if (((winmat[3][3] == 0.0f) && (e_data.camera_pos[2] > 0.0f)) ||
|
2017-10-07 15:57:14 +11:00
|
|
|
((winmat[3][3] != 0.0f) && (zvec[2] < 0.0f)))
|
|
|
|
{
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.zpos_flag |= CLIP_ZPOS;
|
|
|
|
e_data.zneg_flag |= CLIP_ZNEG;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
e_data.zpos_flag |= CLIP_ZNEG;
|
|
|
|
e_data.zneg_flag |= CLIP_ZPOS;
|
|
|
|
}
|
2017-05-27 21:35:03 +02:00
|
|
|
|
|
|
|
e_data.zplane_axes[0] = (float)((e_data.zpos_flag & (PLANE_XZ | PLANE_XY)) != 0);
|
|
|
|
e_data.zplane_axes[1] = (float)((e_data.zpos_flag & (PLANE_YZ | PLANE_XY)) != 0);
|
|
|
|
e_data.zplane_axes[2] = (float)((e_data.zpos_flag & (PLANE_YZ | PLANE_XZ)) != 0);
|
|
|
|
|
2017-03-25 19:02:04 +01:00
|
|
|
}
|
|
|
|
else {
|
2017-03-27 14:01:25 +02:00
|
|
|
e_data.zneg_flag = e_data.zpos_flag = CLIP_ZNEG | CLIP_ZPOS;
|
2017-03-25 19:02:04 +01:00
|
|
|
}
|
|
|
|
|
2018-01-18 15:58:02 +01:00
|
|
|
float dist;
|
2018-10-10 14:30:44 +02:00
|
|
|
if (rv3d->persp == RV3D_CAMOB && v3d->camera && v3d->camera->type == OB_CAMERA) {
|
2018-01-18 15:58:02 +01:00
|
|
|
Object *camera_object = DEG_get_evaluated_object(draw_ctx->depsgraph, v3d->camera);
|
2019-02-16 12:21:44 +11:00
|
|
|
dist = ((Camera *)(camera_object->data))->clip_end;
|
2018-01-18 15:58:02 +01:00
|
|
|
}
|
|
|
|
else {
|
2019-02-16 12:21:44 +11:00
|
|
|
dist = v3d->clip_end;
|
2018-01-18 15:58:02 +01:00
|
|
|
}
|
2017-05-09 21:50:18 +02:00
|
|
|
|
|
|
|
e_data.grid_settings[0] = dist / 2.0f; /* gridDistance */
|
2017-03-25 02:46:23 +01:00
|
|
|
e_data.grid_settings[1] = grid_res; /* gridResolution */
|
|
|
|
e_data.grid_settings[2] = grid_scale; /* gridScale */
|
|
|
|
e_data.grid_settings[3] = v3d->gridsubdiv; /* gridSubdiv */
|
2017-08-01 13:35:26 +10:00
|
|
|
e_data.grid_settings[4] = (v3d->gridsubdiv > 1) ? 1.0f / logf(v3d->gridsubdiv) : 0.0f; /* 1/log(gridSubdiv) */
|
2019-01-18 16:29:52 +01:00
|
|
|
|
|
|
|
if (winmat[3][3] == 0.0f) {
|
|
|
|
e_data.grid_mesh_size = dist;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
float viewdist = 1.0f / min_ff(fabsf(winmat[0][0]), fabsf(winmat[1][1]));
|
|
|
|
e_data.grid_mesh_size = viewdist * dist;
|
|
|
|
}
|
2017-03-22 21:28:59 +01:00
|
|
|
}
|
2017-09-22 17:30:39 +02:00
|
|
|
|
|
|
|
copy_v2_v2(e_data.inv_viewport_size, DRW_viewport_size_get());
|
|
|
|
invert_v2(e_data.inv_viewport_size);
|
2017-03-18 01:55:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void OBJECT_engine_free(void)
|
|
|
|
{
|
2018-02-20 01:55:19 +01:00
|
|
|
MEM_SAFE_FREE(e_data.particle_format);
|
2018-02-14 18:59:15 +01:00
|
|
|
MEM_SAFE_FREE(e_data.empty_image_format);
|
|
|
|
MEM_SAFE_FREE(e_data.empty_image_wire_format);
|
2019-01-23 12:37:12 +11:00
|
|
|
|
|
|
|
for (int sh_data_index = 0; sh_data_index < ARRAY_SIZE(e_data.sh_data); sh_data_index++) {
|
|
|
|
OBJECT_Shaders *sh_data = &e_data.sh_data[sh_data_index];
|
|
|
|
GPUShader **sh_data_as_array = (GPUShader **)sh_data;
|
|
|
|
for (int i = 0; i < (sizeof(OBJECT_Shaders) / sizeof(GPUShader *)); i++) {
|
|
|
|
DRW_SHADER_FREE_SAFE(sh_data_as_array[i]);
|
|
|
|
}
|
|
|
|
}
|
2017-03-18 01:55:41 +01:00
|
|
|
}
|
|
|
|
|
2019-02-10 11:02:06 +11:00
|
|
|
static DRWShadingGroup *shgroup_outline(DRWPass *pass, const int *ofs, GPUShader *sh, eGPUShaderConfig sh_cfg)
|
2017-03-18 01:55:41 +01:00
|
|
|
{
|
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh, pass);
|
2018-04-16 19:38:40 +02:00
|
|
|
DRW_shgroup_uniform_int(grp, "baseId", ofs, 1);
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2019-02-10 11:02:06 +11:00
|
|
|
if (sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-24 18:27:26 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, DRW_context_state_get()->rv3d);
|
|
|
|
}
|
2017-03-18 01:55:41 +01:00
|
|
|
return grp;
|
|
|
|
}
|
|
|
|
|
2017-04-13 22:09:59 +10:00
|
|
|
/* currently same as 'shgroup_outline', new function to avoid confustion */
|
2019-02-10 11:02:06 +11:00
|
|
|
static DRWShadingGroup *shgroup_wire(DRWPass *pass, const float col[4], GPUShader *sh, eGPUShaderConfig sh_cfg)
|
2017-04-13 22:09:59 +10:00
|
|
|
{
|
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh, pass);
|
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", col, 1);
|
|
|
|
|
2019-02-10 11:02:06 +11:00
|
|
|
if (sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-24 15:02:40 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, DRW_context_state_get()->rv3d);
|
|
|
|
}
|
2017-04-13 22:09:59 +10:00
|
|
|
return grp;
|
|
|
|
}
|
|
|
|
|
2018-02-24 04:45:13 +01:00
|
|
|
/* currently same as 'shgroup_outline', new function to avoid confustion */
|
2019-02-10 11:02:06 +11:00
|
|
|
static DRWShadingGroup *shgroup_points(DRWPass *pass, const float col[4], GPUShader *sh, eGPUShaderConfig sh_cfg)
|
2018-02-24 04:45:13 +01:00
|
|
|
{
|
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh, pass);
|
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", col, 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "innerColor", G_draw.block.colorEditMeshMiddle, 1);
|
2018-02-24 04:45:13 +01:00
|
|
|
|
2019-02-10 11:02:06 +11:00
|
|
|
if (sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-24 15:02:40 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, DRW_context_state_get()->rv3d);
|
|
|
|
}
|
2018-02-24 04:45:13 +01:00
|
|
|
return grp;
|
|
|
|
}
|
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
static int *shgroup_theme_id_to_probe_outline_counter(
|
2019-01-10 18:04:27 +11:00
|
|
|
OBJECT_StorageList *stl, int theme_id, const int base_flag)
|
2018-04-17 13:01:01 +02:00
|
|
|
{
|
2019-01-15 23:27:54 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 18:04:27 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return &stl->g_data->id_ofs_prb_select_dupli;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return &stl->g_data->id_ofs_prb_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
return &stl->g_data->id_ofs_prb_active;
|
|
|
|
case TH_SELECT:
|
|
|
|
return &stl->g_data->id_ofs_prb_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return &stl->g_data->id_ofs_prb_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int *shgroup_theme_id_to_outline_counter(
|
2019-01-10 18:04:27 +11:00
|
|
|
OBJECT_StorageList *stl, int theme_id, const int base_flag)
|
2018-04-17 13:01:01 +02:00
|
|
|
{
|
2019-01-15 23:27:54 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 18:04:27 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return &stl->g_data->id_ofs_select_dupli;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return &stl->g_data->id_ofs_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
return &stl->g_data->id_ofs_active;
|
|
|
|
case TH_SELECT:
|
|
|
|
return &stl->g_data->id_ofs_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return &stl->g_data->id_ofs_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static DRWShadingGroup *shgroup_theme_id_to_probe_planar_outline_shgrp(
|
|
|
|
OBJECT_StorageList *stl, int theme_id)
|
|
|
|
{
|
|
|
|
/* does not increment counter */
|
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
return stl->g_data->lightprobes_planar_active;
|
|
|
|
case TH_SELECT:
|
|
|
|
return stl->g_data->lightprobes_planar_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return stl->g_data->lightprobes_planar_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static DRWShadingGroup *shgroup_theme_id_to_probe_cube_outline_shgrp(
|
2019-01-10 18:04:27 +11:00
|
|
|
OBJECT_StorageList *stl, int theme_id, const int base_flag)
|
2018-04-17 13:01:01 +02:00
|
|
|
{
|
|
|
|
/* does not increment counter */
|
2019-01-15 23:27:54 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 18:04:27 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return stl->g_data->lightprobes_cube_select_dupli;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return stl->g_data->lightprobes_cube_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
return stl->g_data->lightprobes_cube_active;
|
|
|
|
case TH_SELECT:
|
|
|
|
return stl->g_data->lightprobes_cube_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
default:
|
|
|
|
return stl->g_data->lightprobes_cube_transform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 18:04:27 +11:00
|
|
|
static DRWShadingGroup *shgroup_theme_id_to_outline_or_null(
|
|
|
|
OBJECT_StorageList *stl, int theme_id, const int base_flag)
|
2017-04-20 00:24:28 +10:00
|
|
|
{
|
2019-01-10 18:04:27 +11:00
|
|
|
int *counter = shgroup_theme_id_to_outline_counter(stl, theme_id, base_flag);
|
2018-04-17 13:01:01 +02:00
|
|
|
*counter += 1;
|
|
|
|
|
2019-01-15 23:27:54 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 18:04:27 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return stl->g_data->outlines_select_dupli;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
return stl->g_data->outlines_transform;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 00:24:28 +10:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
return stl->g_data->outlines_active;
|
|
|
|
case TH_SELECT:
|
|
|
|
return stl->g_data->outlines_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
return stl->g_data->outlines_transform;
|
|
|
|
default:
|
2019-01-10 18:04:27 +11:00
|
|
|
return NULL;
|
2017-04-20 00:24:28 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 16:51:36 +11:00
|
|
|
static DRWShadingGroup *shgroup_theme_id_to_wire(
|
|
|
|
OBJECT_ShadingGroupList *sgl, int theme_id, const short base_flag)
|
2017-04-20 00:24:28 +10:00
|
|
|
{
|
2019-01-11 14:22:40 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_SET)) {
|
|
|
|
return sgl->wire_dupli;
|
|
|
|
}
|
2019-01-15 23:27:54 +11:00
|
|
|
else if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 16:51:36 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return sgl->wire_dupli_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
return sgl->wire_transform;
|
|
|
|
default:
|
|
|
|
return sgl->wire_dupli;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 00:24:28 +10:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->wire_active;
|
2017-04-20 00:24:28 +10:00
|
|
|
case TH_SELECT:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->wire_select;
|
2017-04-20 00:24:28 +10:00
|
|
|
case TH_TRANSFORM:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->wire_transform;
|
2017-04-20 00:24:28 +10:00
|
|
|
default:
|
2019-01-10 16:51:36 +11:00
|
|
|
return sgl->wire;
|
2017-04-20 00:24:28 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 16:51:36 +11:00
|
|
|
static DRWShadingGroup *shgroup_theme_id_to_point(
|
|
|
|
OBJECT_ShadingGroupList *sgl, int theme_id, const short base_flag)
|
2018-02-24 04:45:13 +01:00
|
|
|
{
|
2019-01-11 14:22:40 +11:00
|
|
|
if (UNLIKELY(base_flag & BASE_FROM_SET)) {
|
|
|
|
return sgl->points_dupli;
|
|
|
|
}
|
2019-01-15 23:27:54 +11:00
|
|
|
else if (UNLIKELY(base_flag & BASE_FROM_DUPLI)) {
|
2019-01-10 16:51:36 +11:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
|
|
|
case TH_SELECT:
|
|
|
|
return sgl->points_dupli_select;
|
|
|
|
case TH_TRANSFORM:
|
|
|
|
return sgl->points_transform;
|
|
|
|
default:
|
|
|
|
return sgl->points_dupli;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-24 04:45:13 +01:00
|
|
|
switch (theme_id) {
|
|
|
|
case TH_ACTIVE:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->points_active;
|
2018-02-24 04:45:13 +01:00
|
|
|
case TH_SELECT:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->points_select;
|
2018-02-24 04:45:13 +01:00
|
|
|
case TH_TRANSFORM:
|
2018-08-16 23:56:33 +02:00
|
|
|
return sgl->points_transform;
|
2018-02-24 04:45:13 +01:00
|
|
|
default:
|
2019-01-10 16:51:36 +11:00
|
|
|
return sgl->points;
|
2018-02-24 04:45:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 14:07:56 +11:00
|
|
|
static void image_calc_aspect(Image *ima, const int size[2], float r_image_aspect[2])
|
2017-05-20 22:57:47 +10:00
|
|
|
{
|
|
|
|
float ima_x, ima_y;
|
|
|
|
if (ima) {
|
2018-12-14 14:07:56 +11:00
|
|
|
ima_x = size[0];
|
|
|
|
ima_y = size[1];
|
2017-05-20 22:57:47 +10:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* if no image, make it a 1x1 empty square, honor scale & offset */
|
|
|
|
ima_x = ima_y = 1.0f;
|
|
|
|
}
|
|
|
|
/* Get the image aspect even if the buffer is invalid */
|
|
|
|
float sca_x = 1.0f, sca_y = 1.0f;
|
|
|
|
if (ima) {
|
|
|
|
if (ima->aspx > ima->aspy) {
|
|
|
|
sca_y = ima->aspy / ima->aspx;
|
|
|
|
}
|
|
|
|
else if (ima->aspx < ima->aspy) {
|
|
|
|
sca_x = ima->aspx / ima->aspy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const float scale_x_inv = ima_x * sca_x;
|
|
|
|
const float scale_y_inv = ima_y * sca_y;
|
|
|
|
if (scale_x_inv > scale_y_inv) {
|
|
|
|
r_image_aspect[0] = 1.0f;
|
|
|
|
r_image_aspect[1] = scale_y_inv / scale_x_inv;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
r_image_aspect[0] = scale_x_inv / scale_y_inv;
|
|
|
|
r_image_aspect[1] = 1.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DRW_shgroup_empty_image(
|
2019-01-23 12:37:12 +11:00
|
|
|
OBJECT_Shaders *sh_data, OBJECT_ShadingGroupList *sgl,
|
2019-02-10 11:02:06 +11:00
|
|
|
Object *ob, const float color[3], RegionView3D *rv3d, eGPUShaderConfig sh_cfg)
|
2017-05-20 22:57:47 +10:00
|
|
|
{
|
|
|
|
/* TODO: 'StereoViews', see draw_empty_image. */
|
|
|
|
|
2019-03-07 11:26:28 +11:00
|
|
|
if (!BKE_object_empty_image_frame_is_visible_in_view3d(ob, rv3d)) {
|
2018-11-22 18:22:34 +01:00
|
|
|
return;
|
2019-01-25 07:10:13 +11:00
|
|
|
}
|
2017-05-20 22:57:47 +10:00
|
|
|
|
2018-12-14 14:07:56 +11:00
|
|
|
/* Calling 'BKE_image_get_size' may free the texture. Get the size from 'tex' instead, see: T59347 */
|
|
|
|
int size[2] = {0};
|
|
|
|
|
2019-03-20 16:33:17 +01:00
|
|
|
const bool use_alpha_blend = (ob->empty_image_flag & OB_EMPTY_IMAGE_USE_ALPHA_BLEND) != 0;
|
2018-12-14 14:07:56 +11:00
|
|
|
GPUTexture *tex = NULL;
|
|
|
|
|
|
|
|
if (ob->data != NULL) {
|
2019-02-18 13:23:49 +01:00
|
|
|
tex = GPU_texture_from_blender(ob->data, ob->iuser, GL_TEXTURE_2D, false);
|
2018-12-14 14:07:56 +11:00
|
|
|
if (tex) {
|
|
|
|
size[0] = GPU_texture_width(tex);
|
|
|
|
size[1] = GPU_texture_height(tex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CLAMP_MIN(size[0], 1);
|
|
|
|
CLAMP_MIN(size[1], 1);
|
2018-02-14 18:59:15 +01:00
|
|
|
|
2018-11-22 18:22:34 +01:00
|
|
|
float image_aspect[2];
|
2018-12-14 14:07:56 +11:00
|
|
|
image_calc_aspect(ob->data, size, image_aspect);
|
2017-05-20 22:57:47 +10:00
|
|
|
|
2019-03-30 08:21:09 +01:00
|
|
|
char depth_mode;
|
|
|
|
if (DRW_state_is_depth()) {
|
|
|
|
/* Use the actual depth if we are doing depth tests to determine the distance to the object */
|
|
|
|
depth_mode = OB_EMPTY_IMAGE_DEPTH_DEFAULT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
depth_mode = ob->empty_image_depth;
|
|
|
|
}
|
|
|
|
|
2019-03-20 16:33:17 +01:00
|
|
|
{
|
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh_data->object_empty_image_wire, sgl->non_meshes);
|
2018-11-22 18:22:34 +01:00
|
|
|
/* TODO(fclem) implement DRW_shgroup_uniform_vec2_copy */
|
|
|
|
DRW_shgroup_uniform_float_copy(grp, "aspectX", image_aspect[0]);
|
|
|
|
DRW_shgroup_uniform_float_copy(grp, "aspectY", image_aspect[1]);
|
2019-03-30 08:21:09 +01:00
|
|
|
DRW_shgroup_uniform_int_copy(grp, "depthMode", depth_mode);
|
2018-11-22 18:22:34 +01:00
|
|
|
DRW_shgroup_uniform_float(grp, "size", &ob->empty_drawsize, 1);
|
|
|
|
DRW_shgroup_uniform_vec2(grp, "offset", ob->ima_ofs, 1);
|
2019-03-20 16:33:17 +01:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "color", color, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-26 15:00:03 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, DRW_context_state_get()->rv3d);
|
|
|
|
}
|
2019-03-20 16:33:17 +01:00
|
|
|
DRW_shgroup_call_add(grp, DRW_cache_image_plane_wire_get(), ob->obmat);
|
2017-05-20 22:57:47 +10:00
|
|
|
}
|
|
|
|
|
2019-03-20 16:33:17 +01:00
|
|
|
if (!BKE_object_empty_image_data_is_visible_in_view3d(ob, rv3d)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tex && ((ob->color[3] > 0.0f) || !use_alpha_blend)) {
|
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh_data->object_empty_image,
|
|
|
|
(use_alpha_blend) ? sgl->image_empties : sgl->non_meshes);
|
2018-11-22 18:22:34 +01:00
|
|
|
DRW_shgroup_uniform_float_copy(grp, "aspectX", image_aspect[0]);
|
|
|
|
DRW_shgroup_uniform_float_copy(grp, "aspectY", image_aspect[1]);
|
2019-03-30 08:21:09 +01:00
|
|
|
DRW_shgroup_uniform_int_copy(grp, "depthMode", depth_mode);
|
2018-11-22 18:22:34 +01:00
|
|
|
DRW_shgroup_uniform_float(grp, "size", &ob->empty_drawsize, 1);
|
|
|
|
DRW_shgroup_uniform_vec2(grp, "offset", ob->ima_ofs, 1);
|
2019-03-20 16:33:17 +01:00
|
|
|
DRW_shgroup_uniform_texture(grp, "image", tex);
|
|
|
|
DRW_shgroup_uniform_vec4(grp, "objectColor", ob->color, 1);
|
|
|
|
DRW_shgroup_uniform_bool_copy(grp, "useAlphaTest", !use_alpha_blend);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-26 15:00:03 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, DRW_context_state_get()->rv3d);
|
|
|
|
}
|
2019-03-20 16:33:17 +01:00
|
|
|
DRW_shgroup_call_add(grp, DRW_cache_image_plane_get(), ob->obmat);
|
2018-11-22 18:22:34 +01:00
|
|
|
}
|
2017-05-20 22:57:47 +10:00
|
|
|
}
|
|
|
|
|
2017-03-26 19:10:53 +02:00
|
|
|
static void OBJECT_cache_init(void *vedata)
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2019-01-22 12:09:27 +11:00
|
|
|
const GlobalsUboStorage *gb = &G_draw.block;
|
2017-03-26 19:10:53 +02:00
|
|
|
OBJECT_PassList *psl = ((OBJECT_Data *)vedata)->psl;
|
2017-03-26 20:13:34 +02:00
|
|
|
OBJECT_StorageList *stl = ((OBJECT_Data *)vedata)->stl;
|
2017-03-20 14:59:27 +01:00
|
|
|
DefaultTextureList *dtxl = DRW_viewport_texture_list_get();
|
2018-04-17 13:01:01 +02:00
|
|
|
OBJECT_PrivateData *g_data;
|
2018-06-10 19:35:25 +02:00
|
|
|
const DRWContextState *draw_ctx = DRW_context_state_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
OBJECT_Shaders *sh_data = &e_data.sh_data[draw_ctx->sh_cfg];
|
2019-01-14 18:20:04 +01:00
|
|
|
|
|
|
|
const float outline_width = UI_GetThemeValuef(TH_OUTLINE_WIDTH);
|
|
|
|
const bool do_outline_expand = (U.pixelsize > 1.0) || (outline_width > 2.0f);
|
|
|
|
const bool do_large_expand = ((U.pixelsize > 1.0) && (outline_width > 2.0f)) || (outline_width > 4.0f);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-03-26 20:13:34 +02:00
|
|
|
if (!stl->g_data) {
|
|
|
|
/* Alloc transient pointers */
|
2017-04-29 16:52:12 +10:00
|
|
|
stl->g_data = MEM_mallocN(sizeof(*stl->g_data), __func__);
|
2017-03-26 20:13:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data = stl->g_data;
|
2019-04-09 12:29:02 +02:00
|
|
|
g_data->xray_enabled = XRAY_ACTIVE(draw_ctx->v3d);
|
2019-02-22 16:06:13 +01:00
|
|
|
g_data->xray_enabled_and_not_wire = g_data->xray_enabled && draw_ctx->v3d->shading.type > OB_WIRE;
|
2018-04-17 13:01:01 +02:00
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2018-05-20 19:05:13 +02:00
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_WIRE;
|
2017-08-09 23:51:00 +02:00
|
|
|
psl->outlines = DRW_pass_create("Outlines Depth Pass", state);
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
GPUShader *sh = sh_data->outline_prepass;
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2019-02-22 16:06:13 +01:00
|
|
|
if (g_data->xray_enabled_and_not_wire) {
|
2019-01-23 12:37:12 +11:00
|
|
|
sh = sh_data->outline_prepass_wire;
|
2018-06-10 19:35:25 +02:00
|
|
|
}
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2019-02-10 11:02:06 +11:00
|
|
|
g_data->outlines_select = shgroup_outline(psl->outlines, &g_data->id_ofs_select, sh, draw_ctx->sh_cfg);
|
|
|
|
g_data->outlines_select_dupli = shgroup_outline(psl->outlines, &g_data->id_ofs_select_dupli, sh, draw_ctx->sh_cfg);
|
|
|
|
g_data->outlines_transform = shgroup_outline(psl->outlines, &g_data->id_ofs_transform, sh, draw_ctx->sh_cfg);
|
|
|
|
g_data->outlines_active = shgroup_outline(psl->outlines, &g_data->id_ofs_active, sh, draw_ctx->sh_cfg);
|
2018-04-16 19:38:40 +02:00
|
|
|
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->id_ofs_select = 0;
|
2019-01-10 18:04:27 +11:00
|
|
|
g_data->id_ofs_select_dupli = 0;
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->id_ofs_active = 0;
|
|
|
|
g_data->id_ofs_transform = 0;
|
2017-03-18 01:55:41 +01:00
|
|
|
}
|
|
|
|
|
2017-09-30 19:34:23 +02:00
|
|
|
{
|
2018-07-10 14:46:36 +02:00
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_POINT;
|
2018-04-17 13:01:01 +02:00
|
|
|
DRWPass *pass = psl->lightprobes = DRW_pass_create("Object Probe Pass", state);
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *sphere = DRW_cache_sphere_get();
|
|
|
|
struct GPUBatch *quad = DRW_cache_quad_get();
|
2017-09-30 19:34:23 +02:00
|
|
|
|
|
|
|
/* Cubemap */
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->lightprobes_cube_select = shgroup_instance_outline(pass, sphere, &g_data->id_ofs_prb_select);
|
2019-01-10 18:04:27 +11:00
|
|
|
g_data->lightprobes_cube_select_dupli = shgroup_instance_outline(pass, sphere, &g_data->id_ofs_prb_select_dupli);
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->lightprobes_cube_active = shgroup_instance_outline(pass, sphere, &g_data->id_ofs_prb_active);
|
|
|
|
g_data->lightprobes_cube_transform = shgroup_instance_outline(pass, sphere, &g_data->id_ofs_prb_transform);
|
2017-09-30 19:34:23 +02:00
|
|
|
|
|
|
|
/* Planar */
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->lightprobes_planar_select = shgroup_instance_outline(pass, quad, &g_data->id_ofs_prb_select);
|
2019-01-10 18:04:27 +11:00
|
|
|
g_data->lightprobes_planar_select_dupli = shgroup_instance_outline(pass, quad, &g_data->id_ofs_prb_select_dupli);
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->lightprobes_planar_active = shgroup_instance_outline(pass, quad, &g_data->id_ofs_prb_active);
|
|
|
|
g_data->lightprobes_planar_transform = shgroup_instance_outline(pass, quad, &g_data->id_ofs_prb_transform);
|
|
|
|
|
|
|
|
g_data->id_ofs_prb_select = 0;
|
2019-01-10 18:04:27 +11:00
|
|
|
g_data->id_ofs_prb_select_dupli = 0;
|
2018-04-17 13:01:01 +02:00
|
|
|
g_data->id_ofs_prb_active = 0;
|
|
|
|
g_data->id_ofs_prb_transform = 0;
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
|
|
|
|
2017-03-18 01:55:41 +01:00
|
|
|
{
|
2017-03-20 14:59:27 +01:00
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR;
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *quad = DRW_cache_fullscreen_quad_get();
|
2018-06-11 17:26:41 +02:00
|
|
|
/* Don't occlude the "outline" detection pass if in xray mode (too much flickering). */
|
2018-09-21 15:44:04 +02:00
|
|
|
float alphaOcclu = (g_data->xray_enabled) ? 1.0f : 0.35f;
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2017-08-09 23:51:00 +02:00
|
|
|
psl->outlines_search = DRW_pass_create("Outlines Detect Pass", state);
|
2017-03-22 02:14:23 +01:00
|
|
|
|
2019-02-22 16:06:13 +01:00
|
|
|
GPUShader *sh = (g_data->xray_enabled_and_not_wire) ? sh_data->outline_detect_wire : sh_data->outline_detect;
|
2018-06-11 18:03:50 +02:00
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh, psl->outlines_search);
|
2018-04-16 19:38:40 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "outlineId", &e_data.outlines_id_tx);
|
2018-03-25 19:24:19 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "outlineDepth", &e_data.outlines_depth_tx);
|
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "sceneDepth", &dtxl->depth);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_block(grp, "globalsBlock", G_draw.block_ubo);
|
2018-06-11 17:26:41 +02:00
|
|
|
DRW_shgroup_uniform_float_copy(grp, "alphaOcclu", alphaOcclu);
|
2019-01-10 18:04:27 +11:00
|
|
|
DRW_shgroup_uniform_int(grp, "idOffsets", &stl->g_data->id_ofs_active, 4);
|
2017-03-20 14:59:27 +01:00
|
|
|
DRW_shgroup_call_add(grp, quad, NULL);
|
2017-03-18 01:55:41 +01:00
|
|
|
|
2019-01-14 18:20:04 +01:00
|
|
|
/* This is the bleed pass if do_outline_expand is false. */
|
2019-01-23 12:37:12 +11:00
|
|
|
GPUShader *fade_sh = (do_large_expand) ? sh_data->outline_fade_large : sh_data->outline_fade;
|
2017-03-22 02:14:23 +01:00
|
|
|
psl->outlines_expand = DRW_pass_create("Outlines Expand Pass", state);
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2019-01-14 18:20:04 +01:00
|
|
|
grp = DRW_shgroup_create(fade_sh, psl->outlines_expand);
|
2018-03-25 19:24:19 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "outlineColor", &e_data.outlines_blur_tx);
|
2019-01-14 18:20:04 +01:00
|
|
|
DRW_shgroup_uniform_bool_copy(grp, "doExpand", do_outline_expand);
|
2017-03-20 14:59:27 +01:00
|
|
|
DRW_shgroup_call_add(grp, quad, NULL);
|
|
|
|
|
2017-09-22 17:30:39 +02:00
|
|
|
psl->outlines_bleed = DRW_pass_create("Outlines Bleed Pass", state);
|
2017-03-22 02:14:23 +01:00
|
|
|
|
2018-04-18 11:34:46 +02:00
|
|
|
if (do_outline_expand) {
|
2019-01-23 12:37:12 +11:00
|
|
|
grp = DRW_shgroup_create(sh_data->outline_fade, psl->outlines_bleed);
|
2018-04-18 11:34:46 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "outlineColor", &e_data.outlines_color_tx);
|
2019-01-14 18:20:04 +01:00
|
|
|
DRW_shgroup_uniform_bool_copy(grp, "doExpand", false);
|
2018-04-18 11:34:46 +02:00
|
|
|
DRW_shgroup_call_add(grp, quad, NULL);
|
|
|
|
}
|
2017-03-20 14:59:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_BLEND;
|
|
|
|
psl->outlines_resolve = DRW_pass_create("Outlines Resolve Pass", state);
|
|
|
|
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *quad = DRW_cache_fullscreen_quad_get();
|
2018-04-18 11:34:46 +02:00
|
|
|
GPUTexture **outline_tx = (do_outline_expand) ? &e_data.outlines_blur_tx : &e_data.outlines_color_tx;
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh_data->outline_resolve_aa, psl->outlines_resolve);
|
2018-04-18 11:34:46 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "outlineBluredColor", outline_tx);
|
2017-09-22 17:30:39 +02:00
|
|
|
DRW_shgroup_uniform_vec2(grp, "rcpDimensions", e_data.inv_viewport_size, 1);
|
2017-03-20 14:59:27 +01:00
|
|
|
DRW_shgroup_call_add(grp, quad, NULL);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2017-03-22 21:28:59 +01:00
|
|
|
{
|
|
|
|
/* Grid pass */
|
2017-10-12 04:03:42 +02:00
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_BLEND;
|
2017-03-22 21:28:59 +01:00
|
|
|
psl->grid = DRW_pass_create("Infinite Grid Pass", state);
|
|
|
|
|
2018-08-23 13:35:10 +02:00
|
|
|
struct GPUBatch *geom = DRW_cache_grid_get();
|
2018-10-30 16:20:48 +01:00
|
|
|
float grid_line_size = max_ff(0.0f, U.pixelsize - 1.0f) * 0.5f;
|
2017-04-03 21:37:40 +02:00
|
|
|
static float mat[4][4];
|
|
|
|
unit_m4(mat);
|
2017-03-22 21:28:59 +01:00
|
|
|
|
2017-03-25 02:46:23 +01:00
|
|
|
/* Create 3 quads to render ordered transparency Z axis */
|
2019-01-23 12:37:12 +11:00
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh_data->grid, psl->grid);
|
2017-03-25 02:46:23 +01:00
|
|
|
DRW_shgroup_uniform_int(grp, "gridFlag", &e_data.zneg_flag, 1);
|
2017-05-27 21:35:03 +02:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "planeAxes", e_data.zplane_axes, 1);
|
2017-03-22 21:28:59 +01:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "cameraPos", e_data.camera_pos, 1);
|
|
|
|
DRW_shgroup_uniform_vec4(grp, "gridSettings", e_data.grid_settings, 1);
|
2018-10-30 16:20:48 +01:00
|
|
|
DRW_shgroup_uniform_float_copy(grp, "lineKernel", grid_line_size);
|
2019-01-18 16:29:52 +01:00
|
|
|
DRW_shgroup_uniform_float_copy(grp, "meshSize", e_data.grid_mesh_size);
|
2017-03-27 14:01:25 +02:00
|
|
|
DRW_shgroup_uniform_float(grp, "gridOneOverLogSubdiv", &e_data.grid_settings[4], 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_block(grp, "globalsBlock", G_draw.block_ubo);
|
2018-03-25 19:24:19 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "depthBuffer", &dtxl->depth);
|
2018-08-23 13:35:10 +02:00
|
|
|
DRW_shgroup_call_add(grp, geom, mat);
|
2017-03-25 02:46:23 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
grp = DRW_shgroup_create(sh_data->grid, psl->grid);
|
2017-03-25 02:46:23 +01:00
|
|
|
DRW_shgroup_uniform_int(grp, "gridFlag", &e_data.grid_flag, 1);
|
2017-05-27 21:35:03 +02:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "planeAxes", e_data.grid_axes, 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_block(grp, "globalsBlock", G_draw.block_ubo);
|
2018-03-25 19:24:19 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "depthBuffer", &dtxl->depth);
|
2018-08-23 13:35:10 +02:00
|
|
|
DRW_shgroup_call_add(grp, geom, mat);
|
2017-03-25 02:46:23 +01:00
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
grp = DRW_shgroup_create(sh_data->grid, psl->grid);
|
2017-03-25 02:46:23 +01:00
|
|
|
DRW_shgroup_uniform_int(grp, "gridFlag", &e_data.zpos_flag, 1);
|
2017-05-27 21:35:03 +02:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "planeAxes", e_data.zplane_axes, 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_block(grp, "globalsBlock", G_draw.block_ubo);
|
2018-03-25 19:24:19 +02:00
|
|
|
DRW_shgroup_uniform_texture_ref(grp, "depthBuffer", &dtxl->depth);
|
2018-08-23 13:35:10 +02:00
|
|
|
DRW_shgroup_call_add(grp, geom, mat);
|
2017-03-22 21:28:59 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
OBJECT_ShadingGroupList *sgl = (i == 1) ? &stl->g_data->sgl_ghost : &stl->g_data->sgl;
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Solid bones */
|
2018-05-20 22:53:33 +02:00
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL;
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->bone_solid = psl->bone_solid[i] = DRW_pass_create("Bone Solid Pass", state);
|
|
|
|
sgl->bone_outline = psl->bone_outline[i] = DRW_pass_create("Bone Outline Pass", state);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* Wire bones */
|
2018-08-16 23:56:33 +02:00
|
|
|
state = DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_BLEND;
|
|
|
|
sgl->bone_wire = psl->bone_wire[i] = DRW_pass_create("Bone Wire Pass", state);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-05-17 14:33:34 +02:00
|
|
|
/* distance outline around envelope bones */
|
2018-08-16 23:56:33 +02:00
|
|
|
state = DRW_STATE_ADDITIVE | DRW_STATE_WRITE_COLOR | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_CULL_FRONT;
|
|
|
|
sgl->bone_envelope = psl->bone_envelope[i] = DRW_pass_create("Bone Envelope Outline Pass", state);
|
2017-05-17 14:33:34 +02:00
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
state = DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_WIRE;
|
|
|
|
sgl->bone_axes = psl->bone_axes[i] = DRW_pass_create("Bone Axes Pass", state);
|
2018-05-06 18:36:27 +02:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
OBJECT_ShadingGroupList *sgl = (i == 1) ? &stl->g_data->sgl_ghost : &stl->g_data->sgl;
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
/* Non Meshes Pass (Camera, empties, lights ...) */
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom;
|
2018-08-16 23:56:33 +02:00
|
|
|
struct GPUShader *sh;
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-04-21 04:39:51 +10:00
|
|
|
DRWState state =
|
|
|
|
DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH |
|
2018-08-22 18:44:24 +02:00
|
|
|
DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_BLEND | DRW_STATE_POINT | DRW_STATE_WIRE;
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->non_meshes = psl->non_meshes[i] = DRW_pass_create("Non Meshes Pass", state);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-11-22 18:22:34 +01:00
|
|
|
state = DRW_STATE_WRITE_COLOR |
|
|
|
|
DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_BLEND | DRW_STATE_WIRE;
|
|
|
|
sgl->image_empties = psl->image_empties[i] = DRW_pass_create("Image Empties", state);
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Empties */
|
|
|
|
geom = DRW_cache_plain_axes_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->plain_axes = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-07-16 15:01:44 +02:00
|
|
|
geom = DRW_cache_empty_cube_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->cube = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_circle_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->circle = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_empty_sphere_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->sphere = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-08-15 19:05:20 -03:00
|
|
|
geom = DRW_cache_sphere_get();
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->sphere_solid = shgroup_instance_solid(sgl->non_meshes, geom);
|
2018-08-15 19:05:20 -03:00
|
|
|
|
2018-07-17 11:36:07 +02:00
|
|
|
geom = DRW_cache_empty_cylinder_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->cylinder = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-07-17 11:36:07 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_empty_capsule_cap_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->capsule_cap = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-07-17 11:36:07 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_empty_capsule_body_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->capsule_body = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-07-17 11:36:07 +02:00
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
geom = DRW_cache_empty_cone_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->cone = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_arrow_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->single_arrow = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_line_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->single_arrow_line = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-08-17 12:16:50 +02:00
|
|
|
geom = DRW_cache_bone_arrows_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->empty_axes = shgroup_instance_empty_axes(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-04-10 22:22:37 +02:00
|
|
|
/* Force Field */
|
|
|
|
geom = DRW_cache_field_wind_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_wind = shgroup_instance_scaled(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_field_force_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_force = shgroup_instance_screen_aligned(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_field_vortex_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_vortex = shgroup_instance_scaled(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_screenspace_circle_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_curve_sta = shgroup_instance_screen_aligned(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
2018-07-31 10:22:19 +02:00
|
|
|
/* Grease Pencil */
|
|
|
|
geom = DRW_cache_gpencil_axes_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->gpencil_axes = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-07-31 10:22:19 +02:00
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Speaker */
|
|
|
|
geom = DRW_cache_speaker_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->speaker = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-06-07 16:00:10 +02:00
|
|
|
/* Probe */
|
2017-06-27 14:59:53 +02:00
|
|
|
static float probeSize = 14.0f;
|
|
|
|
geom = DRW_cache_lightprobe_cube_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->probe_cube = shgroup_instance_screenspace(sgl->non_meshes, geom, &probeSize, draw_ctx->sh_cfg);
|
2017-06-27 14:59:53 +02:00
|
|
|
|
|
|
|
geom = DRW_cache_lightprobe_grid_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->probe_grid = shgroup_instance_screenspace(sgl->non_meshes, geom, &probeSize, draw_ctx->sh_cfg);
|
2017-06-27 14:59:53 +02:00
|
|
|
|
|
|
|
static float probePlanarSize = 20.0f;
|
|
|
|
geom = DRW_cache_lightprobe_planar_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->probe_planar = shgroup_instance_screenspace(sgl->non_meshes, geom, &probePlanarSize, draw_ctx->sh_cfg);
|
2017-06-07 16:00:10 +02:00
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Camera */
|
|
|
|
geom = DRW_cache_camera_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera = shgroup_camera_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-01-22 00:14:28 +01:00
|
|
|
geom = DRW_cache_camera_frame_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_frame = shgroup_camera_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-01-22 00:14:28 +01:00
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
geom = DRW_cache_camera_tria_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_tria = shgroup_camera_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_plain_axes_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_focus = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_line_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_clip = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
|
|
|
sgl->camera_mist = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_line_endpoints_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_clip_points = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
|
|
|
sgl->camera_mist_points = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
geom = DRW_cache_quad_wires_get();
|
|
|
|
sgl->camera_stereo_plane_wires = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
|
|
|
DRW_shgroup_state_enable(sgl->camera_stereo_plane_wires, DRW_STATE_WIRE);
|
|
|
|
|
2019-01-11 13:38:18 -02:00
|
|
|
geom = DRW_cache_empty_cube_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->camera_stereo_volume_wires = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
BLI_listbase_clear(&sgl->camera_path);
|
2018-08-15 12:22:29 -03:00
|
|
|
|
2018-05-30 14:27:28 +02:00
|
|
|
/* Texture Space */
|
2018-07-16 15:01:44 +02:00
|
|
|
geom = DRW_cache_empty_cube_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->texspace = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-08-16 23:56:33 +02:00
|
|
|
|
|
|
|
/* Wires (for loose edges) */
|
2019-02-10 11:02:06 +11:00
|
|
|
sh = GPU_shader_get_builtin_shader_with_config(GPU_SHADER_3D_UNIFORM_COLOR, draw_ctx->sh_cfg);
|
|
|
|
sgl->wire = shgroup_wire(sgl->non_meshes, gb->colorWire, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->wire_select = shgroup_wire(sgl->non_meshes, gb->colorSelect, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->wire_transform = shgroup_wire(sgl->non_meshes, gb->colorTransform, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->wire_active = shgroup_wire(sgl->non_meshes, gb->colorActive, sh, draw_ctx->sh_cfg);
|
2019-01-10 16:51:36 +11:00
|
|
|
/* Wire (duplicator) */
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->wire_dupli = shgroup_wire(sgl->non_meshes, gb->colorDupli, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->wire_dupli_select = shgroup_wire(sgl->non_meshes, gb->colorDupliSelect, sh, draw_ctx->sh_cfg);
|
2018-08-16 23:56:33 +02:00
|
|
|
|
|
|
|
/* Points (loose points) */
|
2019-01-23 12:37:12 +11:00
|
|
|
sh = sh_data->loose_points;
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->points = shgroup_points(sgl->non_meshes, gb->colorWire, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->points_select = shgroup_points(sgl->non_meshes, gb->colorSelect, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->points_transform = shgroup_points(sgl->non_meshes, gb->colorTransform, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->points_active = shgroup_points(sgl->non_meshes, gb->colorActive, sh, draw_ctx->sh_cfg);
|
2019-01-10 16:51:36 +11:00
|
|
|
/* Points (duplicator) */
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->points_dupli = shgroup_points(sgl->non_meshes, gb->colorDupli, sh, draw_ctx->sh_cfg);
|
|
|
|
sgl->points_dupli_select = shgroup_points(sgl->non_meshes, gb->colorDupliSelect, sh, draw_ctx->sh_cfg);
|
2018-12-10 23:16:03 +01:00
|
|
|
DRW_shgroup_state_disable(sgl->points, DRW_STATE_BLEND);
|
|
|
|
DRW_shgroup_state_disable(sgl->points_select, DRW_STATE_BLEND);
|
|
|
|
DRW_shgroup_state_disable(sgl->points_transform, DRW_STATE_BLEND);
|
|
|
|
DRW_shgroup_state_disable(sgl->points_active, DRW_STATE_BLEND);
|
2019-01-10 16:51:36 +11:00
|
|
|
DRW_shgroup_state_disable(sgl->points_dupli, DRW_STATE_BLEND);
|
|
|
|
DRW_shgroup_state_disable(sgl->points_dupli_select, DRW_STATE_BLEND);
|
2018-02-24 04:45:13 +01:00
|
|
|
|
2018-02-16 02:01:09 -02:00
|
|
|
/* Metaballs Handles */
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->mball_handle = shgroup_instance_mball_handles(sgl->non_meshes, draw_ctx->sh_cfg);
|
2017-11-16 15:12:32 -02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
/* Lights */
|
2017-03-08 20:00:09 +01:00
|
|
|
/* TODO
|
2019-02-27 12:02:02 +11:00
|
|
|
* for now we create multiple times the same VBO with only light center coordinates
|
2017-03-08 20:00:09 +01:00
|
|
|
* but ideally we would only create it once */
|
|
|
|
|
|
|
|
/* start with buflimit because we don't want stipples */
|
|
|
|
geom = DRW_cache_single_line_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_buflimit = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_center = shgroup_dynpoints_uniform_color(sgl->non_meshes, gb->colorLightNoAlpha, &gb->sizeLightCenter, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_get();
|
|
|
|
sgl->light_circle = shgroup_instance_screenspace(sgl->non_meshes, geom, &gb->sizeLightCircle, draw_ctx->sh_cfg);
|
|
|
|
geom = DRW_cache_light_shadows_get();
|
|
|
|
sgl->light_circle_shadow = shgroup_instance_screenspace(sgl->non_meshes, geom, &gb->sizeLightCircleShadow, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_sunrays_get();
|
|
|
|
sgl->light_sunrays = shgroup_instance_screenspace(sgl->non_meshes, geom, &gb->sizeLightCircle, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_groundline = shgroup_groundlines_uniform_color(sgl->non_meshes, gb->colorLight, draw_ctx->sh_cfg);
|
|
|
|
sgl->light_groundpoint = shgroup_groundpoints_uniform_color(sgl->non_meshes, gb->colorLight, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-06-24 14:11:36 +02:00
|
|
|
geom = DRW_cache_screenspace_circle_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_area_sphere = shgroup_instance_screen_aligned(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-06-24 14:11:36 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_area_square_get();
|
|
|
|
sgl->light_area_square = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
Cycles/Eevee: Implement disk and ellipse shapes for area lamps
The implementation is pretty straightforward.
In Cycles, sampling the shapes is currently done w.r.t. area instead of solid angle.
There is a paper on solid angle sampling for disks [1], but the described algorithm is based on
simply sampling the enclosing square and rejecting samples outside of the disk, which is not exactly
great for Cycles' RNG (we'd need to setup a LCG for the repeated sampling) and for GPU divergence.
Even worse, the algorithm is only defined for disks. For ellipses, the basic idea still works, but a
way to analytically calculate the solid angle is required. This is technically possible [2], but the
calculation is extremely complex and still requires a lookup table for the Heuman Lambda function.
Therefore, I've decided to not implement that for now, we could still look into it later on.
In Eevee, the code uses the existing ltc_evaluate_disk to implement the lighting calculations.
[1]: "Solid Angle Sampling of Disk and Cylinder Lights"
[2]: "Analytical solution for the solid angle subtended at any point by an ellipse via a point source radiation vector potential"
Reviewers: sergey, brecht, fclem
Differential Revision: https://developer.blender.org/D3171
2018-05-24 03:50:16 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_area_disk_get();
|
|
|
|
sgl->light_area_disk = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_hemi_get();
|
|
|
|
sgl->light_hemi = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_line_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_distance = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_single_line_endpoints_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_buflimit_points = shgroup_distance_lines_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_get();
|
|
|
|
sgl->light_spot_cone = shgroup_spot_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_circle_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_spot_blend = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_square_get();
|
|
|
|
sgl->light_spot_pyramid = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
geom = DRW_cache_square_get();
|
2019-02-27 12:02:02 +11:00
|
|
|
sgl->light_spot_blend_rect = shgroup_instance(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-04-10 22:22:37 +02:00
|
|
|
/* -------- STIPPLES ------- */
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Relationship Lines */
|
2019-03-16 17:37:08 +11:00
|
|
|
sgl->relationship_lines = shgroup_dynlines_dashed_uniform_color(sgl->non_meshes, gb->colorWire, draw_ctx->sh_cfg);
|
|
|
|
sgl->constraint_lines = shgroup_dynlines_dashed_uniform_color(sgl->non_meshes, gb->colorGridAxisZ, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
|
|
|
/* Force Field Curve Guide End (here because of stipple) */
|
2018-05-07 00:22:03 +02:00
|
|
|
/* TODO port to shader stipple */
|
2017-04-10 22:22:37 +02:00
|
|
|
geom = DRW_cache_screenspace_circle_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_curve_end = shgroup_instance_screen_aligned(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
|
|
|
/* Force Field Limits */
|
2018-05-07 00:22:03 +02:00
|
|
|
/* TODO port to shader stipple */
|
2017-04-10 22:22:37 +02:00
|
|
|
geom = DRW_cache_field_tube_limit_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_tube_limit = shgroup_instance_scaled(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2017-04-10 22:22:37 +02:00
|
|
|
|
2018-05-07 00:22:03 +02:00
|
|
|
/* TODO port to shader stipple */
|
2017-04-10 22:22:37 +02:00
|
|
|
geom = DRW_cache_field_cone_limit_get();
|
2019-02-10 11:02:06 +11:00
|
|
|
sgl->field_cone_limit = shgroup_instance_scaled(sgl->non_meshes, geom, draw_ctx->sh_cfg);
|
2018-08-22 18:44:24 +02:00
|
|
|
|
2019-03-06 15:48:15 +01:00
|
|
|
/* Transparent Shapes */
|
2018-08-22 18:44:24 +02:00
|
|
|
state = DRW_STATE_WRITE_COLOR | DRW_STATE_DEPTH_LESS_EQUAL | DRW_STATE_BLEND | DRW_STATE_CULL_FRONT;
|
2019-03-06 15:48:15 +01:00
|
|
|
sgl->transp_shapes = psl->transp_shapes[i] = DRW_pass_create("Transparent Shapes", state);
|
2018-08-22 18:44:24 +02:00
|
|
|
|
2019-03-06 15:48:15 +01:00
|
|
|
/* Spot cones */
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_volume_get();
|
2019-03-06 15:48:15 +01:00
|
|
|
sgl->light_spot_volume = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
2018-08-22 18:44:24 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_square_volume_get();
|
2019-03-06 15:48:15 +01:00
|
|
|
sgl->light_spot_volume_rect = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
2018-08-22 18:44:24 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_volume_get();
|
2019-03-06 15:48:15 +01:00
|
|
|
sgl->light_spot_volume_outside = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_state_disable(sgl->light_spot_volume_outside, DRW_STATE_CULL_FRONT);
|
|
|
|
DRW_shgroup_state_enable(sgl->light_spot_volume_outside, DRW_STATE_CULL_BACK);
|
2018-08-22 18:44:24 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
geom = DRW_cache_light_spot_square_volume_get();
|
2019-03-06 15:48:15 +01:00
|
|
|
sgl->light_spot_volume_rect_outside = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_state_disable(sgl->light_spot_volume_rect_outside, DRW_STATE_CULL_FRONT);
|
|
|
|
DRW_shgroup_state_enable(sgl->light_spot_volume_rect_outside, DRW_STATE_CULL_BACK);
|
2019-03-06 15:48:15 +01:00
|
|
|
|
|
|
|
/* Camera stereo volumes */
|
|
|
|
geom = DRW_cache_cube_get();
|
|
|
|
sgl->camera_stereo_volume = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
|
|
|
|
|
|
|
geom = DRW_cache_quad_get();
|
2019-03-06 12:53:58 -03:00
|
|
|
sgl->camera_stereo_plane = shgroup_instance_alpha(sgl->transp_shapes, geom, draw_ctx->sh_cfg);
|
|
|
|
DRW_shgroup_state_disable(sgl->camera_stereo_plane, DRW_STATE_CULL_FRONT);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Object Center pass grouped by State */
|
|
|
|
DRWShadingGroup *grp;
|
|
|
|
static float outlineWidth, size;
|
|
|
|
|
|
|
|
DRWState state = DRW_STATE_WRITE_COLOR | DRW_STATE_BLEND | DRW_STATE_POINT;
|
|
|
|
psl->ob_center = DRW_pass_create("Obj Center Pass", state);
|
|
|
|
|
|
|
|
outlineWidth = 1.0f * U.pixelsize;
|
|
|
|
size = U.obcenter_dia * U.pixelsize + outlineWidth;
|
|
|
|
|
2019-02-06 09:15:16 +11:00
|
|
|
GPUShader *sh = GPU_shader_get_builtin_shader_with_config(
|
2019-02-10 11:02:06 +11:00
|
|
|
GPU_SHADER_3D_POINT_UNIFORM_SIZE_UNIFORM_COLOR_OUTLINE_AA, draw_ctx->sh_cfg);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* Active */
|
|
|
|
grp = DRW_shgroup_point_batch_create(sh, psl->ob_center);
|
|
|
|
DRW_shgroup_uniform_float(grp, "size", &size, 1);
|
|
|
|
DRW_shgroup_uniform_float(grp, "outlineWidth", &outlineWidth, 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", gb->colorActive, 1);
|
|
|
|
DRW_shgroup_uniform_vec4(grp, "outlineColor", gb->colorOutline, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (draw_ctx->sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-29 00:13:42 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, draw_ctx->rv3d);
|
|
|
|
}
|
2017-03-26 20:13:34 +02:00
|
|
|
stl->g_data->center_active = grp;
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* Select */
|
|
|
|
grp = DRW_shgroup_point_batch_create(sh, psl->ob_center);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", gb->colorSelect, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (draw_ctx->sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-29 00:13:42 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, draw_ctx->rv3d);
|
|
|
|
}
|
2017-03-26 20:13:34 +02:00
|
|
|
stl->g_data->center_selected = grp;
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* Deselect */
|
|
|
|
grp = DRW_shgroup_point_batch_create(sh, psl->ob_center);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", gb->colorDeselect, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (draw_ctx->sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-29 00:13:42 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, draw_ctx->rv3d);
|
|
|
|
}
|
2017-03-26 20:13:34 +02:00
|
|
|
stl->g_data->center_deselected = grp;
|
2017-04-11 14:05:39 +10:00
|
|
|
|
|
|
|
/* Select (library) */
|
|
|
|
grp = DRW_shgroup_point_batch_create(sh, psl->ob_center);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", gb->colorLibrarySelect, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (draw_ctx->sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-29 00:13:42 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, draw_ctx->rv3d);
|
|
|
|
}
|
2017-04-11 14:05:39 +10:00
|
|
|
stl->g_data->center_selected_lib = grp;
|
|
|
|
|
|
|
|
/* Deselect (library) */
|
|
|
|
grp = DRW_shgroup_point_batch_create(sh, psl->ob_center);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_vec4(grp, "color", gb->colorLibrary, 1);
|
2019-02-10 11:02:06 +11:00
|
|
|
if (draw_ctx->sh_cfg == GPU_SHADER_CFG_CLIPPED) {
|
2019-01-29 00:13:42 +11:00
|
|
|
DRW_shgroup_world_clip_planes_from_rv3d(grp, draw_ctx->rv3d);
|
|
|
|
}
|
2017-04-11 14:05:39 +10:00
|
|
|
stl->g_data->center_deselected_lib = grp;
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2017-05-19 18:32:40 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
/* Particle Pass */
|
2017-07-14 16:56:02 +10:00
|
|
|
psl->particle = DRW_pass_create(
|
|
|
|
"Particle Pass",
|
2018-05-20 19:05:13 +02:00
|
|
|
DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL |
|
2017-07-14 16:56:02 +10:00
|
|
|
DRW_STATE_POINT | DRW_STATE_BLEND);
|
2017-05-19 18:32:40 +02:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_mball_handles(OBJECT_ShadingGroupList *sgl, Object *ob, ViewLayer *view_layer)
|
2017-11-16 15:12:32 -02:00
|
|
|
{
|
|
|
|
MetaBall *mb = ob->data;
|
|
|
|
|
|
|
|
float *color;
|
2017-11-22 10:52:39 -02:00
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
2017-11-16 15:12:32 -02:00
|
|
|
|
2018-05-02 21:26:43 -03:00
|
|
|
float draw_scale_xform[3][4]; /* Matrix of Scale and Translation */
|
|
|
|
{
|
|
|
|
float scamat[3][3];
|
|
|
|
copy_m3_m4(scamat, ob->obmat);
|
|
|
|
/* Get the normalized inverse matrix to extract only
|
2018-09-02 18:28:27 +10:00
|
|
|
* the scale of Scamat */
|
2018-05-02 21:26:43 -03:00
|
|
|
float iscamat[3][3];
|
|
|
|
invert_m3_m3(iscamat, scamat);
|
|
|
|
normalize_m3(iscamat);
|
|
|
|
mul_m3_m3_post(scamat, iscamat);
|
|
|
|
|
|
|
|
copy_v3_v3(draw_scale_xform[0], scamat[0]);
|
|
|
|
copy_v3_v3(draw_scale_xform[1], scamat[1]);
|
|
|
|
copy_v3_v3(draw_scale_xform[2], scamat[2]);
|
|
|
|
}
|
|
|
|
|
2017-11-16 15:12:32 -02:00
|
|
|
for (MetaElem *ml = mb->elems.first; ml != NULL; ml = ml->next) {
|
|
|
|
/* draw radius */
|
2018-05-02 21:26:43 -03:00
|
|
|
float world_pos[3];
|
|
|
|
mul_v3_m4v3(world_pos, ob->obmat, &ml->x);
|
|
|
|
draw_scale_xform[0][3] = world_pos[0];
|
|
|
|
draw_scale_xform[1][3] = world_pos[1];
|
|
|
|
draw_scale_xform[2][3] = world_pos[2];
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->mball_handle, draw_scale_xform, &ml->rad, color);
|
2017-11-16 15:12:32 -02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
static void DRW_shgroup_light(OBJECT_ShadingGroupList *sgl, Object *ob, ViewLayer *view_layer)
|
2017-02-17 17:29:43 +01:00
|
|
|
{
|
2019-02-27 10:46:48 +11:00
|
|
|
Light *la = ob->data;
|
2017-03-08 20:00:09 +01:00
|
|
|
float *color;
|
2017-11-22 10:52:39 -02:00
|
|
|
int theme_id = DRW_object_wire_theme_get(ob, view_layer, &color);
|
2017-03-08 20:00:09 +01:00
|
|
|
static float zero = 0.0f;
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
typedef struct LightEngineData {
|
2018-07-10 14:14:55 +02:00
|
|
|
DrawData dd;
|
2018-01-29 16:28:24 +01:00
|
|
|
float shape_mat[4][4];
|
|
|
|
float spot_blend_mat[4][4];
|
2019-02-27 12:02:02 +11:00
|
|
|
} LightEngineData;
|
2018-01-29 16:28:24 +01:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
LightEngineData *light_engine_data =
|
|
|
|
(LightEngineData *)DRW_drawdata_ensure(
|
2018-07-10 14:14:55 +02:00
|
|
|
&ob->id,
|
2018-01-29 16:28:24 +01:00
|
|
|
&draw_engine_object_type,
|
2019-02-27 12:02:02 +11:00
|
|
|
sizeof(LightEngineData),
|
2018-01-29 16:28:24 +01:00
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
float (*shapemat)[4] = light_engine_data->shape_mat;
|
|
|
|
float (*spotblendmat)[4] = light_engine_data->spot_blend_mat;
|
2017-04-03 19:01:10 +02:00
|
|
|
|
2019-01-15 23:27:54 +11:00
|
|
|
if ((ob->base_flag & (BASE_FROM_SET | BASE_FROM_DUPLI)) == 0) {
|
2019-01-10 16:51:36 +11:00
|
|
|
/* Don't draw the center if it's selected or active */
|
2019-02-27 12:02:02 +11:00
|
|
|
if (theme_id == TH_LIGHT) {
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_center, ob->obmat[3]);
|
2019-01-10 16:51:36 +11:00
|
|
|
}
|
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* First circle */
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_circle, ob->obmat[3], color);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
Remove Blender Internal and legacy viewport from Blender 2.8.
Brecht authored this commit, but he gave me the honours to actually
do it. Here it goes; Blender Internal. Bye bye, you did great!
* Point density, voxel data, ocean, environment map textures were removed,
as these only worked within BI rendering. Note that the ocean modifier
and the Cycles point density shader node continue to work.
* Dynamic paint using material shading was removed, as this only worked
with BI. If we ever wanted to support this again probably it should go
through the baking API.
* GPU shader export through the Python API was removed. This only worked
for the old BI GLSL shaders, which no longer exists. Doing something
similar for Eevee would be significantly more complicated because it
uses a lot of multiplass rendering and logic outside the shader, it's
probably impractical.
* Collada material import / export code is mostly gone, as it only worked
for BI materials. We need to add Cycles / Eevee material support at some
point.
* The mesh noise operator was removed since it only worked with BI
material texture slots. A displacement modifier can be used instead.
* The delete texture paint slot operator was removed since it only worked
for BI material texture slots. Could be added back with node support.
* Not all legacy viewport features are supported in the new viewport, but
their code was removed. If we need to bring anything back we can look at
older git revisions.
* There is some legacy viewport code that I could not remove yet, and some
that I probably missed.
* Shader node execution code was left mostly intact, even though it is not
used anywhere now. We may eventually use this to replace the texture
nodes with Cycles / Eevee shader nodes.
* The Cycles Bake panel now includes settings for baking multires normal
and displacement maps. The underlying code needs to be merged properly,
and we plan to add back support for multires AO baking and add support
to Cycles baking for features like vertex color, displacement, and other
missing baking features.
* This commit removes DNA and the Python API for BI material, lamp, world
and scene settings. This breaks a lot of addons.
* There is more DNA that can be removed or renamed, where Cycles or Eevee
are reusing some old BI properties but the names are not really correct
anymore.
* Texture slots for materials, lamps and world were removed. They remain
for brushes, particles and freestyle linestyles.
* 'BLENDER_RENDER' remains in the COMPAT_ENGINES of UI panels. Cycles and
other renderers use this to find all panels to show, minus a few panels
that they have their own replacement for.
2018-04-19 17:34:44 +02:00
|
|
|
/* draw dashed outer circle for shadow */
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_circle_shadow, ob->obmat[3], color);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* Distance */
|
2018-11-14 11:44:05 +01:00
|
|
|
if (ELEM(la->type, LA_SUN, LA_AREA)) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_distance, color, &zero, &la->dist, ob->obmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2017-04-03 19:01:10 +02:00
|
|
|
copy_m4_m4(shapemat, ob->obmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
if (la->type == LA_SUN) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_sunrays, ob->obmat[3], color);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
else if (la->type == LA_SPOT) {
|
|
|
|
float size[3], sizemat[4][4];
|
|
|
|
static float one = 1.0f;
|
2019-01-11 17:50:45 -02:00
|
|
|
float cone_inside[4] = {0.0f, 0.0f, 0.0f, 0.5f};
|
|
|
|
float cone_outside[4] = {1.0f, 1.0f, 1.0f, 0.3f};
|
2017-03-08 20:00:09 +01:00
|
|
|
float blend = 1.0f - pow2f(la->spotblend);
|
|
|
|
size[0] = size[1] = sinf(la->spotsize * 0.5f) * la->dist;
|
|
|
|
size[2] = cosf(la->spotsize * 0.5f) * la->dist;
|
|
|
|
|
|
|
|
size_to_mat4(sizemat, size);
|
2017-04-03 19:01:10 +02:00
|
|
|
mul_m4_m4m4(shapemat, ob->obmat, sizemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
size[0] = size[1] = blend; size[2] = 1.0f;
|
|
|
|
size_to_mat4(sizemat, size);
|
|
|
|
translate_m4(sizemat, 0.0f, 0.0f, -1.0f);
|
2017-08-01 13:35:26 +10:00
|
|
|
rotate_m4(sizemat, 'X', (float)(M_PI / 2));
|
2017-04-03 19:01:10 +02:00
|
|
|
mul_m4_m4m4(spotblendmat, shapemat, sizemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
if (la->mode & LA_SQUARE) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_pyramid, color, &one, shapemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* hide line if it is zero size or overlaps with outer border,
|
|
|
|
* previously it adjusted to always to show it but that seems
|
|
|
|
* confusing because it doesn't show the actual blend size */
|
|
|
|
if (blend != 0.0f && blend != 1.0f) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_blend_rect, color, &one, spotblendmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2018-08-22 18:44:24 +02:00
|
|
|
|
|
|
|
if (la->mode & LA_SHOW_CONE) {
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_volume_rect, cone_inside, &one, shapemat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_volume_rect_outside, cone_outside, &one, shapemat);
|
2018-08-22 18:44:24 +02:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
else {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_cone, color, shapemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* hide line if it is zero size or overlaps with outer border,
|
|
|
|
* previously it adjusted to always to show it but that seems
|
|
|
|
* confusing because it doesn't show the actual blend size */
|
|
|
|
if (blend != 0.0f && blend != 1.0f) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_blend, color, &one, spotblendmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2018-08-22 18:44:24 +02:00
|
|
|
|
|
|
|
if (la->mode & LA_SHOW_CONE) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_volume, cone_inside, &one, shapemat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_spot_volume_outside, cone_outside, &one, shapemat);
|
2018-08-22 18:44:24 +02:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_buflimit, color, &la->clipsta, &la->clipend, ob->obmat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_buflimit_points, color, &la->clipsta, &la->clipend, ob->obmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
else if (la->type == LA_AREA) {
|
|
|
|
float size[3] = {1.0f, 1.0f, 1.0f}, sizemat[4][4];
|
|
|
|
|
Cycles/Eevee: Implement disk and ellipse shapes for area lamps
The implementation is pretty straightforward.
In Cycles, sampling the shapes is currently done w.r.t. area instead of solid angle.
There is a paper on solid angle sampling for disks [1], but the described algorithm is based on
simply sampling the enclosing square and rejecting samples outside of the disk, which is not exactly
great for Cycles' RNG (we'd need to setup a LCG for the repeated sampling) and for GPU divergence.
Even worse, the algorithm is only defined for disks. For ellipses, the basic idea still works, but a
way to analytically calculate the solid angle is required. This is technically possible [2], but the
calculation is extremely complex and still requires a lookup table for the Heuman Lambda function.
Therefore, I've decided to not implement that for now, we could still look into it later on.
In Eevee, the code uses the existing ltc_evaluate_disk to implement the lighting calculations.
[1]: "Solid Angle Sampling of Disk and Cylinder Lights"
[2]: "Analytical solution for the solid angle subtended at any point by an ellipse via a point source radiation vector potential"
Reviewers: sergey, brecht, fclem
Differential Revision: https://developer.blender.org/D3171
2018-05-24 03:50:16 +02:00
|
|
|
if (ELEM(la->area_shape, LA_AREA_RECT, LA_AREA_ELLIPSE)) {
|
2017-03-08 20:00:09 +01:00
|
|
|
size[1] = la->area_sizey / la->area_size;
|
|
|
|
size_to_mat4(sizemat, size);
|
2017-04-03 19:01:10 +02:00
|
|
|
mul_m4_m4m4(shapemat, shapemat, sizemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
Cycles/Eevee: Implement disk and ellipse shapes for area lamps
The implementation is pretty straightforward.
In Cycles, sampling the shapes is currently done w.r.t. area instead of solid angle.
There is a paper on solid angle sampling for disks [1], but the described algorithm is based on
simply sampling the enclosing square and rejecting samples outside of the disk, which is not exactly
great for Cycles' RNG (we'd need to setup a LCG for the repeated sampling) and for GPU divergence.
Even worse, the algorithm is only defined for disks. For ellipses, the basic idea still works, but a
way to analytically calculate the solid angle is required. This is technically possible [2], but the
calculation is extremely complex and still requires a lookup table for the Heuman Lambda function.
Therefore, I've decided to not implement that for now, we could still look into it later on.
In Eevee, the code uses the existing ltc_evaluate_disk to implement the lighting calculations.
[1]: "Solid Angle Sampling of Disk and Cylinder Lights"
[2]: "Analytical solution for the solid angle subtended at any point by an ellipse via a point source radiation vector potential"
Reviewers: sergey, brecht, fclem
Differential Revision: https://developer.blender.org/D3171
2018-05-24 03:50:16 +02:00
|
|
|
if (ELEM(la->area_shape, LA_AREA_DISK, LA_AREA_ELLIPSE)) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_area_disk, color, &la->area_size, shapemat);
|
Cycles/Eevee: Implement disk and ellipse shapes for area lamps
The implementation is pretty straightforward.
In Cycles, sampling the shapes is currently done w.r.t. area instead of solid angle.
There is a paper on solid angle sampling for disks [1], but the described algorithm is based on
simply sampling the enclosing square and rejecting samples outside of the disk, which is not exactly
great for Cycles' RNG (we'd need to setup a LCG for the repeated sampling) and for GPU divergence.
Even worse, the algorithm is only defined for disks. For ellipses, the basic idea still works, but a
way to analytically calculate the solid angle is required. This is technically possible [2], but the
calculation is extremely complex and still requires a lookup table for the Heuman Lambda function.
Therefore, I've decided to not implement that for now, we could still look into it later on.
In Eevee, the code uses the existing ltc_evaluate_disk to implement the lighting calculations.
[1]: "Solid Angle Sampling of Disk and Cylinder Lights"
[2]: "Analytical solution for the solid angle subtended at any point by an ellipse via a point source radiation vector potential"
Reviewers: sergey, brecht, fclem
Differential Revision: https://developer.blender.org/D3171
2018-05-24 03:50:16 +02:00
|
|
|
}
|
|
|
|
else {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_area_square, color, &la->area_size, shapemat);
|
Cycles/Eevee: Implement disk and ellipse shapes for area lamps
The implementation is pretty straightforward.
In Cycles, sampling the shapes is currently done w.r.t. area instead of solid angle.
There is a paper on solid angle sampling for disks [1], but the described algorithm is based on
simply sampling the enclosing square and rejecting samples outside of the disk, which is not exactly
great for Cycles' RNG (we'd need to setup a LCG for the repeated sampling) and for GPU divergence.
Even worse, the algorithm is only defined for disks. For ellipses, the basic idea still works, but a
way to analytically calculate the solid angle is required. This is technically possible [2], but the
calculation is extremely complex and still requires a lookup table for the Heuman Lambda function.
Therefore, I've decided to not implement that for now, we could still look into it later on.
In Eevee, the code uses the existing ltc_evaluate_disk to implement the lighting calculations.
[1]: "Solid Angle Sampling of Disk and Cylinder Lights"
[2]: "Analytical solution for the solid angle subtended at any point by an ellipse via a point source radiation vector potential"
Reviewers: sergey, brecht, fclem
Differential Revision: https://developer.blender.org/D3171
2018-05-24 03:50:16 +02:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2018-06-24 14:11:36 +02:00
|
|
|
if (ELEM(la->type, LA_LOCAL, LA_SPOT)) {
|
|
|
|
/* We only want position not scale. */
|
|
|
|
shapemat[0][0] = shapemat[1][1] = shapemat[2][2] = 1.0f;
|
|
|
|
shapemat[0][1] = shapemat[0][2] = 0.0f;
|
|
|
|
shapemat[1][0] = shapemat[1][2] = 0.0f;
|
|
|
|
shapemat[2][0] = shapemat[2][1] = 0.0f;
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_area_sphere, color, &la->area_size, shapemat);
|
2018-06-24 14:11:36 +02:00
|
|
|
}
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
/* Line and point going to the ground */
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_groundline, ob->obmat[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_groundpoint, ob->obmat[3]);
|
2017-02-17 17:29:43 +01:00
|
|
|
}
|
|
|
|
|
2018-08-15 12:22:29 -03:00
|
|
|
static GPUBatch *batch_camera_path_get(
|
|
|
|
ListBase *camera_paths, const MovieTrackingReconstruction *reconstruction)
|
|
|
|
{
|
|
|
|
GPUBatch *geom;
|
|
|
|
static GPUVertFormat format = { 0 };
|
|
|
|
static struct { uint pos; } attr_id;
|
|
|
|
if (format.attr_len == 0) {
|
|
|
|
attr_id.pos = GPU_vertformat_attr_add(&format, "pos", GPU_COMP_F32, 3, GPU_FETCH_FLOAT);
|
|
|
|
}
|
|
|
|
GPUVertBuf *vbo = GPU_vertbuf_create_with_format(&format);
|
|
|
|
GPU_vertbuf_data_alloc(vbo, reconstruction->camnr);
|
|
|
|
|
|
|
|
MovieReconstructedCamera *camera = reconstruction->cameras;
|
|
|
|
for (int a = 0; a < reconstruction->camnr; a++, camera++) {
|
|
|
|
GPU_vertbuf_attr_set(vbo, attr_id.pos, a, camera->mat[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
geom = GPU_batch_create_ex(GPU_PRIM_LINE_STRIP, vbo, NULL, GPU_BATCH_OWNS_VBO);
|
|
|
|
|
|
|
|
/* Store the batch to do cleanup after drawing. */
|
|
|
|
BLI_addtail(camera_paths, BLI_genericNodeN(geom));
|
|
|
|
return geom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void batch_camera_path_free(ListBase *camera_paths)
|
|
|
|
{
|
|
|
|
LinkData *link;
|
|
|
|
while ((link = BLI_pophead(camera_paths))) {
|
|
|
|
GPUBatch *camera_path = link->data;
|
|
|
|
GPU_batch_discard(camera_path);
|
|
|
|
MEM_freeN(link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 18:38:54 -03:00
|
|
|
/**
|
|
|
|
* Draw the stereo 3d support elements (cameras, plane, volume).
|
|
|
|
* They are only visible when not looking through the camera:
|
|
|
|
*/
|
|
|
|
static void camera_view3d_stereoscopy_display_extra(
|
2019-01-11 13:38:18 -02:00
|
|
|
OBJECT_ShadingGroupList *sgl,
|
|
|
|
Scene *scene, ViewLayer *view_layer, View3D *v3d,
|
|
|
|
Object *ob, Camera *cam,
|
|
|
|
const float vec[4][3], float drawsize, const float scale[3])
|
|
|
|
{
|
|
|
|
const bool is_select = DRW_state_is_select();
|
2019-02-11 16:54:23 +11:00
|
|
|
static float drw_tria_dummy[2][2][2] = {{{0}}};
|
2019-01-11 13:38:18 -02:00
|
|
|
const float fac = (cam->stereo.pivot == CAM_S3D_PIVOT_CENTER) ? 2.0f : 1.0f;
|
|
|
|
float origin[2][3] = {{0}};
|
|
|
|
const char *viewnames[2] = {STEREO_LEFT_NAME, STEREO_RIGHT_NAME};
|
|
|
|
|
|
|
|
const bool is_stereo3d_cameras = (v3d->stereo3d_flag & V3D_S3D_DISPCAMERAS) && (scene->r.views_format == SCE_VIEWS_FORMAT_STEREO_3D);
|
|
|
|
const bool is_stereo3d_plane = (v3d->stereo3d_flag & V3D_S3D_DISPPLANE) && (scene->r.views_format == SCE_VIEWS_FORMAT_STEREO_3D);
|
|
|
|
const bool is_stereo3d_volume = (v3d->stereo3d_flag & V3D_S3D_DISPVOLUME);
|
|
|
|
|
|
|
|
float *color;
|
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
|
|
|
|
|
|
|
for (int eye = 0; eye < 2; eye++) {
|
|
|
|
float obmat[4][4];
|
|
|
|
ob = BKE_camera_multiview_render(scene, ob, viewnames[eye]);
|
|
|
|
|
|
|
|
BKE_camera_multiview_model_matrix_scaled(&scene->r, ob, viewnames[eye], obmat);
|
|
|
|
|
2019-02-11 16:54:23 +11:00
|
|
|
copy_v2_v2(cam->runtime.drw_corners[eye][0], vec[0]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[eye][1], vec[1]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[eye][2], vec[2]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[eye][3], vec[3]);
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2019-02-11 16:54:23 +11:00
|
|
|
cam->runtime.drw_depth[eye] = vec[0][2];
|
2019-01-11 13:38:18 -02:00
|
|
|
|
|
|
|
if (cam->stereo.convergence_mode == CAM_S3D_OFFAXIS) {
|
|
|
|
const float shift_x =
|
|
|
|
((BKE_camera_multiview_shift_x(&scene->r, ob, viewnames[eye]) - cam->shiftx) *
|
|
|
|
(drawsize * scale[0] * fac));
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2019-02-11 16:54:23 +11:00
|
|
|
cam->runtime.drw_corners[eye][i][0] += shift_x;
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dummy triangle, draw on top of existent lines so it is invisible. */
|
2019-02-11 16:54:23 +11:00
|
|
|
copy_v2_v2(drw_tria_dummy[eye][0], cam->runtime.drw_corners[eye][0]);
|
|
|
|
copy_v2_v2(drw_tria_dummy[eye][1], cam->runtime.drw_corners[eye][0]);
|
2019-01-11 13:38:18 -02:00
|
|
|
|
|
|
|
if (is_stereo3d_cameras) {
|
|
|
|
DRW_shgroup_call_dynamic_add(
|
2019-02-11 16:54:23 +11:00
|
|
|
sgl->camera_frame, color, cam->runtime.drw_corners[eye],
|
|
|
|
&cam->runtime.drw_depth[eye], cam->runtime.drw_tria, obmat);
|
2019-01-11 13:38:18 -02:00
|
|
|
|
|
|
|
DRW_shgroup_call_dynamic_add(
|
2019-02-11 16:54:23 +11:00
|
|
|
sgl->camera, color, cam->runtime.drw_corners[eye],
|
|
|
|
&cam->runtime.drw_depth[eye], drw_tria_dummy[eye], obmat);
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Connecting line. */
|
|
|
|
mul_m4_v3(obmat, origin[eye]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw connecting lines. */
|
|
|
|
if (is_stereo3d_cameras) {
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, origin[0]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, origin[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw convergence plane. */
|
|
|
|
if (is_stereo3d_plane && !is_select) {
|
|
|
|
float convergence_plane[4][2];
|
2019-03-06 12:39:07 -03:00
|
|
|
const float offset = cam->stereo.convergence_distance / cam->runtime.drw_depth[0];
|
2019-01-11 13:38:18 -02:00
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2019-02-11 16:54:23 +11:00
|
|
|
mid_v2_v2v2(convergence_plane[i], cam->runtime.drw_corners[0][i], cam->runtime.drw_corners[1][i]);
|
2019-01-11 13:38:18 -02:00
|
|
|
mul_v2_fl(convergence_plane[i], offset);
|
|
|
|
}
|
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
/* We are using a -1,1 quad for this shading group, so we need to
|
|
|
|
* scale and transform it to match the convergence plane border. */
|
|
|
|
static float one = 1.0f;
|
|
|
|
float plane_mat[4][4], scale_mat[4][4];
|
|
|
|
float scale_factor[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
float color_plane[2][4] = {{0.0f, 0.0f, 0.0f, v3d->stereo3d_convergence_alpha},
|
|
|
|
{0.0f, 0.0f, 0.0f, 1.0f}};
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
const float height = convergence_plane[1][1] - convergence_plane[0][1];
|
|
|
|
const float width = convergence_plane[2][0] - convergence_plane[0][0];
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
scale_factor[0] = width * 0.5f;
|
|
|
|
scale_factor[1] = height * 0.5f;
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
copy_m4_m4(plane_mat, cam->runtime.drw_normalmat);
|
|
|
|
translate_m4(plane_mat, 0.0f, 0.0f, -cam->stereo.convergence_distance);
|
|
|
|
size_to_mat4(scale_mat, scale_factor);
|
|
|
|
mul_m4_m4_post(plane_mat, scale_mat);
|
|
|
|
translate_m4(plane_mat, 2.0f * cam->shiftx, (width / height) * 2.0f * cam->shifty, 0.0f);
|
2019-01-11 13:38:18 -02:00
|
|
|
|
2019-03-06 12:39:07 -03:00
|
|
|
if (v3d->stereo3d_convergence_alpha > 0.0f) {
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->camera_stereo_plane, color_plane[0], &one, plane_mat);
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
2019-03-06 12:39:07 -03:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->camera_stereo_plane_wires, color_plane[1], &one, plane_mat);
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Draw convergence volume. */
|
|
|
|
if (is_stereo3d_volume && !is_select) {
|
|
|
|
static float one = 1.0f;
|
|
|
|
float color_volume[3][4] = {{0.0f, 1.0f, 1.0f, v3d->stereo3d_volume_alpha},
|
|
|
|
{1.0f, 0.0f, 0.0f, v3d->stereo3d_volume_alpha},
|
2019-03-06 10:07:51 -03:00
|
|
|
{0.0f, 0.0f, 0.0f, 1.0f}};
|
2019-01-11 13:38:18 -02:00
|
|
|
|
|
|
|
for (int eye = 0; eye < 2; eye++) {
|
|
|
|
float winmat[4][4], viewinv[4][4], viewmat[4][4], persmat[4][4], persinv[4][4];
|
|
|
|
ob = BKE_camera_multiview_render(scene, ob, viewnames[eye]);
|
|
|
|
|
|
|
|
BKE_camera_multiview_window_matrix(&scene->r, ob, viewnames[eye], winmat);
|
|
|
|
BKE_camera_multiview_model_matrix(&scene->r, ob, viewnames[eye], viewinv);
|
|
|
|
|
|
|
|
invert_m4_m4(viewmat, viewinv);
|
|
|
|
mul_m4_m4m4(persmat, winmat, viewmat);
|
|
|
|
invert_m4_m4(persinv, persmat);
|
|
|
|
|
2019-03-06 10:07:51 -03:00
|
|
|
if (v3d->stereo3d_volume_alpha > 0.0f) {
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->camera_stereo_volume, color_volume[eye], &one, persinv);
|
|
|
|
}
|
2019-01-11 13:38:18 -02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->camera_stereo_volume_wires, color_volume[2], &one, persinv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-23 12:16:38 +11:00
|
|
|
static void camera_view3d_reconstruction(
|
2019-03-22 17:30:12 -03:00
|
|
|
OBJECT_ShadingGroupList *sgl,
|
|
|
|
Scene *scene,
|
|
|
|
View3D *v3d,
|
|
|
|
const Object *camera_object,
|
|
|
|
Object *ob,
|
2019-03-23 12:16:38 +11:00
|
|
|
const float color[4],
|
2019-03-22 17:30:12 -03:00
|
|
|
const bool is_select)
|
|
|
|
{
|
|
|
|
const DRWContextState *draw_ctx = DRW_context_state_get();
|
|
|
|
Camera *cam = ob->data;
|
|
|
|
|
|
|
|
if ((v3d->flag2 & V3D_SHOW_RECONSTRUCTION) == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MovieClip *clip = BKE_object_movieclip_get(scene, ob, false);
|
|
|
|
if (clip == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
BLI_assert(BLI_listbase_is_empty(&sgl->camera_path));
|
|
|
|
const bool is_solid_bundle = (v3d->bundle_drawtype == OB_EMPTY_SPHERE) &&
|
2019-04-11 18:28:20 +02:00
|
|
|
((v3d->shading.type != OB_SOLID) || !XRAY_FLAG_ENABLED(v3d));
|
2019-03-22 17:30:12 -03:00
|
|
|
|
|
|
|
MovieTracking *tracking = &clip->tracking;
|
|
|
|
/* Index must start in 1, to mimic BKE_tracking_track_get_indexed. */
|
|
|
|
int track_index = 1;
|
|
|
|
|
|
|
|
uchar text_color_selected[4], text_color_unselected[4];
|
|
|
|
float bundle_color_unselected[4], bundle_color_solid[4];
|
|
|
|
|
|
|
|
UI_GetThemeColor4ubv(TH_SELECT, text_color_selected);
|
|
|
|
UI_GetThemeColor4ubv(TH_TEXT, text_color_unselected);
|
|
|
|
UI_GetThemeColor4fv(TH_WIRE, bundle_color_unselected);
|
|
|
|
UI_GetThemeColor4fv(TH_BUNDLE_SOLID, bundle_color_solid);
|
|
|
|
|
|
|
|
float camera_mat[4][4];
|
|
|
|
BKE_tracking_get_camera_object_matrix(scene, ob, camera_mat);
|
|
|
|
|
|
|
|
float bundle_scale_mat[4][4];
|
|
|
|
if (is_solid_bundle) {
|
|
|
|
scale_m4_fl(bundle_scale_mat, v3d->bundle_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (MovieTrackingObject *tracking_object = tracking->objects.first;
|
|
|
|
tracking_object != NULL;
|
|
|
|
tracking_object = tracking_object->next)
|
|
|
|
{
|
|
|
|
float tracking_object_mat[4][4];
|
|
|
|
|
|
|
|
if (tracking_object->flag & TRACKING_OBJECT_CAMERA) {
|
|
|
|
copy_m4_m4(tracking_object_mat, camera_mat);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const int framenr = BKE_movieclip_remap_scene_to_clip_frame(clip, DEG_get_ctime(draw_ctx->depsgraph));
|
|
|
|
float object_mat[4][4];
|
|
|
|
BKE_tracking_camera_get_reconstructed_interpolate(tracking, tracking_object, framenr, object_mat);
|
|
|
|
|
|
|
|
invert_m4(object_mat);
|
|
|
|
mul_m4_m4m4(tracking_object_mat, cam->runtime.drw_normalmat, object_mat);
|
|
|
|
}
|
|
|
|
|
|
|
|
ListBase *tracksbase = BKE_tracking_object_get_tracks(tracking, tracking_object);
|
|
|
|
for (MovieTrackingTrack *track = tracksbase->first; track; track = track->next) {
|
|
|
|
|
|
|
|
if ((track->flag & TRACK_HAS_BUNDLE) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_selected = TRACK_SELECTED(track);
|
|
|
|
|
|
|
|
float bundle_mat[4][4];
|
|
|
|
copy_m4_m4(bundle_mat, tracking_object_mat);
|
|
|
|
translate_m4(bundle_mat, track->bundle_pos[0], track->bundle_pos[1], track->bundle_pos[2]);
|
|
|
|
|
2019-03-23 12:16:38 +11:00
|
|
|
const float *bundle_color;
|
2019-03-22 17:30:12 -03:00
|
|
|
if (track->flag & TRACK_CUSTOMCOLOR) {
|
|
|
|
bundle_color = track->color;
|
|
|
|
}
|
|
|
|
else if (is_solid_bundle) {
|
|
|
|
bundle_color = bundle_color_solid;
|
|
|
|
}
|
|
|
|
else if (is_selected) {
|
|
|
|
bundle_color = color;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bundle_color = bundle_color_unselected;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_select) {
|
|
|
|
DRW_select_load_id(camera_object->select_id | (track_index << 16));
|
|
|
|
track_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_solid_bundle) {
|
|
|
|
|
|
|
|
if (is_selected) {
|
|
|
|
DRW_shgroup_empty_ex(sgl,
|
|
|
|
bundle_mat,
|
|
|
|
&v3d->bundle_size,
|
|
|
|
v3d->bundle_drawtype,
|
|
|
|
color);
|
|
|
|
}
|
|
|
|
|
|
|
|
float bundle_color_v4[4] = {
|
|
|
|
bundle_color[0],
|
|
|
|
bundle_color[1],
|
|
|
|
bundle_color[2],
|
|
|
|
1.0f,
|
|
|
|
};
|
|
|
|
|
|
|
|
mul_m4_m4m4(bundle_mat, bundle_mat, bundle_scale_mat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere_solid,
|
|
|
|
bundle_mat,
|
|
|
|
bundle_color_v4);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DRW_shgroup_empty_ex(sgl,
|
|
|
|
bundle_mat,
|
|
|
|
&v3d->bundle_size,
|
|
|
|
v3d->bundle_drawtype,
|
|
|
|
bundle_color);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((v3d->flag2 & V3D_SHOW_BUNDLENAME) && !is_select) {
|
|
|
|
struct DRWTextStore *dt = DRW_text_cache_ensure();
|
|
|
|
|
|
|
|
DRW_text_cache_add(dt,
|
|
|
|
bundle_mat[3],
|
|
|
|
track->name,
|
|
|
|
strlen(track->name),
|
|
|
|
10, 0,
|
|
|
|
DRW_TEXT_CACHE_GLOBALSPACE | DRW_TEXT_CACHE_STRING_PTR,
|
|
|
|
is_selected ? text_color_selected : text_color_unselected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((v3d->flag2 & V3D_SHOW_CAMERAPATH) && (tracking_object->flag & TRACKING_OBJECT_CAMERA) && !is_select) {
|
|
|
|
MovieTrackingReconstruction *reconstruction;
|
|
|
|
reconstruction = BKE_tracking_object_get_reconstruction(tracking, tracking_object);
|
|
|
|
|
|
|
|
if (reconstruction->camnr) {
|
|
|
|
static float camera_path_color[4];
|
|
|
|
UI_GetThemeColor4fv(TH_CAMERA_PATH, camera_path_color);
|
|
|
|
|
|
|
|
GPUBatch *geom = batch_camera_path_get(&sgl->camera_path, reconstruction);
|
|
|
|
GPUShader *shader = GPU_shader_get_builtin_shader(GPU_SHADER_3D_UNIFORM_COLOR);
|
|
|
|
DRWShadingGroup *shading_group = DRW_shgroup_create(shader, sgl->non_meshes);
|
|
|
|
DRW_shgroup_uniform_vec4(shading_group, "color", camera_path_color, 1);
|
|
|
|
DRW_shgroup_call_add(shading_group, geom, camera_mat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_camera(OBJECT_ShadingGroupList *sgl, Object *ob, ViewLayer *view_layer)
|
2017-02-17 17:29:43 +01:00
|
|
|
{
|
2017-04-26 00:35:08 +10:00
|
|
|
const DRWContextState *draw_ctx = DRW_context_state_get();
|
|
|
|
View3D *v3d = draw_ctx->v3d;
|
|
|
|
Scene *scene = draw_ctx->scene;
|
2018-01-22 00:14:28 +01:00
|
|
|
RegionView3D *rv3d = draw_ctx->rv3d;
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
Camera *cam = ob->data;
|
2018-03-21 16:29:35 +01:00
|
|
|
const Object *camera_object = DEG_get_evaluated_object(draw_ctx->depsgraph, v3d->camera);
|
2019-01-11 13:38:18 -02:00
|
|
|
const bool is_select = DRW_state_is_select();
|
2018-03-21 16:29:35 +01:00
|
|
|
const bool is_active = (ob == camera_object);
|
2018-01-22 00:14:28 +01:00
|
|
|
const bool look_through = (is_active && (rv3d->persp == RV3D_CAMOB));
|
2019-03-22 18:38:54 -03:00
|
|
|
|
2019-01-11 13:38:18 -02:00
|
|
|
const bool is_multiview = (scene->r.scemode & R_MULTIVIEW) != 0;
|
|
|
|
const bool is_stereo3d_view = (scene->r.views_format == SCE_VIEWS_FORMAT_STEREO_3D);
|
2019-03-22 18:38:54 -03:00
|
|
|
const bool is_stereo3d_display_extra = is_active && is_multiview && (!look_through) && ((v3d->stereo3d_flag) != 0);
|
2019-01-11 13:38:18 -02:00
|
|
|
const bool is_stereo3d_cameras = (ob == scene->camera) &&
|
|
|
|
is_multiview &&
|
|
|
|
is_stereo3d_view &&
|
|
|
|
(v3d->stereo3d_flag & V3D_S3D_DISPCAMERAS);
|
|
|
|
const bool is_selection_camera_stereo = is_select &&
|
|
|
|
look_through && is_multiview &&
|
|
|
|
is_stereo3d_view;
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
float *color;
|
2017-11-22 10:52:39 -02:00
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
float vec[4][3], asp[2], shift[2], scale[3], drawsize;
|
|
|
|
|
2019-01-11 13:38:18 -02:00
|
|
|
/* BKE_camera_multiview_model_matrix already accounts for scale, don't do it here. */
|
|
|
|
if (is_selection_camera_stereo) {
|
|
|
|
scale[0] = 1.0f;
|
|
|
|
scale[1] = 1.0f;
|
|
|
|
scale[2] = 1.0f;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
scale[0] = 1.0f / len_v3(ob->obmat[0]);
|
|
|
|
scale[1] = 1.0f / len_v3(ob->obmat[1]);
|
|
|
|
scale[2] = 1.0f / len_v3(ob->obmat[2]);
|
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-03-23 01:13:04 +11:00
|
|
|
BKE_camera_view_frame_ex(scene, cam, cam->drawsize, look_through, scale,
|
2017-03-08 20:00:09 +01:00
|
|
|
asp, shift, &drawsize, vec);
|
|
|
|
|
2018-01-22 00:14:28 +01:00
|
|
|
/* Frame coords */
|
2019-02-11 16:54:23 +11:00
|
|
|
copy_v2_v2(cam->runtime.drw_corners[0][0], vec[0]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[0][1], vec[1]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[0][2], vec[2]);
|
|
|
|
copy_v2_v2(cam->runtime.drw_corners[0][3], vec[3]);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* depth */
|
2019-02-11 16:54:23 +11:00
|
|
|
cam->runtime.drw_depth[0] = vec[0][2];
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
/* tria */
|
2019-02-11 16:54:23 +11:00
|
|
|
cam->runtime.drw_tria[0][0] = shift[0] + ((0.7f * drawsize) * scale[0]);
|
|
|
|
cam->runtime.drw_tria[0][1] = shift[1] + ((drawsize * (asp[1] + 0.1f)) * scale[1]);
|
|
|
|
cam->runtime.drw_tria[1][0] = shift[0];
|
|
|
|
cam->runtime.drw_tria[1][1] = shift[1] + ((1.1f * drawsize * (asp[1] + 0.7f)) * scale[1]);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2019-03-06 09:08:38 -03:00
|
|
|
if (look_through) {
|
2018-01-22 00:14:28 +01:00
|
|
|
/* Only draw the frame. */
|
2019-01-11 13:38:18 -02:00
|
|
|
float mat[4][4];
|
2019-03-22 18:38:54 -03:00
|
|
|
if (is_multiview) {
|
2019-01-11 13:38:18 -02:00
|
|
|
const bool is_left = v3d->multiview_eye == STEREO_LEFT_ID;
|
2019-02-05 18:37:42 -02:00
|
|
|
const char *view_name = is_left ? STEREO_LEFT_NAME : STEREO_RIGHT_NAME;
|
|
|
|
BKE_camera_multiview_model_matrix(&scene->r, ob, view_name, mat);
|
|
|
|
const float shiftx = BKE_camera_multiview_shift_x(&scene->r, ob, view_name);
|
2019-03-22 18:38:54 -03:00
|
|
|
const float delta_shiftx = shiftx - cam->shiftx;
|
|
|
|
const float width = cam->runtime.drw_corners[0][2][0] - cam->runtime.drw_corners[0][0][0];
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
cam->runtime.drw_corners[0][i][0] -= delta_shiftx * width;
|
|
|
|
}
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
copy_m4_m4(mat, ob->obmat);
|
|
|
|
}
|
|
|
|
|
2019-02-05 18:37:42 -02:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2019-02-11 16:54:23 +11:00
|
|
|
sgl->camera_frame, color, cam->runtime.drw_corners[0],
|
|
|
|
&cam->runtime.drw_depth[0], cam->runtime.drw_tria, mat);
|
2018-01-22 00:14:28 +01:00
|
|
|
}
|
2019-03-06 09:08:38 -03:00
|
|
|
else {
|
2019-01-11 13:38:18 -02:00
|
|
|
if (!is_stereo3d_cameras) {
|
|
|
|
DRW_shgroup_call_dynamic_add(
|
2019-02-11 16:54:23 +11:00
|
|
|
sgl->camera, color, cam->runtime.drw_corners[0],
|
|
|
|
&cam->runtime.drw_depth[0], cam->runtime.drw_tria, ob->obmat);
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
2018-01-22 00:14:28 +01:00
|
|
|
|
|
|
|
/* Active cam */
|
|
|
|
if (is_active) {
|
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_tria, color,
|
2019-02-11 16:54:23 +11:00
|
|
|
cam->runtime.drw_corners[0], &cam->runtime.drw_depth[0], cam->runtime.drw_tria, ob->obmat);
|
2018-01-22 00:14:28 +01:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw the rest in normalize object space */
|
2019-02-11 16:54:23 +11:00
|
|
|
normalize_m4_m4(cam->runtime.drw_normalmat, ob->obmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
|
|
|
if (cam->flag & CAM_SHOWLIMITS) {
|
2019-01-29 02:41:16 +01:00
|
|
|
static float col[4] = {0.5f, 0.5f, 0.25f, 1.0f}, col_hi[4] = {1.0f, 1.0f, 0.5f, 1.0f};
|
2017-03-08 20:00:09 +01:00
|
|
|
float sizemat[4][4], size[3] = {1.0f, 1.0f, 0.0f};
|
|
|
|
float focusdist = BKE_camera_object_dof_distance(ob);
|
|
|
|
|
2019-02-11 16:54:23 +11:00
|
|
|
copy_m4_m4(cam->runtime.drw_focusmat, cam->runtime.drw_normalmat);
|
|
|
|
translate_m4(cam->runtime.drw_focusmat, 0.0f, 0.0f, -focusdist);
|
2017-03-08 20:00:09 +01:00
|
|
|
size_to_mat4(sizemat, size);
|
2019-02-11 16:54:23 +11:00
|
|
|
mul_m4_m4m4(cam->runtime.drw_focusmat, cam->runtime.drw_focusmat, sizemat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_focus, (is_active ? col_hi : col),
|
2019-02-11 16:54:23 +11:00
|
|
|
&cam->drawsize, cam->runtime.drw_focusmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_clip, color,
|
2019-02-16 12:21:44 +11:00
|
|
|
&cam->clip_start, &cam->clip_end, cam->runtime.drw_normalmat);
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_clip_points, (is_active ? col_hi : col),
|
2019-02-16 12:21:44 +11:00
|
|
|
&cam->clip_start, &cam->clip_end, cam->runtime.drw_normalmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cam->flag & CAM_SHOWMIST) {
|
|
|
|
World *world = scene->world;
|
|
|
|
|
|
|
|
if (world) {
|
2019-01-29 02:41:16 +01:00
|
|
|
static float col[4] = {0.5f, 0.5f, 0.5f, 1.0f}, col_hi[4] = {1.0f, 1.0f, 1.0f, 1.0f};
|
2017-03-08 20:00:09 +01:00
|
|
|
world->mistend = world->miststa + world->mistdist;
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_mist, color,
|
2019-02-11 16:54:23 +11:00
|
|
|
&world->miststa, &world->mistend, cam->runtime.drw_normalmat);
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(
|
2018-08-16 23:56:33 +02:00
|
|
|
sgl->camera_mist_points, (is_active ? col_hi : col),
|
2019-02-11 16:54:23 +11:00
|
|
|
&world->miststa, &world->mistend, cam->runtime.drw_normalmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-13 11:54:03 -03:00
|
|
|
|
2019-03-22 18:38:54 -03:00
|
|
|
/* Stereo cameras, volumes, plane drawing. */
|
|
|
|
if (is_stereo3d_display_extra) {
|
|
|
|
camera_view3d_stereoscopy_display_extra(sgl, scene, view_layer, v3d, ob, cam, vec, drawsize, scale);
|
2019-01-11 13:38:18 -02:00
|
|
|
}
|
|
|
|
|
2018-08-13 11:54:03 -03:00
|
|
|
/* Motion Tracking. */
|
2019-03-22 17:30:12 -03:00
|
|
|
camera_view3d_reconstruction(sgl, scene, v3d, camera_object, ob, color, is_select);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2018-08-13 11:54:03 -03:00
|
|
|
static void DRW_shgroup_empty_ex(
|
2019-03-23 12:16:38 +11:00
|
|
|
OBJECT_ShadingGroupList *sgl, const float mat[4][4], const float *draw_size, char draw_type, const float color[4])
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2018-08-13 11:54:03 -03:00
|
|
|
switch (draw_type) {
|
2017-03-08 20:00:09 +01:00
|
|
|
case OB_PLAINAXES:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->plain_axes, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_SINGLE_ARROW:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->single_arrow, color, draw_size, mat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->single_arrow_line, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_CUBE:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_CIRCLE:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->circle, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_EMPTY_SPHERE:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_EMPTY_CONE:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cone, color, draw_size, mat);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
|
|
|
case OB_ARROWS:
|
2018-08-17 12:16:50 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->empty_axes, color, draw_size, mat);
|
2018-08-13 11:54:03 -03:00
|
|
|
break;
|
|
|
|
case OB_EMPTY_IMAGE:
|
|
|
|
BLI_assert(!"Should never happen, use DRW_shgroup_empty instead.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
static void DRW_shgroup_empty(
|
|
|
|
OBJECT_Shaders *sh_data, OBJECT_ShadingGroupList *sgl,
|
2019-02-10 11:02:06 +11:00
|
|
|
Object *ob, ViewLayer *view_layer, RegionView3D *rv3d, eGPUShaderConfig sh_cfg)
|
2018-08-13 11:54:03 -03:00
|
|
|
{
|
|
|
|
float *color;
|
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
|
|
|
|
|
|
|
switch (ob->empty_drawtype) {
|
|
|
|
case OB_PLAINAXES:
|
|
|
|
case OB_SINGLE_ARROW:
|
|
|
|
case OB_CUBE:
|
|
|
|
case OB_CIRCLE:
|
|
|
|
case OB_EMPTY_SPHERE:
|
|
|
|
case OB_EMPTY_CONE:
|
|
|
|
case OB_ARROWS:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_empty_ex(sgl, ob->obmat, &ob->empty_drawsize, ob->empty_drawtype, color);
|
2017-03-08 20:00:09 +01:00
|
|
|
break;
|
2017-05-20 22:57:47 +10:00
|
|
|
case OB_EMPTY_IMAGE:
|
2019-02-10 11:02:06 +11:00
|
|
|
DRW_shgroup_empty_image(sh_data, sgl, ob, color, rv3d, sh_cfg);
|
2017-05-20 22:57:47 +10:00
|
|
|
break;
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_forcefield(OBJECT_ShadingGroupList *sgl, Object *ob, ViewLayer *view_layer)
|
2017-04-10 22:22:37 +02:00
|
|
|
{
|
2017-11-22 10:52:39 -02:00
|
|
|
int theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2017-04-10 22:22:37 +02:00
|
|
|
float *color = DRW_color_background_blend_get(theme_id);
|
|
|
|
PartDeflect *pd = ob->pd;
|
|
|
|
Curve *cu = (ob->type == OB_CURVE) ? ob->data : NULL;
|
|
|
|
|
|
|
|
/* TODO Move this to depsgraph */
|
|
|
|
float tmp[3];
|
|
|
|
copy_v3_fl(pd->drawvec1, ob->empty_drawsize);
|
|
|
|
|
|
|
|
switch (pd->forcefield) {
|
|
|
|
case PFIELD_WIND:
|
|
|
|
pd->drawvec1[2] = pd->f_strength;
|
|
|
|
break;
|
|
|
|
case PFIELD_VORTEX:
|
|
|
|
if (pd->f_strength < 0.0f) {
|
|
|
|
pd->drawvec1[1] = -pd->drawvec1[1];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PFIELD_GUIDE:
|
2018-07-30 16:54:40 +02:00
|
|
|
if (cu && (cu->flag & CU_PATH) && ob->runtime.curve_cache->path && ob->runtime.curve_cache->path->data) {
|
2017-04-10 22:22:37 +02:00
|
|
|
where_on_path(ob, 0.0f, pd->drawvec1, tmp, NULL, NULL, NULL);
|
|
|
|
where_on_path(ob, 1.0f, pd->drawvec2, tmp, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pd->falloff == PFIELD_FALL_TUBE) {
|
|
|
|
pd->drawvec_falloff_max[0] = pd->drawvec_falloff_max[1] = (pd->flag & PFIELD_USEMAXR) ? pd->maxrad : 1.0f;
|
|
|
|
pd->drawvec_falloff_max[2] = (pd->flag & PFIELD_USEMAX) ? pd->maxdist : 0.0f;
|
|
|
|
|
|
|
|
pd->drawvec_falloff_min[0] = pd->drawvec_falloff_min[1] = (pd->flag & PFIELD_USEMINR) ? pd->minrad : 1.0f;
|
|
|
|
pd->drawvec_falloff_min[2] = (pd->flag & PFIELD_USEMIN) ? pd->mindist : 0.0f;
|
|
|
|
}
|
|
|
|
else if (pd->falloff == PFIELD_FALL_CONE) {
|
|
|
|
float radius, distance;
|
|
|
|
|
|
|
|
radius = DEG2RADF((pd->flag & PFIELD_USEMAXR) ? pd->maxrad : 1.0f);
|
|
|
|
distance = (pd->flag & PFIELD_USEMAX) ? pd->maxdist : 0.0f;
|
|
|
|
pd->drawvec_falloff_max[0] = pd->drawvec_falloff_max[1] = distance * sinf(radius);
|
|
|
|
pd->drawvec_falloff_max[2] = distance * cosf(radius);
|
|
|
|
|
|
|
|
radius = DEG2RADF((pd->flag & PFIELD_USEMINR) ? pd->minrad : 1.0f);
|
|
|
|
distance = (pd->flag & PFIELD_USEMIN) ? pd->mindist : 0.0f;
|
|
|
|
|
|
|
|
pd->drawvec_falloff_min[0] = pd->drawvec_falloff_min[1] = distance * sinf(radius);
|
|
|
|
pd->drawvec_falloff_min[2] = distance * cosf(radius);
|
|
|
|
}
|
|
|
|
/* End of things that should go to depthgraph */
|
|
|
|
|
|
|
|
switch (pd->forcefield) {
|
|
|
|
case PFIELD_WIND:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_wind, color, &pd->drawvec1, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
break;
|
|
|
|
case PFIELD_FORCE:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_force, color, &pd->drawvec1, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
break;
|
|
|
|
case PFIELD_VORTEX:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_vortex, color, &pd->drawvec1, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
break;
|
|
|
|
case PFIELD_GUIDE:
|
2018-07-30 16:54:40 +02:00
|
|
|
if (cu && (cu->flag & CU_PATH) && ob->runtime.curve_cache->path && ob->runtime.curve_cache->path->data) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_curve_sta, color, &pd->f_strength, ob->obmat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_curve_end, color, &pd->f_strength, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pd->falloff == PFIELD_FALL_SPHERE) {
|
|
|
|
/* as last, guide curve alters it */
|
|
|
|
if ((pd->flag & PFIELD_USEMAX) != 0) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_curve_end, color, &pd->maxdist, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((pd->flag & PFIELD_USEMIN) != 0) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_curve_end, color, &pd->mindist, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (pd->falloff == PFIELD_FALL_TUBE) {
|
|
|
|
if (pd->flag & (PFIELD_USEMAX | PFIELD_USEMAXR)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_tube_limit, color, &pd->drawvec_falloff_max, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pd->flag & (PFIELD_USEMIN | PFIELD_USEMINR)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_tube_limit, color, &pd->drawvec_falloff_min, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (pd->falloff == PFIELD_FALL_CONE) {
|
|
|
|
if (pd->flag & (PFIELD_USEMAX | PFIELD_USEMAXR)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_cone_limit, color, &pd->drawvec_falloff_max, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pd->flag & (PFIELD_USEMIN | PFIELD_USEMINR)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->field_cone_limit, color, &pd->drawvec_falloff_min, ob->obmat);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-16 15:01:44 +02:00
|
|
|
static void DRW_shgroup_volume_extra(
|
2018-08-16 23:56:33 +02:00
|
|
|
OBJECT_ShadingGroupList *sgl,
|
2018-07-16 15:01:44 +02:00
|
|
|
Object *ob, ViewLayer *view_layer, Scene *scene, ModifierData *md)
|
|
|
|
{
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData *)md;
|
|
|
|
SmokeDomainSettings *sds = smd->domain;
|
|
|
|
float *color;
|
|
|
|
float one = 1.0f;
|
|
|
|
|
|
|
|
if (sds == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
|
|
|
|
|
|
|
/* Small cube showing voxel size. */
|
|
|
|
float voxel_cubemat[4][4] = {{0.0f}};
|
|
|
|
voxel_cubemat[0][0] = 1.0f / (float)sds->res[0];
|
|
|
|
voxel_cubemat[1][1] = 1.0f / (float)sds->res[1];
|
|
|
|
voxel_cubemat[2][2] = 1.0f / (float)sds->res[2];
|
|
|
|
voxel_cubemat[3][0] = voxel_cubemat[3][1] = voxel_cubemat[3][2] = -1.0f;
|
|
|
|
voxel_cubemat[3][3] = 1.0f;
|
|
|
|
translate_m4(voxel_cubemat, 1.0f, 1.0f, 1.0f);
|
|
|
|
mul_m4_m4m4(voxel_cubemat, ob->obmat, voxel_cubemat);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &one, voxel_cubemat);
|
2018-07-16 15:01:44 +02:00
|
|
|
|
|
|
|
/* Don't show smoke before simulation starts, this could be made an option in the future. */
|
|
|
|
if (!sds->draw_velocity || !sds->fluid || CFRA < sds->point_cache[0]->startframe) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool use_needle = (sds->vector_draw_type == VECTOR_DRAW_NEEDLE);
|
|
|
|
int line_count = (use_needle) ? 6 : 1;
|
|
|
|
int slice_axis = -1;
|
|
|
|
line_count *= sds->res[0] * sds->res[1] * sds->res[2];
|
|
|
|
|
|
|
|
if (sds->slice_method == MOD_SMOKE_SLICE_AXIS_ALIGNED &&
|
|
|
|
sds->axis_slice_method == AXIS_SLICE_SINGLE)
|
|
|
|
{
|
|
|
|
float invviewmat[4][4];
|
|
|
|
DRW_viewport_matrix_get(invviewmat, DRW_MAT_VIEWINV);
|
|
|
|
|
|
|
|
const int axis = (sds->slice_axis == SLICE_AXIS_AUTO)
|
|
|
|
? axis_dominant_v3_single(invviewmat[2])
|
|
|
|
: sds->slice_axis - 1;
|
|
|
|
slice_axis = axis;
|
|
|
|
line_count /= sds->res[axis];
|
|
|
|
}
|
|
|
|
|
|
|
|
GPU_create_smoke_velocity(smd);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(volume_velocity_shader_get(use_needle), sgl->non_meshes);
|
2018-07-16 15:01:44 +02:00
|
|
|
DRW_shgroup_uniform_texture(grp, "velocityX", sds->tex_velocity_x);
|
|
|
|
DRW_shgroup_uniform_texture(grp, "velocityY", sds->tex_velocity_y);
|
|
|
|
DRW_shgroup_uniform_texture(grp, "velocityZ", sds->tex_velocity_z);
|
|
|
|
DRW_shgroup_uniform_float_copy(grp, "displaySize", sds->vector_scale);
|
|
|
|
DRW_shgroup_uniform_float_copy(grp, "slicePosition", sds->slice_depth);
|
|
|
|
DRW_shgroup_uniform_int_copy(grp, "sliceAxis", slice_axis);
|
|
|
|
DRW_shgroup_call_procedural_lines_add(grp, line_count, ob->obmat);
|
|
|
|
|
|
|
|
BLI_addtail(&e_data.smoke_domains, BLI_genericNodeN(smd));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void volumes_free_smoke_textures(void)
|
|
|
|
{
|
|
|
|
/* Free Smoke Textures after rendering */
|
|
|
|
/* XXX This is a waste of processing and GPU bandwidth if nothing
|
|
|
|
* is updated. But the problem is since Textures are stored in the
|
|
|
|
* modifier we don't want them to take precious VRAM if the
|
|
|
|
* modifier is not used for display. We should share them for
|
|
|
|
* all viewport in a redraw at least. */
|
|
|
|
for (LinkData *link = e_data.smoke_domains.first; link; link = link->next) {
|
|
|
|
SmokeModifierData *smd = (SmokeModifierData *)link->data;
|
2018-10-08 11:25:24 +02:00
|
|
|
GPU_free_smoke_velocity(smd);
|
2018-07-16 15:01:44 +02:00
|
|
|
}
|
|
|
|
BLI_freelistN(&e_data.smoke_domains);
|
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_speaker(OBJECT_ShadingGroupList *sgl, Object *ob, ViewLayer *view_layer)
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
|
|
|
float *color;
|
|
|
|
static float one = 1.0f;
|
2017-11-22 10:52:39 -02:00
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
2017-03-08 20:00:09 +01:00
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->speaker, color, &one, ob->obmat);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2017-09-30 19:34:23 +02:00
|
|
|
typedef struct OBJECT_LightProbeEngineData {
|
2018-07-10 14:14:55 +02:00
|
|
|
DrawData dd;
|
2018-01-30 13:36:41 +11:00
|
|
|
|
2017-09-30 19:34:23 +02:00
|
|
|
float increment_x[3];
|
|
|
|
float increment_y[3];
|
|
|
|
float increment_z[3];
|
|
|
|
float corner[3];
|
|
|
|
} OBJECT_LightProbeEngineData;
|
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
static void DRW_shgroup_lightprobe(
|
|
|
|
OBJECT_Shaders *sh_data, OBJECT_StorageList *stl, OBJECT_PassList *psl,
|
|
|
|
Object *ob, ViewLayer *view_layer)
|
2017-06-07 16:00:10 +02:00
|
|
|
{
|
|
|
|
float *color;
|
2017-06-17 01:55:49 +02:00
|
|
|
static float one = 1.0f;
|
2017-06-12 20:59:54 +10:00
|
|
|
LightProbe *prb = (LightProbe *)ob->data;
|
2017-09-30 19:34:23 +02:00
|
|
|
bool do_outlines = ((ob->base_flag & BASE_SELECTED) != 0);
|
2018-04-17 13:01:01 +02:00
|
|
|
int theme_id = DRW_object_wire_theme_get(ob, view_layer, &color);
|
2017-06-07 16:00:10 +02:00
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
OBJECT_ShadingGroupList *sgl = (ob->dtx & OB_DRAWXRAY) ? &stl->g_data->sgl_ghost : &stl->g_data->sgl;
|
|
|
|
|
2019-01-04 19:08:09 +11:00
|
|
|
OBJECT_LightProbeEngineData *prb_data = (OBJECT_LightProbeEngineData *)DRW_drawdata_ensure(
|
|
|
|
&ob->id,
|
|
|
|
&draw_engine_object_type,
|
|
|
|
sizeof(OBJECT_LightProbeEngineData),
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2017-09-30 19:34:23 +02:00
|
|
|
|
|
|
|
if ((DRW_state_is_select() || do_outlines) && ((prb->flag & LIGHTPROBE_FLAG_SHOW_DATA) != 0)) {
|
2019-01-10 18:04:27 +11:00
|
|
|
int *call_id = shgroup_theme_id_to_probe_outline_counter(stl, theme_id, ob->base_flag);
|
2017-09-30 19:34:23 +02:00
|
|
|
|
|
|
|
if (prb->type == LIGHTPROBE_TYPE_GRID) {
|
|
|
|
/* Update transforms */
|
|
|
|
float cell_dim[3], half_cell_dim[3];
|
|
|
|
cell_dim[0] = 2.0f / (float)(prb->grid_resolution_x);
|
|
|
|
cell_dim[1] = 2.0f / (float)(prb->grid_resolution_y);
|
|
|
|
cell_dim[2] = 2.0f / (float)(prb->grid_resolution_z);
|
|
|
|
|
|
|
|
mul_v3_v3fl(half_cell_dim, cell_dim, 0.5f);
|
|
|
|
|
|
|
|
/* First cell. */
|
|
|
|
copy_v3_fl(prb_data->corner, -1.0f);
|
|
|
|
add_v3_v3(prb_data->corner, half_cell_dim);
|
|
|
|
mul_m4_v3(ob->obmat, prb_data->corner);
|
|
|
|
|
|
|
|
/* Opposite neighbor cell. */
|
|
|
|
copy_v3_fl3(prb_data->increment_x, cell_dim[0], 0.0f, 0.0f);
|
|
|
|
add_v3_v3(prb_data->increment_x, half_cell_dim);
|
|
|
|
add_v3_fl(prb_data->increment_x, -1.0f);
|
|
|
|
mul_m4_v3(ob->obmat, prb_data->increment_x);
|
|
|
|
sub_v3_v3(prb_data->increment_x, prb_data->corner);
|
|
|
|
|
|
|
|
copy_v3_fl3(prb_data->increment_y, 0.0f, cell_dim[1], 0.0f);
|
|
|
|
add_v3_v3(prb_data->increment_y, half_cell_dim);
|
|
|
|
add_v3_fl(prb_data->increment_y, -1.0f);
|
|
|
|
mul_m4_v3(ob->obmat, prb_data->increment_y);
|
|
|
|
sub_v3_v3(prb_data->increment_y, prb_data->corner);
|
|
|
|
|
|
|
|
copy_v3_fl3(prb_data->increment_z, 0.0f, 0.0f, cell_dim[2]);
|
|
|
|
add_v3_v3(prb_data->increment_z, half_cell_dim);
|
|
|
|
add_v3_fl(prb_data->increment_z, -1.0f);
|
|
|
|
mul_m4_v3(ob->obmat, prb_data->increment_z);
|
|
|
|
sub_v3_v3(prb_data->increment_z, prb_data->corner);
|
|
|
|
|
2018-09-05 19:32:12 +02:00
|
|
|
uint cell_count = prb->grid_resolution_x * prb->grid_resolution_y * prb->grid_resolution_z;
|
2019-01-23 12:37:12 +11:00
|
|
|
DRWShadingGroup *grp = DRW_shgroup_create(sh_data->lightprobe_grid, psl->lightprobes);
|
2018-04-17 13:01:01 +02:00
|
|
|
DRW_shgroup_uniform_int_copy(grp, "call_id", *call_id);
|
|
|
|
DRW_shgroup_uniform_int(grp, "baseId", call_id, 1); /* that's correct */
|
2017-09-30 19:34:23 +02:00
|
|
|
DRW_shgroup_uniform_vec3(grp, "corner", prb_data->corner, 1);
|
|
|
|
DRW_shgroup_uniform_vec3(grp, "increment_x", prb_data->increment_x, 1);
|
|
|
|
DRW_shgroup_uniform_vec3(grp, "increment_y", prb_data->increment_y, 1);
|
|
|
|
DRW_shgroup_uniform_vec3(grp, "increment_z", prb_data->increment_z, 1);
|
|
|
|
DRW_shgroup_uniform_ivec3(grp, "grid_resolution", &prb->grid_resolution_x, 1);
|
2018-09-05 19:32:12 +02:00
|
|
|
DRW_shgroup_call_procedural_points_add(grp, cell_count, NULL);
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
|
|
|
else if (prb->type == LIGHTPROBE_TYPE_CUBE) {
|
2018-09-05 19:32:12 +02:00
|
|
|
float draw_size = 1.0f;
|
|
|
|
float probe_cube_mat[4][4];
|
2018-07-20 22:22:30 +02:00
|
|
|
// prb_data->draw_size = prb->data_draw_size * 0.1f;
|
|
|
|
// unit_m4(prb_data->probe_cube_mat);
|
|
|
|
// copy_v3_v3(prb_data->probe_cube_mat[3], ob->obmat[3]);
|
2018-04-17 13:01:01 +02:00
|
|
|
|
2019-01-10 18:04:27 +11:00
|
|
|
DRWShadingGroup *grp = shgroup_theme_id_to_probe_cube_outline_shgrp(stl, theme_id, ob->base_flag);
|
2018-07-10 14:46:36 +02:00
|
|
|
/* TODO remove or change the drawing of the cube probes. Theses line draws nothing on purpose
|
|
|
|
* to keep the call ids correct. */
|
2018-09-05 19:32:12 +02:00
|
|
|
zero_m4(probe_cube_mat);
|
|
|
|
DRW_shgroup_call_dynamic_add(grp, call_id, &draw_size, probe_cube_mat);
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-09-05 19:32:12 +02:00
|
|
|
float draw_size = 1.0f;
|
2018-04-17 13:01:01 +02:00
|
|
|
DRWShadingGroup *grp = shgroup_theme_id_to_probe_planar_outline_shgrp(stl, theme_id);
|
2018-09-05 19:32:12 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(grp, call_id, &draw_size, ob->obmat);
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
2018-04-17 13:01:01 +02:00
|
|
|
|
|
|
|
*call_id += 1;
|
2017-09-30 19:34:23 +02:00
|
|
|
}
|
|
|
|
|
2017-06-27 14:59:53 +02:00
|
|
|
switch (prb->type) {
|
|
|
|
case LIGHTPROBE_TYPE_PLANAR:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->probe_planar, ob->obmat[3], color);
|
2017-06-27 14:59:53 +02:00
|
|
|
break;
|
|
|
|
case LIGHTPROBE_TYPE_GRID:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->probe_grid, ob->obmat[3], color);
|
2017-06-27 14:59:53 +02:00
|
|
|
break;
|
|
|
|
case LIGHTPROBE_TYPE_CUBE:
|
|
|
|
default:
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->probe_cube, ob->obmat[3], color);
|
2017-06-27 14:59:53 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-06-09 01:14:39 +02:00
|
|
|
|
2017-09-30 19:34:23 +02:00
|
|
|
|
2017-06-17 01:55:49 +02:00
|
|
|
|
|
|
|
if (prb->type == LIGHTPROBE_TYPE_PLANAR) {
|
2018-09-05 19:32:12 +02:00
|
|
|
float mat[4][4];
|
2017-06-17 01:55:49 +02:00
|
|
|
copy_m4_m4(mat, ob->obmat);
|
|
|
|
normalize_m4(mat);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->single_arrow, color, &ob->empty_drawsize, mat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->single_arrow_line, color, &ob->empty_drawsize, mat);
|
2017-06-17 01:55:49 +02:00
|
|
|
|
|
|
|
copy_m4_m4(mat, ob->obmat);
|
|
|
|
zero_v3(mat[2]);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &one, mat);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
if ((prb->flag & LIGHTPROBE_FLAG_SHOW_INFLUENCE) != 0) {
|
2017-06-15 00:23:37 +02:00
|
|
|
|
|
|
|
prb->distfalloff = (1.0f - prb->falloff) * prb->distinf;
|
|
|
|
prb->distgridinf = prb->distinf;
|
|
|
|
|
2017-06-14 13:45:54 +02:00
|
|
|
if (prb->type == LIGHTPROBE_TYPE_GRID) {
|
2017-06-15 00:23:37 +02:00
|
|
|
prb->distfalloff += 1.0f;
|
|
|
|
prb->distgridinf += 1.0f;
|
2017-06-14 13:45:54 +02:00
|
|
|
}
|
2017-06-15 00:23:37 +02:00
|
|
|
|
|
|
|
if (prb->type == LIGHTPROBE_TYPE_GRID ||
|
2017-10-07 15:57:14 +11:00
|
|
|
prb->attenuation_type == LIGHTPROBE_SHAPE_BOX)
|
2017-06-15 00:23:37 +02:00
|
|
|
{
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &prb->distgridinf, ob->obmat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &prb->distfalloff, ob->obmat);
|
2017-06-09 23:21:55 +02:00
|
|
|
}
|
2017-06-17 01:55:49 +02:00
|
|
|
else if (prb->type == LIGHTPROBE_TYPE_PLANAR) {
|
2018-09-05 19:32:12 +02:00
|
|
|
float rangemat[4][4];
|
2017-06-17 01:55:49 +02:00
|
|
|
copy_m4_m4(rangemat, ob->obmat);
|
|
|
|
normalize_v3(rangemat[2]);
|
|
|
|
mul_v3_fl(rangemat[2], prb->distinf);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &one, rangemat);
|
2017-06-17 01:55:49 +02:00
|
|
|
|
|
|
|
copy_m4_m4(rangemat, ob->obmat);
|
|
|
|
normalize_v3(rangemat[2]);
|
|
|
|
mul_v3_fl(rangemat[2], prb->distfalloff);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &one, rangemat);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
2017-06-09 23:21:55 +02:00
|
|
|
else {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere, color, &prb->distgridinf, ob->obmat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere, color, &prb->distfalloff, ob->obmat);
|
2017-06-09 23:21:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
if ((prb->flag & LIGHTPROBE_FLAG_SHOW_PARALLAX) != 0) {
|
2017-06-17 01:55:49 +02:00
|
|
|
if (prb->type != LIGHTPROBE_TYPE_PLANAR) {
|
|
|
|
float (*obmat)[4], *dist;
|
2017-06-10 00:36:33 +02:00
|
|
|
|
2017-06-17 01:55:49 +02:00
|
|
|
if ((prb->flag & LIGHTPROBE_FLAG_CUSTOM_PARALLAX) != 0) {
|
|
|
|
dist = &prb->distpar;
|
|
|
|
/* TODO object parallax */
|
|
|
|
obmat = ob->obmat;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dist = &prb->distinf;
|
|
|
|
obmat = ob->obmat;
|
|
|
|
}
|
2017-06-09 23:21:55 +02:00
|
|
|
|
2017-06-17 01:55:49 +02:00
|
|
|
if (prb->parallax_type == LIGHTPROBE_SHAPE_BOX) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, dist, obmat);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere, color, dist, obmat);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
2017-06-09 23:21:55 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-09 01:14:39 +02:00
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
if ((prb->flag & LIGHTPROBE_FLAG_SHOW_CLIP_DIST) != 0) {
|
2017-06-17 01:55:49 +02:00
|
|
|
if (prb->type != LIGHTPROBE_TYPE_PLANAR) {
|
|
|
|
static const float cubefacemat[6][4][4] = {
|
|
|
|
{{0.0, 0.0, -1.0, 0.0}, {0.0, -1.0, 0.0, 0.0}, {-1.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
{{0.0, 0.0, 1.0, 0.0}, {0.0, -1.0, 0.0, 0.0}, {1.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
{{1.0, 0.0, 0.0, 0.0}, {0.0, 0.0, -1.0, 0.0}, {0.0, 1.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
{{1.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 1.0, 0.0}, {0.0, -1.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
{{1.0, 0.0, 0.0, 0.0}, {0.0, -1.0, 0.0, 0.0}, {0.0, 0.0, -1.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
{{-1.0, 0.0, 0.0, 0.0}, {0.0, -1.0, 0.0, 0.0}, {0.0, 0.0, 1.0, 0.0}, {0.0, 0.0, 0.0, 1.0}},
|
|
|
|
};
|
2017-06-14 19:35:31 +02:00
|
|
|
|
2017-06-17 01:55:49 +02:00
|
|
|
for (int i = 0; i < 6; ++i) {
|
2018-09-05 19:32:12 +02:00
|
|
|
float clipmat[4][4];
|
2017-06-17 01:55:49 +02:00
|
|
|
normalize_m4_m4(clipmat, ob->obmat);
|
|
|
|
mul_m4_m4m4(clipmat, clipmat, cubefacemat[i]);
|
2017-06-10 00:36:33 +02:00
|
|
|
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_buflimit, color, &prb->clipsta, &prb->clipend, clipmat);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_buflimit_points, color, &prb->clipsta, &prb->clipend, clipmat);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
2017-06-10 00:36:33 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-09 01:14:39 +02:00
|
|
|
|
|
|
|
/* Line and point going to the ground */
|
2017-06-17 01:55:49 +02:00
|
|
|
if (prb->type == LIGHTPROBE_TYPE_CUBE) {
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_groundline, ob->obmat[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->light_groundpoint, ob->obmat[3]);
|
2017-06-17 01:55:49 +02:00
|
|
|
}
|
2017-06-07 16:00:10 +02:00
|
|
|
}
|
|
|
|
|
2018-08-20 14:01:46 -03:00
|
|
|
static void DRW_shgroup_relationship_lines(
|
|
|
|
OBJECT_ShadingGroupList *sgl,
|
|
|
|
Depsgraph *depsgraph,
|
|
|
|
Scene *scene,
|
|
|
|
Object *ob)
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2018-12-18 18:18:00 +01:00
|
|
|
if (ob->parent && (DRW_object_visibility_in_active_context(ob->parent) & OB_VISIBLE_SELF)) {
|
2019-02-19 11:37:27 +11:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, ob->runtime.parent_display_origin);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, ob->obmat[3]);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2018-06-28 15:20:55 +02:00
|
|
|
|
|
|
|
if (ob->rigidbody_constraint) {
|
|
|
|
Object *rbc_ob1 = ob->rigidbody_constraint->ob1;
|
|
|
|
Object *rbc_ob2 = ob->rigidbody_constraint->ob2;
|
2018-12-18 18:18:00 +01:00
|
|
|
if (rbc_ob1 && (DRW_object_visibility_in_active_context(rbc_ob1) & OB_VISIBLE_SELF)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, rbc_ob1->obmat[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, ob->obmat[3]);
|
2018-06-28 15:20:55 +02:00
|
|
|
}
|
2018-12-18 18:18:00 +01:00
|
|
|
if (rbc_ob2 && (DRW_object_visibility_in_active_context(rbc_ob2) & OB_VISIBLE_SELF)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, rbc_ob2->obmat[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->relationship_lines, ob->obmat[3]);
|
2018-06-28 15:20:55 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-20 14:01:46 -03:00
|
|
|
|
|
|
|
/* Drawing the constraint lines */
|
|
|
|
if (!BLI_listbase_is_empty(&ob->constraints)) {
|
|
|
|
bConstraint *curcon;
|
|
|
|
bConstraintOb *cob;
|
|
|
|
ListBase *list = &ob->constraints;
|
|
|
|
|
|
|
|
cob = BKE_constraints_make_evalob(depsgraph, scene, ob, NULL, CONSTRAINT_OBTYPE_OBJECT);
|
|
|
|
|
|
|
|
for (curcon = list->first; curcon; curcon = curcon->next) {
|
|
|
|
if (ELEM(curcon->type, CONSTRAINT_TYPE_FOLLOWTRACK, CONSTRAINT_TYPE_OBJECTSOLVER)) {
|
|
|
|
/* special case for object solver and follow track constraints because they don't fill
|
|
|
|
* constraint targets properly (design limitation -- scene is needed for their target
|
|
|
|
* but it can't be accessed from get_targets callback) */
|
|
|
|
|
|
|
|
Object *camob = NULL;
|
|
|
|
|
|
|
|
if (curcon->type == CONSTRAINT_TYPE_FOLLOWTRACK) {
|
|
|
|
bFollowTrackConstraint *data = (bFollowTrackConstraint *)curcon->data;
|
|
|
|
|
|
|
|
camob = data->camera ? data->camera : scene->camera;
|
|
|
|
}
|
|
|
|
else if (curcon->type == CONSTRAINT_TYPE_OBJECTSOLVER) {
|
|
|
|
bObjectSolverConstraint *data = (bObjectSolverConstraint *)curcon->data;
|
|
|
|
|
|
|
|
camob = data->camera ? data->camera : scene->camera;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (camob) {
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->constraint_lines, camob->obmat[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->constraint_lines, ob->obmat[3]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const bConstraintTypeInfo *cti = BKE_constraint_typeinfo_get(curcon);
|
|
|
|
|
|
|
|
if ((cti && cti->get_constraint_targets) && (curcon->flag & CONSTRAINT_EXPAND)) {
|
|
|
|
ListBase targets = {NULL, NULL};
|
|
|
|
bConstraintTarget *ct;
|
|
|
|
|
|
|
|
cti->get_constraint_targets(curcon, &targets);
|
|
|
|
|
|
|
|
for (ct = targets.first; ct; ct = ct->next) {
|
|
|
|
/* calculate target's matrix */
|
|
|
|
if (cti->get_target_matrix) {
|
|
|
|
cti->get_target_matrix(depsgraph,
|
|
|
|
curcon,
|
|
|
|
cob,
|
|
|
|
ct,
|
|
|
|
DEG_get_ctime(depsgraph));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
unit_m4(ct->matrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->constraint_lines, ct->matrix[3]);
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->constraint_lines, ob->obmat[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cti->flush_constraint_targets) {
|
|
|
|
cti->flush_constraint_targets(curcon, &targets, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BKE_constraints_clear_evalob(cob);
|
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2017-11-22 10:52:39 -02:00
|
|
|
static void DRW_shgroup_object_center(OBJECT_StorageList *stl, Object *ob, ViewLayer *view_layer, View3D *v3d)
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2018-07-11 18:51:04 +02:00
|
|
|
if (v3d->overlay.flag & V3D_OVERLAY_HIDE_OBJECT_ORIGINS) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-06 18:02:46 +01:00
|
|
|
const bool is_library = ob->id.us > 1 || ID_IS_LINKED(ob);
|
2017-04-11 14:05:39 +10:00
|
|
|
DRWShadingGroup *shgroup;
|
|
|
|
|
2018-08-08 16:02:45 +10:00
|
|
|
if (ob == OBACT(view_layer)) {
|
2017-06-06 11:45:29 +02:00
|
|
|
shgroup = stl->g_data->center_active;
|
|
|
|
}
|
|
|
|
else if (ob->base_flag & BASE_SELECTED) {
|
2017-04-11 14:05:39 +10:00
|
|
|
if (is_library) {
|
|
|
|
shgroup = stl->g_data->center_selected_lib;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
shgroup = stl->g_data->center_selected;
|
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2017-06-06 11:45:29 +02:00
|
|
|
else if (v3d->flag & V3D_DRAW_CENTERS) {
|
2017-04-11 14:05:39 +10:00
|
|
|
if (is_library) {
|
|
|
|
shgroup = stl->g_data->center_deselected_lib;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
shgroup = stl->g_data->center_deselected;
|
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2017-06-06 11:45:29 +02:00
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
2017-04-11 14:05:39 +10:00
|
|
|
|
2017-04-22 15:53:11 +10:00
|
|
|
DRW_shgroup_call_dynamic_add(shgroup, ob->obmat[3]);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_texture_space(OBJECT_ShadingGroupList *sgl, Object *ob, int theme_id)
|
2018-05-30 14:27:28 +02:00
|
|
|
{
|
|
|
|
if (ob->data == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ID *ob_data = ob->data;
|
|
|
|
float *texcoloc = NULL;
|
|
|
|
float *texcosize = NULL;
|
2018-11-25 18:36:43 +01:00
|
|
|
|
|
|
|
switch (GS(ob_data->name)) {
|
|
|
|
case ID_ME:
|
|
|
|
BKE_mesh_texspace_get_reference((Mesh *)ob_data, NULL, &texcoloc, NULL, &texcosize);
|
|
|
|
break;
|
|
|
|
case ID_CU:
|
|
|
|
{
|
|
|
|
Curve *cu = (Curve *)ob_data;
|
|
|
|
if (cu->bb == NULL || (cu->bb->flag & BOUNDBOX_DIRTY)) {
|
|
|
|
BKE_curve_texspace_calc(cu);
|
2018-05-30 14:27:28 +02:00
|
|
|
}
|
2018-11-25 18:36:43 +01:00
|
|
|
texcoloc = cu->loc;
|
|
|
|
texcosize = cu->size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ID_MB:
|
|
|
|
{
|
|
|
|
MetaBall *mb = (MetaBall *)ob_data;
|
|
|
|
texcoloc = mb->loc;
|
|
|
|
texcosize = mb->size;
|
|
|
|
break;
|
2018-05-30 14:27:28 +02:00
|
|
|
}
|
2018-11-25 18:36:43 +01:00
|
|
|
default:
|
|
|
|
BLI_assert(0);
|
2018-05-30 14:27:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
float tmp[4][4] = {{0.0f}}, one = 1.0f;
|
|
|
|
tmp[0][0] = texcosize[0];
|
|
|
|
tmp[1][1] = texcosize[1];
|
|
|
|
tmp[2][2] = texcosize[2];
|
|
|
|
tmp[3][0] = texcoloc[0];
|
|
|
|
tmp[3][1] = texcoloc[1];
|
|
|
|
tmp[3][2] = texcoloc[2];
|
|
|
|
tmp[3][3] = 1.0f;
|
|
|
|
|
|
|
|
mul_m4_m4m4(tmp, ob->obmat, tmp);
|
|
|
|
|
|
|
|
float color[4];
|
|
|
|
UI_GetThemeColor4fv(theme_id, color);
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->texspace, color, &one, tmp);
|
2018-05-30 14:27:28 +02:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
static void DRW_shgroup_bounds(OBJECT_ShadingGroupList *sgl, Object *ob, int theme_id)
|
2018-07-17 11:36:07 +02:00
|
|
|
{
|
|
|
|
float color[4], center[3], size[3], tmp[4][4], final_mat[4][4], one = 1.0f;
|
|
|
|
BoundBox bb_local;
|
|
|
|
|
|
|
|
if (ob->type == OB_MBALL && !BKE_mball_is_basis(ob)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
BoundBox *bb = BKE_object_boundbox_get(ob);
|
|
|
|
|
|
|
|
if (!ELEM(ob->type, OB_MESH, OB_CURVE, OB_SURF, OB_FONT,
|
2019-03-11 17:13:30 +01:00
|
|
|
OB_MBALL, OB_ARMATURE, OB_LATTICE, OB_GPENCIL))
|
2018-07-17 11:36:07 +02:00
|
|
|
{
|
|
|
|
const float min[3] = {-1.0f, -1.0f, -1.0f}, max[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
bb = &bb_local;
|
|
|
|
BKE_boundbox_init_from_minmax(bb, min, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
UI_GetThemeColor4fv(theme_id, color);
|
|
|
|
BKE_boundbox_calc_center_aabb(bb, center);
|
|
|
|
BKE_boundbox_calc_size_aabb(bb, size);
|
|
|
|
|
|
|
|
switch (ob->boundtype) {
|
|
|
|
case OB_BOUND_BOX:
|
|
|
|
size_to_mat4(tmp, size);
|
|
|
|
copy_v3_v3(tmp[3], center);
|
|
|
|
mul_m4_m4m4(tmp, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cube, color, &one, tmp);
|
2018-07-17 11:36:07 +02:00
|
|
|
break;
|
|
|
|
case OB_BOUND_SPHERE:
|
|
|
|
size[0] = max_fff(size[0], size[1], size[2]);
|
|
|
|
size[1] = size[2] = size[0];
|
|
|
|
size_to_mat4(tmp, size);
|
|
|
|
copy_v3_v3(tmp[3], center);
|
|
|
|
mul_m4_m4m4(tmp, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->sphere, color, &one, tmp);
|
2018-07-17 11:36:07 +02:00
|
|
|
break;
|
|
|
|
case OB_BOUND_CYLINDER:
|
|
|
|
size[0] = max_ff(size[0], size[1]);
|
|
|
|
size[1] = size[0];
|
|
|
|
size_to_mat4(tmp, size);
|
|
|
|
copy_v3_v3(tmp[3], center);
|
|
|
|
mul_m4_m4m4(tmp, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cylinder, color, &one, tmp);
|
2018-07-17 11:36:07 +02:00
|
|
|
break;
|
|
|
|
case OB_BOUND_CONE:
|
|
|
|
size[0] = max_ff(size[0], size[1]);
|
|
|
|
size[1] = size[0];
|
|
|
|
size_to_mat4(tmp, size);
|
|
|
|
copy_v3_v3(tmp[3], center);
|
|
|
|
/* Cone batch has base at 0 and is pointing towards +Y. */
|
|
|
|
swap_v3_v3(tmp[1], tmp[2]);
|
|
|
|
tmp[3][2] -= size[2];
|
|
|
|
mul_m4_m4m4(tmp, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->cone, color, &one, tmp);
|
2018-07-17 11:36:07 +02:00
|
|
|
break;
|
|
|
|
case OB_BOUND_CAPSULE:
|
|
|
|
size[0] = max_ff(size[0], size[1]);
|
|
|
|
size[1] = size[0];
|
|
|
|
scale_m4_fl(tmp, size[0]);
|
|
|
|
copy_v2_v2(tmp[3], center);
|
|
|
|
tmp[3][2] = center[2] + max_ff(0.0f, size[2] - size[0]);
|
|
|
|
mul_m4_m4m4(final_mat, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->capsule_cap, color, &one, final_mat);
|
2018-07-17 11:36:07 +02:00
|
|
|
negate_v3(tmp[2]);
|
|
|
|
tmp[3][2] = center[2] - max_ff(0.0f, size[2] - size[0]);
|
|
|
|
mul_m4_m4m4(final_mat, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->capsule_cap, color, &one, final_mat);
|
2018-07-17 11:36:07 +02:00
|
|
|
tmp[2][2] = max_ff(0.0f, size[2] * 2.0f - size[0] * 2.0f);
|
|
|
|
mul_m4_m4m4(final_mat, ob->obmat, tmp);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_call_dynamic_add(sgl->capsule_body, color, &one, final_mat);
|
2018-07-17 11:36:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 12:37:12 +11:00
|
|
|
static void OBJECT_cache_populate_particles(
|
|
|
|
OBJECT_Shaders *sh_data,
|
|
|
|
Object *ob,
|
|
|
|
OBJECT_PassList *psl)
|
2017-05-29 15:26:52 +02:00
|
|
|
{
|
|
|
|
for (ParticleSystem *psys = ob->particlesystem.first; psys; psys = psys->next) {
|
2018-10-08 10:43:34 +11:00
|
|
|
if (!DRW_object_is_visible_psys_in_active_context(ob, psys)) {
|
2018-06-07 10:12:47 +02:00
|
|
|
continue;
|
2018-05-15 11:35:39 +02:00
|
|
|
}
|
2017-05-29 15:26:52 +02:00
|
|
|
|
2018-05-15 11:35:39 +02:00
|
|
|
ParticleSettings *part = psys->part;
|
|
|
|
int draw_as = (part->draw_as == PART_DRAW_REND) ? part->ren_as : part->draw_as;
|
2017-05-29 15:26:52 +02:00
|
|
|
|
2018-05-15 11:35:39 +02:00
|
|
|
static float mat[4][4];
|
|
|
|
unit_m4(mat);
|
|
|
|
|
|
|
|
if (draw_as != PART_DRAW_PATH) {
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom = DRW_cache_particles_get_dots(ob, psys);
|
2018-05-15 11:35:39 +02:00
|
|
|
DRWShadingGroup *shgrp = NULL;
|
|
|
|
static int screen_space[2] = {0, 1};
|
|
|
|
static float def_prim_col[3] = {0.5f, 0.5f, 0.5f};
|
|
|
|
static float def_sec_col[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
|
|
|
|
/* Dummy particle format for instancing to work. */
|
2019-01-29 07:46:25 +11:00
|
|
|
DRW_shgroup_instance_format(e_data.particle_format, {{"dummy", DRW_ATTR_FLOAT, 1}});
|
2018-05-15 11:35:39 +02:00
|
|
|
|
|
|
|
Material *ma = give_current_material(ob, part->omat);
|
|
|
|
|
|
|
|
switch (draw_as) {
|
|
|
|
case PART_DRAW_DOT:
|
2019-01-23 12:37:12 +11:00
|
|
|
shgrp = DRW_shgroup_create(sh_data->part_dot, psl->particle);
|
2018-05-15 11:35:39 +02:00
|
|
|
DRW_shgroup_uniform_vec3(shgrp, "color", ma ? &ma->r : def_prim_col, 1);
|
|
|
|
DRW_shgroup_uniform_vec3(shgrp, "outlineColor", ma ? &ma->specr : def_sec_col, 1);
|
|
|
|
DRW_shgroup_uniform_float(shgrp, "pixel_size", DRW_viewport_pixelsize_get(), 1);
|
|
|
|
DRW_shgroup_uniform_float(shgrp, "size", &part->draw_size, 1);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_texture(shgrp, "ramp", G_draw.ramp);
|
2018-05-15 11:35:39 +02:00
|
|
|
DRW_shgroup_call_add(shgrp, geom, mat);
|
|
|
|
break;
|
|
|
|
case PART_DRAW_CROSS:
|
|
|
|
shgrp = DRW_shgroup_instance_create(
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_prim, psl->particle, DRW_cache_particles_get_prim(PART_DRAW_CROSS),
|
2018-05-15 11:35:39 +02:00
|
|
|
e_data.particle_format);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_texture(shgrp, "ramp", G_draw.ramp);
|
2018-05-15 11:35:39 +02:00
|
|
|
DRW_shgroup_uniform_vec3(shgrp, "color", ma ? &ma->r : def_prim_col, 1);
|
|
|
|
DRW_shgroup_uniform_int(shgrp, "screen_space", &screen_space[0], 1);
|
|
|
|
break;
|
|
|
|
case PART_DRAW_CIRC:
|
|
|
|
shgrp = DRW_shgroup_instance_create(
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_prim, psl->particle, DRW_cache_particles_get_prim(PART_DRAW_CIRC),
|
2018-05-15 11:35:39 +02:00
|
|
|
e_data.particle_format);
|
2019-01-22 12:09:27 +11:00
|
|
|
DRW_shgroup_uniform_texture(shgrp, "ramp", G_draw.ramp);
|
2018-05-15 11:35:39 +02:00
|
|
|
DRW_shgroup_uniform_vec3(shgrp, "color", ma ? &ma->r : def_prim_col, 1);
|
|
|
|
DRW_shgroup_uniform_int(shgrp, "screen_space", &screen_space[1], 1);
|
|
|
|
break;
|
|
|
|
case PART_DRAW_AXIS:
|
|
|
|
shgrp = DRW_shgroup_instance_create(
|
2019-01-23 12:37:12 +11:00
|
|
|
sh_data->part_axis, psl->particle, DRW_cache_particles_get_prim(PART_DRAW_AXIS),
|
2018-05-15 11:35:39 +02:00
|
|
|
e_data.particle_format);
|
|
|
|
DRW_shgroup_uniform_int(shgrp, "screen_space", &screen_space[0], 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-05-29 15:26:52 +02:00
|
|
|
|
2018-05-15 11:35:39 +02:00
|
|
|
if (shgrp) {
|
|
|
|
if (draw_as != PART_DRAW_DOT) {
|
|
|
|
DRW_shgroup_uniform_float(shgrp, "draw_size", &part->draw_size, 1);
|
|
|
|
DRW_shgroup_instance_batch(shgrp, geom);
|
2017-05-29 15:26:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 17:42:45 +01:00
|
|
|
static void OBJECT_gpencil_color_names(Object *ob, struct DRWTextStore *dt, uchar color[4])
|
|
|
|
{
|
|
|
|
if (ob->mode != OB_MODE_EDIT_GPENCIL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bGPdata *gpd = (bGPdata *)ob->data;
|
|
|
|
if (gpd == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (bGPDlayer *gpl = gpd->layers.first; gpl; gpl = gpl->next) {
|
|
|
|
if (gpl->flag & GP_LAYER_HIDE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bGPDframe *gpf = gpl->actframe;
|
|
|
|
if (gpf == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (bGPDstroke *gps = gpf->strokes.first; gps; gps = gps->next) {
|
|
|
|
Material *ma = give_current_material(ob, gps->mat_nr + 1);
|
|
|
|
if (ma == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
MaterialGPencilStyle *gp_style = ma->gp_style;
|
|
|
|
/* skip stroke if it doesn't have any valid data */
|
|
|
|
if ((gps->points == NULL) || (gps->totpoints < 1) || (gp_style == NULL)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* check if the color is visible */
|
|
|
|
if (gp_style->flag & GP_STYLE_COLOR_HIDE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only if selected */
|
|
|
|
if (gps->flag & GP_STROKE_SELECT) {
|
|
|
|
float fpt[3];
|
|
|
|
for (int i = 0; i < gps->totpoints; i++) {
|
|
|
|
bGPDspoint *pt = &gps->points[i];
|
|
|
|
if (pt->flag & GP_SPOINT_SELECT) {
|
|
|
|
mul_v3_m4v3(fpt, ob->obmat, &pt->x);
|
|
|
|
DRW_text_cache_add(
|
2019-03-15 08:53:22 +11:00
|
|
|
dt, fpt,
|
|
|
|
ma->id.name + 2, strlen(ma->id.name + 2),
|
|
|
|
10, 0, DRW_TEXT_CACHE_GLOBALSPACE | DRW_TEXT_CACHE_STRING_PTR, color);
|
2019-03-11 17:42:45 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-26 19:10:53 +02:00
|
|
|
static void OBJECT_cache_populate(void *vedata, Object *ob)
|
2017-03-08 20:00:09 +01:00
|
|
|
{
|
2017-04-27 16:57:11 +10:00
|
|
|
OBJECT_PassList *psl = ((OBJECT_Data *)vedata)->psl;
|
2017-03-26 20:13:34 +02:00
|
|
|
OBJECT_StorageList *stl = ((OBJECT_Data *)vedata)->stl;
|
2018-08-16 23:56:33 +02:00
|
|
|
OBJECT_ShadingGroupList *sgl = (ob->dtx & OB_DRAWXRAY) ? &stl->g_data->sgl_ghost : &stl->g_data->sgl;
|
2017-04-26 00:35:08 +10:00
|
|
|
const DRWContextState *draw_ctx = DRW_context_state_get();
|
2018-12-18 21:45:06 +01:00
|
|
|
const bool is_edit_mode = (ob == draw_ctx->object_edit) || BKE_object_is_in_editmode(ob);
|
2017-11-22 10:52:39 -02:00
|
|
|
ViewLayer *view_layer = draw_ctx->view_layer;
|
2018-07-16 15:01:44 +02:00
|
|
|
Scene *scene = draw_ctx->scene;
|
2017-06-06 11:45:29 +02:00
|
|
|
View3D *v3d = draw_ctx->v3d;
|
2018-09-14 18:30:26 +02:00
|
|
|
RegionView3D *rv3d = draw_ctx->rv3d;
|
2018-07-16 15:01:44 +02:00
|
|
|
ModifierData *md = NULL;
|
2017-04-28 04:33:58 +10:00
|
|
|
int theme_id = TH_UNDEFINED;
|
2018-12-18 18:18:00 +01:00
|
|
|
const int ob_visibility = DRW_object_visibility_in_active_context(ob);
|
2019-02-10 11:02:06 +11:00
|
|
|
OBJECT_Shaders *sh_data = &e_data.sh_data[draw_ctx->sh_cfg];
|
2019-01-23 12:37:12 +11:00
|
|
|
|
2017-12-21 13:29:14 -02:00
|
|
|
/* Handle particles first in case the emitter itself shouldn't be rendered. */
|
2018-12-18 18:18:00 +01:00
|
|
|
if (ob_visibility & OB_VISIBLE_PARTICLES) {
|
2019-01-23 12:37:12 +11:00
|
|
|
OBJECT_cache_populate_particles(sh_data, ob, psl);
|
2017-12-21 13:29:14 -02:00
|
|
|
}
|
|
|
|
|
2018-12-18 18:18:00 +01:00
|
|
|
if ((ob_visibility & OB_VISIBLE_SELF) == 0) {
|
2017-12-21 13:29:14 -02:00
|
|
|
return;
|
2018-07-05 20:27:04 +02:00
|
|
|
}
|
|
|
|
|
2019-02-20 08:26:17 +11:00
|
|
|
const bool do_outlines = (
|
|
|
|
(draw_ctx->v3d->flag & V3D_SELECT_OUTLINE) && ((ob->base_flag & BASE_SELECTED) != 0) &&
|
|
|
|
((DRW_object_is_renderable(ob) && (ob->dt > OB_WIRE)) || (ob->dt == OB_WIRE)));
|
2018-08-08 16:02:45 +10:00
|
|
|
const bool show_relations = ((draw_ctx->v3d->flag & V3D_HIDE_HELPLINES) == 0);
|
2019-04-11 14:00:38 +02:00
|
|
|
const bool hide_object_extra = (
|
|
|
|
(v3d->overlay.flag & V3D_OVERLAY_HIDE_OBJECT_XTRAS) != 0 &&
|
|
|
|
/* Show if this is the camera we're looking through
|
|
|
|
* since it's useful for moving the camera. */
|
|
|
|
(((rv3d->persp == RV3D_CAMOB) && ((ID *)v3d->camera == ob->id.orig_id)) == 0));
|
2017-02-17 17:29:43 +01:00
|
|
|
|
2017-04-21 02:18:14 +10:00
|
|
|
if (do_outlines) {
|
2019-01-04 19:08:09 +11:00
|
|
|
if (!BKE_object_is_in_editmode(ob) &&
|
|
|
|
!((ob == draw_ctx->obact) && (draw_ctx->object_mode & OB_MODE_ALL_PAINT)))
|
|
|
|
{
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom;
|
2018-09-14 18:30:26 +02:00
|
|
|
|
|
|
|
/* This fixes only the biggest case which is a plane in ortho view. */
|
|
|
|
int flat_axis = 0;
|
2019-01-04 19:08:09 +11:00
|
|
|
bool is_flat_object_viewed_from_side = (
|
|
|
|
(rv3d->persp == RV3D_ORTHO) &&
|
|
|
|
DRW_object_is_flat(ob, &flat_axis) &&
|
|
|
|
DRW_object_axis_orthogonal_to_view(ob, flat_axis));
|
2018-09-14 18:30:26 +02:00
|
|
|
|
2019-02-22 16:06:13 +01:00
|
|
|
if (stl->g_data->xray_enabled_and_not_wire || is_flat_object_viewed_from_side) {
|
2018-06-10 19:35:25 +02:00
|
|
|
geom = DRW_cache_object_edge_detection_get(ob, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
geom = DRW_cache_object_surface_get(ob);
|
|
|
|
}
|
2018-09-14 18:30:26 +02:00
|
|
|
|
2017-04-21 02:18:14 +10:00
|
|
|
if (geom) {
|
2017-11-22 10:52:39 -02:00
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2019-01-10 18:04:27 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_outline_or_null(stl, theme_id, ob->base_flag);
|
2017-04-21 02:18:14 +10:00
|
|
|
if (shgroup != NULL) {
|
2018-03-01 15:30:48 +01:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-13 21:44:24 +10:00
|
|
|
}
|
2017-04-21 02:18:14 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (ob->type) {
|
|
|
|
case OB_MESH:
|
2017-06-01 02:26:24 +10:00
|
|
|
{
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2018-12-18 21:45:06 +01:00
|
|
|
Mesh *me = ob->data;
|
2019-03-20 22:36:02 +01:00
|
|
|
if (!is_edit_mode && me->totedge == 0) {
|
|
|
|
struct GPUBatch *geom = DRW_cache_mesh_all_verts_get(ob);
|
|
|
|
if (geom) {
|
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2018-02-24 04:45:13 +01:00
|
|
|
}
|
2019-03-20 22:36:02 +01:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_point(sgl, theme_id, ob->base_flag);
|
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2018-06-01 11:35:51 +02:00
|
|
|
}
|
2018-12-18 21:45:06 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
bool has_edit_mesh_cage = false;
|
|
|
|
/* TODO: Should be its own function. */
|
|
|
|
if (is_edit_mode) {
|
2019-02-17 18:05:18 +11:00
|
|
|
BMEditMesh *embm = me->edit_mesh;
|
2018-12-18 21:45:06 +01:00
|
|
|
has_edit_mesh_cage = embm->mesh_eval_cage && (embm->mesh_eval_cage != embm->mesh_eval_final);
|
|
|
|
}
|
2019-03-20 22:36:02 +01:00
|
|
|
if ((!is_edit_mode && me->totedge > 0) || has_edit_mesh_cage) {
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom = DRW_cache_mesh_loose_edges_get(ob);
|
2018-06-01 11:35:51 +02:00
|
|
|
if (geom) {
|
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2017-06-01 02:26:24 +10:00
|
|
|
}
|
2019-01-10 16:51:36 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_wire(sgl, theme_id, ob->base_flag);
|
2018-06-01 11:35:51 +02:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2017-06-01 02:26:24 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-29 15:26:52 +02:00
|
|
|
break;
|
2017-06-01 02:26:24 +10:00
|
|
|
}
|
2017-04-21 02:18:14 +10:00
|
|
|
case OB_SURF:
|
2018-12-14 15:23:13 +01:00
|
|
|
{
|
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
struct GPUBatch *geom = DRW_cache_surf_edge_wire_get(ob);
|
|
|
|
if (geom == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
|
|
|
}
|
2019-01-10 16:51:36 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_wire(sgl, theme_id, ob->base_flag);
|
2018-12-14 15:23:13 +01:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2017-04-21 02:18:14 +10:00
|
|
|
break;
|
2018-12-14 15:23:13 +01:00
|
|
|
}
|
2017-04-13 22:09:59 +10:00
|
|
|
case OB_LATTICE:
|
|
|
|
{
|
2018-12-21 15:43:50 +01:00
|
|
|
if (!is_edit_mode) {
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom = DRW_cache_lattice_wire_get(ob, false);
|
2018-07-05 20:27:04 +02:00
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2018-07-05 15:39:20 +02:00
|
|
|
}
|
2018-07-05 20:27:04 +02:00
|
|
|
|
2019-01-10 16:51:36 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_wire(sgl, theme_id, ob->base_flag);
|
2018-07-05 20:27:04 +02:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2017-04-15 16:46:17 +10:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OB_CURVE:
|
|
|
|
{
|
2018-12-21 15:43:50 +01:00
|
|
|
if (!is_edit_mode) {
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2018-07-18 00:12:21 +02:00
|
|
|
struct GPUBatch *geom = DRW_cache_curve_edge_wire_get(ob);
|
2018-07-05 20:27:04 +02:00
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
2017-04-28 04:33:58 +10:00
|
|
|
}
|
2019-01-10 16:51:36 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_wire(sgl, theme_id, ob->base_flag);
|
2018-07-05 20:27:04 +02:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
2017-04-13 22:09:59 +10:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-11-16 15:12:32 -02:00
|
|
|
case OB_MBALL:
|
|
|
|
{
|
2018-12-21 15:43:50 +01:00
|
|
|
if (!is_edit_mode) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_mball_handles(sgl, ob, view_layer);
|
2017-11-16 15:12:32 -02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-02-17 17:29:43 +01:00
|
|
|
case OB_LAMP:
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2019-02-27 12:02:02 +11:00
|
|
|
DRW_shgroup_light(sgl, ob, view_layer);
|
2017-02-17 17:29:43 +01:00
|
|
|
break;
|
|
|
|
case OB_CAMERA:
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_camera(sgl, ob, view_layer);
|
2017-03-04 00:09:22 +01:00
|
|
|
break;
|
2017-02-17 17:29:43 +01:00
|
|
|
case OB_EMPTY:
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2019-02-10 11:02:06 +11:00
|
|
|
DRW_shgroup_empty(sh_data, sgl, ob, view_layer, rv3d, draw_ctx->sh_cfg);
|
2017-02-17 17:29:43 +01:00
|
|
|
break;
|
|
|
|
case OB_SPEAKER:
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_speaker(sgl, ob, view_layer);
|
2017-02-17 17:29:43 +01:00
|
|
|
break;
|
2017-06-12 20:59:54 +10:00
|
|
|
case OB_LIGHTPROBE:
|
2018-07-10 18:30:45 +02:00
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
2019-01-23 12:37:12 +11:00
|
|
|
DRW_shgroup_lightprobe(sh_data, stl, psl, ob, view_layer);
|
2017-06-07 16:00:10 +02:00
|
|
|
break;
|
2017-02-22 13:00:15 +01:00
|
|
|
case OB_ARMATURE:
|
2017-04-13 21:44:24 +10:00
|
|
|
{
|
2019-03-05 15:09:25 +11:00
|
|
|
if ((v3d->flag2 & V3D_HIDE_OVERLAYS) ||
|
2019-02-26 23:44:05 +01:00
|
|
|
(v3d->overlay.flag & V3D_OVERLAY_HIDE_BONES) ||
|
2019-02-27 17:39:44 +01:00
|
|
|
((ob->dt < OB_WIRE) && !DRW_state_is_select()))
|
2018-12-05 10:56:16 +11:00
|
|
|
{
|
2018-07-10 18:30:45 +02:00
|
|
|
break;
|
|
|
|
}
|
2018-07-05 20:27:04 +02:00
|
|
|
bArmature *arm = ob->data;
|
|
|
|
if (arm->edbo == NULL) {
|
|
|
|
if (DRW_state_is_select() || !DRW_pose_mode_armature(ob, draw_ctx->obact)) {
|
2019-04-11 18:28:20 +02:00
|
|
|
bool is_wire = (v3d->shading.type == OB_WIRE) || (ob->dt <= OB_WIRE) || XRAY_FLAG_ENABLED(v3d);
|
2018-07-05 20:27:04 +02:00
|
|
|
DRWArmaturePasses passes = {
|
2019-02-26 23:44:05 +01:00
|
|
|
.bone_solid = (is_wire) ? NULL : sgl->bone_solid,
|
2018-08-16 23:56:33 +02:00
|
|
|
.bone_outline = sgl->bone_outline,
|
|
|
|
.bone_wire = sgl->bone_wire,
|
|
|
|
.bone_envelope = sgl->bone_envelope,
|
|
|
|
.bone_axes = sgl->bone_axes,
|
2018-07-05 20:27:04 +02:00
|
|
|
.relationship_lines = NULL, /* Don't draw relationship lines */
|
|
|
|
};
|
2019-02-26 23:44:05 +01:00
|
|
|
DRW_shgroup_armature_object(ob, view_layer, passes, is_wire);
|
2017-04-27 16:57:11 +10:00
|
|
|
}
|
2017-03-08 20:00:09 +01:00
|
|
|
}
|
2017-02-22 13:00:15 +01:00
|
|
|
break;
|
2017-04-13 21:44:24 +10:00
|
|
|
}
|
2018-12-19 15:53:29 +01:00
|
|
|
case OB_FONT:
|
|
|
|
{
|
|
|
|
if (hide_object_extra) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Curve *cu = (Curve *)ob->data;
|
|
|
|
bool has_surface = (cu->flag & (CU_FRONT | CU_BACK)) || cu->ext1 != 0.0f || cu->ext2 != 0.0f;
|
|
|
|
if (!has_surface) {
|
|
|
|
struct GPUBatch *geom = DRW_cache_text_edge_wire_get(ob);
|
|
|
|
if (geom) {
|
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
|
|
|
}
|
2019-01-10 16:51:36 +11:00
|
|
|
DRWShadingGroup *shgroup = shgroup_theme_id_to_wire(sgl, theme_id, ob->base_flag);
|
2018-12-19 15:53:29 +01:00
|
|
|
DRW_shgroup_call_object_add(shgroup, geom, ob);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-02-17 17:29:43 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-07-05 20:27:04 +02:00
|
|
|
if (ob->pd && ob->pd->forcefield) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_forcefield(sgl, ob, view_layer);
|
2017-04-10 22:22:37 +02:00
|
|
|
}
|
|
|
|
|
2019-03-11 14:16:51 +01:00
|
|
|
if ((ob->dt == OB_BOUNDBOX) &&
|
|
|
|
!ELEM(ob->type, OB_LAMP, OB_CAMERA, OB_EMPTY, OB_SPEAKER, OB_LIGHTPROBE))
|
|
|
|
{
|
2018-10-17 18:08:00 +02:00
|
|
|
if (theme_id == TH_UNDEFINED) {
|
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
|
|
|
}
|
|
|
|
DRW_shgroup_bounds(sgl, ob, theme_id);
|
|
|
|
}
|
|
|
|
|
2017-04-28 23:52:02 +10:00
|
|
|
/* don't show object extras in set's */
|
2019-01-15 23:27:54 +11:00
|
|
|
if ((ob->base_flag & (BASE_FROM_SET | BASE_FROM_DUPLI)) == 0) {
|
2018-10-04 09:24:35 +10:00
|
|
|
if ((draw_ctx->object_mode & (OB_MODE_ALL_PAINT | OB_MODE_ALL_PAINT_GPENCIL)) == 0) {
|
2018-08-08 16:02:45 +10:00
|
|
|
DRW_shgroup_object_center(stl, ob, view_layer, v3d);
|
|
|
|
}
|
2017-06-06 11:45:29 +02:00
|
|
|
|
2018-08-20 14:20:25 -03:00
|
|
|
if (show_relations && !DRW_state_is_select()) {
|
2018-08-20 14:01:46 -03:00
|
|
|
DRW_shgroup_relationship_lines(sgl, draw_ctx->depsgraph, scene, ob);
|
2018-06-11 02:21:26 +12:00
|
|
|
}
|
2017-04-28 23:52:02 +10:00
|
|
|
|
2018-10-17 18:08:00 +02:00
|
|
|
const bool draw_extra = (ob->dtx != 0);
|
2018-10-16 22:52:00 +02:00
|
|
|
if (draw_extra && (theme_id == TH_UNDEFINED)) {
|
2018-05-30 14:27:28 +02:00
|
|
|
theme_id = DRW_object_wire_theme_get(ob, view_layer, NULL);
|
|
|
|
}
|
|
|
|
|
2017-04-28 23:52:02 +10:00
|
|
|
if ((ob->dtx & OB_DRAWNAME) && DRW_state_show_text()) {
|
|
|
|
struct DRWTextStore *dt = DRW_text_cache_ensure();
|
2017-04-28 04:33:58 +10:00
|
|
|
|
2018-07-08 12:47:13 +02:00
|
|
|
uchar color[4];
|
2017-04-28 23:52:02 +10:00
|
|
|
UI_GetThemeColor4ubv(theme_id, color);
|
2017-04-28 04:33:58 +10:00
|
|
|
|
2017-04-28 23:52:02 +10:00
|
|
|
DRW_text_cache_add(
|
|
|
|
dt, ob->obmat[3],
|
|
|
|
ob->id.name + 2, strlen(ob->id.name + 2),
|
2018-09-24 19:48:08 +02:00
|
|
|
10, 0, DRW_TEXT_CACHE_GLOBALSPACE | DRW_TEXT_CACHE_STRING_PTR, color);
|
2019-03-11 17:42:45 +01:00
|
|
|
|
|
|
|
/* draw grease pencil stroke names */
|
|
|
|
if (ob->type == OB_GPENCIL) {
|
|
|
|
OBJECT_gpencil_color_names(ob, dt, color);
|
|
|
|
}
|
2017-04-28 23:52:02 +10:00
|
|
|
}
|
2018-05-30 14:27:28 +02:00
|
|
|
|
|
|
|
if ((ob->dtx & OB_TEXSPACE) && ELEM(ob->type, OB_MESH, OB_CURVE, OB_MBALL)) {
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_texture_space(sgl, ob, theme_id);
|
2018-05-30 14:27:28 +02:00
|
|
|
}
|
2018-07-17 11:36:07 +02:00
|
|
|
|
2018-10-17 18:08:00 +02:00
|
|
|
/* Don't draw bounding box again if draw type is bound box. */
|
2019-03-11 14:16:51 +01:00
|
|
|
if ((ob->dtx & OB_DRAWBOUNDOX) &&
|
|
|
|
(ob->dt != OB_BOUNDBOX) &&
|
|
|
|
!ELEM(ob->type, OB_LAMP, OB_CAMERA, OB_EMPTY, OB_SPEAKER, OB_LIGHTPROBE))
|
2019-03-11 14:02:58 +01:00
|
|
|
{
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_bounds(sgl, ob, theme_id);
|
2018-07-17 11:36:07 +02:00
|
|
|
}
|
|
|
|
|
2018-08-17 12:17:27 +02:00
|
|
|
if (ob->dtx & OB_AXIS) {
|
|
|
|
float *color, axes_size = 1.0f;
|
|
|
|
DRW_object_wire_theme_get(ob, view_layer, &color);
|
|
|
|
|
|
|
|
DRW_shgroup_call_dynamic_add(sgl->empty_axes, color, &axes_size, ob->obmat);
|
|
|
|
}
|
|
|
|
|
2018-07-17 11:36:07 +02:00
|
|
|
if ((md = modifiers_findByType(ob, eModifierType_Smoke)) &&
|
|
|
|
(modifier_isEnabled(scene, md, eModifierMode_Realtime)) &&
|
|
|
|
(((SmokeModifierData *)md)->domain != NULL))
|
|
|
|
{
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_shgroup_volume_extra(sgl, ob, view_layer, scene, md);
|
2018-07-17 11:36:07 +02:00
|
|
|
}
|
2017-04-28 04:33:58 +10:00
|
|
|
}
|
2017-02-17 17:29:43 +01:00
|
|
|
}
|
|
|
|
|
2018-11-22 18:22:34 +01:00
|
|
|
static void OBJECT_cache_finish(void *vedata)
|
2017-02-17 17:29:43 +01:00
|
|
|
{
|
2018-11-22 18:22:34 +01:00
|
|
|
OBJECT_StorageList *stl = ((OBJECT_Data *)vedata)->stl;
|
|
|
|
|
|
|
|
DRW_pass_sort_shgroup_z(stl->g_data->sgl.image_empties);
|
|
|
|
DRW_pass_sort_shgroup_z(stl->g_data->sgl_ghost.image_empties);
|
|
|
|
}
|
2017-03-26 19:10:53 +02:00
|
|
|
|
2018-11-22 18:22:34 +01:00
|
|
|
static void OBJECT_draw_scene(void *vedata)
|
|
|
|
{
|
2017-03-26 19:10:53 +02:00
|
|
|
OBJECT_PassList *psl = ((OBJECT_Data *)vedata)->psl;
|
2017-07-10 11:36:16 +02:00
|
|
|
OBJECT_StorageList *stl = ((OBJECT_Data *)vedata)->stl;
|
2017-03-26 19:10:53 +02:00
|
|
|
OBJECT_FramebufferList *fbl = ((OBJECT_Data *)vedata)->fbl;
|
2018-04-16 19:38:40 +02:00
|
|
|
OBJECT_PrivateData *g_data = stl->g_data;
|
2017-03-20 14:59:27 +01:00
|
|
|
DefaultFramebufferList *dfbl = DRW_viewport_framebuffer_list_get();
|
2018-04-23 23:11:29 +02:00
|
|
|
DefaultTextureList *dtxl = DRW_viewport_texture_list_get();
|
2017-10-12 04:03:42 +02:00
|
|
|
|
2019-01-21 11:20:53 +11:00
|
|
|
int id_len_select = g_data->id_ofs_select;
|
|
|
|
int id_len_select_dupli = g_data->id_ofs_select_dupli;
|
|
|
|
int id_len_active = g_data->id_ofs_active;
|
|
|
|
int id_len_transform = g_data->id_ofs_transform;
|
2018-04-17 13:01:01 +02:00
|
|
|
|
2019-01-21 11:20:53 +11:00
|
|
|
int id_len_prb_select = g_data->id_ofs_prb_select;
|
|
|
|
int id_len_prb_select_dupli = g_data->id_ofs_prb_select_dupli;
|
|
|
|
int id_len_prb_active = g_data->id_ofs_prb_active;
|
|
|
|
int id_len_prb_transform = g_data->id_ofs_prb_transform;
|
2018-04-17 13:01:01 +02:00
|
|
|
|
2019-01-21 11:20:53 +11:00
|
|
|
int outline_calls = id_len_select + id_len_select_dupli + id_len_active + id_len_transform;
|
|
|
|
outline_calls += id_len_prb_select + id_len_prb_select_dupli + id_len_prb_active + id_len_prb_transform;
|
2018-04-16 22:55:02 +02:00
|
|
|
|
2017-03-20 14:59:27 +01:00
|
|
|
float clearcol[4] = {0.0f, 0.0f, 0.0f, 0.0f};
|
2017-02-17 17:29:43 +01:00
|
|
|
|
2019-03-06 15:48:15 +01:00
|
|
|
/* Don't draw Transparent passes in MSAA buffer. */
|
2018-04-29 19:28:43 +02:00
|
|
|
// DRW_draw_pass(psl->bone_envelope); /* Never drawn in Object mode currently. */
|
2019-03-06 15:48:15 +01:00
|
|
|
DRW_draw_pass(stl->g_data->sgl.transp_shapes);
|
2018-04-29 19:28:43 +02:00
|
|
|
|
2018-08-22 10:10:12 +10:00
|
|
|
MULTISAMPLE_SYNC_ENABLE(dfbl, dtxl);
|
2018-04-22 22:56:07 +02:00
|
|
|
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_draw_pass(stl->g_data->sgl.bone_solid);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl.bone_wire);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl.bone_outline);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl.non_meshes);
|
2018-04-22 22:56:07 +02:00
|
|
|
DRW_draw_pass(psl->particle);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_draw_pass(stl->g_data->sgl.bone_axes);
|
2018-04-22 22:56:07 +02:00
|
|
|
|
2019-04-02 17:54:04 +11:00
|
|
|
MULTISAMPLE_SYNC_DISABLE(dfbl, dtxl);
|
2018-04-22 22:56:07 +02:00
|
|
|
|
2018-12-02 20:11:23 +01:00
|
|
|
DRW_draw_pass(stl->g_data->sgl.image_empties);
|
|
|
|
|
2018-04-16 22:55:02 +02:00
|
|
|
if (DRW_state_is_fbo() && outline_calls > 0) {
|
2017-07-26 19:58:15 +02:00
|
|
|
DRW_stats_group_start("Outlines");
|
2018-04-16 19:38:40 +02:00
|
|
|
|
|
|
|
g_data->id_ofs_active = 1;
|
2019-01-21 11:20:53 +11:00
|
|
|
g_data->id_ofs_select = g_data->id_ofs_active + id_len_active + id_len_prb_active + 1;
|
|
|
|
g_data->id_ofs_select_dupli = g_data->id_ofs_select + id_len_select + id_len_prb_select + 1;
|
|
|
|
g_data->id_ofs_transform = g_data->id_ofs_select_dupli + id_len_select_dupli + id_len_prb_select_dupli + 1;
|
|
|
|
|
|
|
|
g_data->id_ofs_prb_active = g_data->id_ofs_active + id_len_active;
|
|
|
|
g_data->id_ofs_prb_select = g_data->id_ofs_select + id_len_select;
|
|
|
|
g_data->id_ofs_prb_select_dupli = g_data->id_ofs_select_dupli + id_len_select_dupli;
|
|
|
|
g_data->id_ofs_prb_transform = g_data->id_ofs_transform + id_len_transform;
|
2018-04-16 19:38:40 +02:00
|
|
|
|
2017-04-26 04:39:25 +10:00
|
|
|
/* Render filled polygon on a separate framebuffer */
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(fbl->outlines_fb);
|
|
|
|
GPU_framebuffer_clear_color_depth(fbl->outlines_fb, clearcol, 1.0f);
|
2017-04-26 04:39:25 +10:00
|
|
|
DRW_draw_pass(psl->outlines);
|
2017-09-30 19:34:23 +02:00
|
|
|
DRW_draw_pass(psl->lightprobes);
|
2017-07-26 19:58:15 +02:00
|
|
|
|
2017-04-26 04:39:25 +10:00
|
|
|
/* Search outline pixels */
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(fbl->blur_fb);
|
2017-04-26 04:39:25 +10:00
|
|
|
DRW_draw_pass(psl->outlines_search);
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2017-09-22 17:30:39 +02:00
|
|
|
/* Expand outline to form a 3px wide line */
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(fbl->expand_fb);
|
2017-04-26 04:39:25 +10:00
|
|
|
DRW_draw_pass(psl->outlines_expand);
|
2017-03-22 02:14:23 +01:00
|
|
|
|
2017-09-22 17:30:39 +02:00
|
|
|
/* Bleed color so the AA can do it's stuff */
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(fbl->blur_fb);
|
2017-09-22 17:30:39 +02:00
|
|
|
DRW_draw_pass(psl->outlines_bleed);
|
2017-03-20 14:59:27 +01:00
|
|
|
|
2017-05-16 03:03:58 +02:00
|
|
|
/* restore main framebuffer */
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(dfbl->default_fb);
|
2017-07-26 19:58:15 +02:00
|
|
|
DRW_stats_group_end();
|
2017-04-26 04:39:25 +10:00
|
|
|
}
|
2017-09-30 19:34:23 +02:00
|
|
|
else if (DRW_state_is_select()) {
|
|
|
|
/* Render probes spheres/planes so we can select them. */
|
|
|
|
DRW_draw_pass(psl->lightprobes);
|
|
|
|
}
|
2017-03-22 02:14:23 +01:00
|
|
|
|
2017-10-12 04:03:42 +02:00
|
|
|
if (DRW_state_is_fbo()) {
|
2017-05-27 21:28:29 +02:00
|
|
|
if (e_data.draw_grid) {
|
2018-03-25 17:46:48 +02:00
|
|
|
GPU_framebuffer_bind(dfbl->color_only_fb);
|
2017-05-27 21:28:29 +02:00
|
|
|
DRW_draw_pass(psl->grid);
|
|
|
|
}
|
2017-04-26 04:39:25 +10:00
|
|
|
|
|
|
|
/* Combine with scene buffer last */
|
2018-04-16 22:55:02 +02:00
|
|
|
if (outline_calls > 0) {
|
|
|
|
DRW_draw_pass(psl->outlines_resolve);
|
|
|
|
}
|
2017-04-26 04:39:25 +10:00
|
|
|
}
|
2017-07-10 11:36:16 +02:00
|
|
|
|
2018-07-16 15:01:44 +02:00
|
|
|
volumes_free_smoke_textures();
|
2018-08-16 23:56:33 +02:00
|
|
|
batch_camera_path_free(&stl->g_data->sgl.camera_path);
|
|
|
|
|
|
|
|
if (!DRW_pass_is_empty(stl->g_data->sgl_ghost.bone_solid) ||
|
2018-08-22 10:10:12 +10:00
|
|
|
!DRW_pass_is_empty(stl->g_data->sgl_ghost.bone_wire) ||
|
|
|
|
!DRW_pass_is_empty(stl->g_data->sgl_ghost.bone_outline) ||
|
|
|
|
!DRW_pass_is_empty(stl->g_data->sgl_ghost.non_meshes) ||
|
2018-11-23 07:27:23 +11:00
|
|
|
!DRW_pass_is_empty(stl->g_data->sgl_ghost.image_empties) ||
|
2018-08-22 10:10:12 +10:00
|
|
|
!DRW_pass_is_empty(stl->g_data->sgl_ghost.bone_axes))
|
2018-08-16 23:56:33 +02:00
|
|
|
{
|
|
|
|
if (DRW_state_is_fbo()) {
|
|
|
|
/* meh, late init to not request a depth buffer we won't use. */
|
|
|
|
const float *viewport_size = DRW_viewport_size_get();
|
|
|
|
const int size[2] = {(int)viewport_size[0], (int)viewport_size[1]};
|
|
|
|
|
2019-03-20 18:17:16 +11:00
|
|
|
GPUTexture *ghost_depth_tx = DRW_texture_pool_query_2d(size[0], size[1], GPU_DEPTH_COMPONENT24, &draw_engine_object_type);
|
2018-08-16 23:56:33 +02:00
|
|
|
GPU_framebuffer_ensure_config(&fbl->ghost_fb, {
|
|
|
|
GPU_ATTACHMENT_TEXTURE(ghost_depth_tx),
|
|
|
|
GPU_ATTACHMENT_TEXTURE(dtxl->color),
|
|
|
|
});
|
|
|
|
|
|
|
|
GPU_framebuffer_bind(fbl->ghost_fb);
|
|
|
|
GPU_framebuffer_clear_depth(fbl->ghost_fb, 1.0f);
|
|
|
|
}
|
2018-10-30 15:31:32 -03:00
|
|
|
else if (DRW_state_is_select()) {
|
|
|
|
/* XXX `GPU_depth_range` is not a perfect solution
|
|
|
|
* since very distant geometries can still be occluded.
|
|
|
|
* Also the depth test precision of these geometries is impaired.
|
|
|
|
* However solves the selection for the vast majority of cases. */
|
|
|
|
GPU_depth_range(0.0f, 0.01f);
|
|
|
|
}
|
2018-08-16 23:56:33 +02:00
|
|
|
|
2019-03-06 15:48:15 +01:00
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.transp_shapes);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.bone_solid);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.bone_wire);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.bone_outline);
|
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.non_meshes);
|
2018-11-22 18:22:34 +01:00
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.image_empties);
|
2018-08-16 23:56:33 +02:00
|
|
|
DRW_draw_pass(stl->g_data->sgl_ghost.bone_axes);
|
2018-10-30 15:31:32 -03:00
|
|
|
|
|
|
|
if (DRW_state_is_select()) {
|
|
|
|
GPU_depth_range(0.0f, 1.0f);
|
|
|
|
}
|
2018-08-16 23:56:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
batch_camera_path_free(&stl->g_data->sgl_ghost.camera_path);
|
2018-09-14 18:31:54 +02:00
|
|
|
|
|
|
|
DRW_draw_pass(psl->ob_center);
|
2017-02-17 17:53:51 +01:00
|
|
|
}
|
|
|
|
|
2017-04-12 19:49:19 +10:00
|
|
|
static const DrawEngineDataSize OBJECT_data_size = DRW_VIEWPORT_DATA_SIZE(OBJECT_Data);
|
|
|
|
|
2017-03-08 20:00:09 +01:00
|
|
|
DrawEngineType draw_engine_object_type = {
|
|
|
|
NULL, NULL,
|
|
|
|
N_("ObjectMode"),
|
2017-04-12 19:49:19 +10:00
|
|
|
&OBJECT_data_size,
|
2017-03-18 01:55:41 +01:00
|
|
|
&OBJECT_engine_init,
|
|
|
|
&OBJECT_engine_free,
|
2017-03-08 20:00:09 +01:00
|
|
|
&OBJECT_cache_init,
|
|
|
|
&OBJECT_cache_populate,
|
2018-11-22 18:22:34 +01:00
|
|
|
&OBJECT_cache_finish,
|
2017-03-08 20:00:09 +01:00
|
|
|
NULL,
|
2017-09-25 20:07:02 +02:00
|
|
|
&OBJECT_draw_scene,
|
|
|
|
NULL,
|
2018-01-29 14:56:16 +01:00
|
|
|
NULL,
|
2017-03-08 20:00:09 +01:00
|
|
|
};
|