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

edit_metaball_mode.c « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb7f5ca5ff9743f0e7b7fcfd56baca329fcf0882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
 * 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.
 *
 * Copyright 2016, Blender Foundation.
 */

/** \file
 * \ingroup draw
 */

#include "DRW_render.h"

#include "DNA_meta_types.h"

#include "BKE_object.h"

#include "DEG_depsgraph_query.h"

#include "ED_mball.h"

/* If builtin shaders are needed */
#include "GPU_shader.h"

#include "draw_common.h"
#include "draw_mode_engines.h"

/* *********** LISTS *********** */
/* All lists are per viewport specific datas.
 * They are all free when viewport changes engines
 * or is free itself. Use EDIT_METABALL_engine_init() to
 * initialize most of them and EDIT_METABALL_cache_init()
 * for EDIT_METABALL_PassList */

typedef struct EDIT_METABALL_PassList {
  /* Declare all passes here and init them in
   * EDIT_METABALL_cache_init().
   * Only contains (DRWPass *) */
  struct DRWPass *pass;
} EDIT_METABALL_PassList;

typedef struct EDIT_METABALL_FramebufferList {
  /* Contains all framebuffer objects needed by this engine.
   * Only contains (GPUFrameBuffer *) */
  struct GPUFrameBuffer *fb;
} EDIT_METABALL_FramebufferList;

typedef struct EDIT_METABALL_TextureList {
  /* Contains all framebuffer textures / utility textures
   * needed by this engine. Only viewport specific textures
   * (not per object). Only contains (GPUTexture *) */
  struct GPUTexture *texture;
} EDIT_METABALL_TextureList;

typedef struct EDIT_METABALL_StorageList {
  /* Contains any other memory block that the engine needs.
   * Only directly MEM_(m/c)allocN'ed blocks because they are
   * free with MEM_freeN() when viewport is freed.
   * (not per object) */
  // struct CustomStruct *block;
  struct EDIT_METABALL_PrivateData *g_data;
} EDIT_METABALL_StorageList;

typedef struct EDIT_METABALL_Data {
  /* Struct returned by DRW_viewport_engine_data_ensure.
   * If you don't use one of these, just make it a (void *) */
  // void *fbl;
  void *engine_type; /* Required */
  EDIT_METABALL_FramebufferList *fbl;
  EDIT_METABALL_TextureList *txl;
  EDIT_METABALL_PassList *psl;
  EDIT_METABALL_StorageList *stl;
} EDIT_METABALL_Data;

/* *********** STATIC *********** */

typedef struct EDIT_METABALL_PrivateData {
  /* This keeps the references of the shading groups for
   * easy access in EDIT_METABALL_cache_populate() */
  DRWCallBuffer *group;
} EDIT_METABALL_PrivateData; /* Transient data */

/* *********** FUNCTIONS *********** */

/* Here init all passes and shading groups
 * Assume that all Passes are NULL */
static void EDIT_METABALL_cache_init(void *vedata)
{
  EDIT_METABALL_PassList *psl = ((EDIT_METABALL_Data *)vedata)->psl;
  EDIT_METABALL_StorageList *stl = ((EDIT_METABALL_Data *)vedata)->stl;
  const DRWContextState *draw_ctx = DRW_context_state_get();

  if (!stl->g_data) {
    /* Alloc transient pointers */
    stl->g_data = MEM_mallocN(sizeof(*stl->g_data), __func__);
  }

  {
    /* Create a pass */
    DRWState state = (DRW_STATE_WRITE_COLOR | DRW_STATE_WRITE_DEPTH | DRW_STATE_DEPTH_LESS_EQUAL |
                      DRW_STATE_BLEND_ALPHA);
    psl->pass = DRW_pass_create("My Pass", state);

    /* Create a shadingGroup using a function in draw_common.c or custom one */
    stl->g_data->group = buffer_instance_mball_handles(psl->pass, draw_ctx->sh_cfg);
  }
}

/* Add geometry to shadingGroups. Execute for each objects */
static void EDIT_METABALL_cache_populate(void *vedata, Object *ob)
{
  // EDIT_METABALL_PassList *psl = ((EDIT_METABALL_Data *)vedata)->psl;
  EDIT_METABALL_StorageList *stl = ((EDIT_METABALL_Data *)vedata)->stl;

  if (ob->type == OB_MBALL) {
    const DRWContextState *draw_ctx = DRW_context_state_get();
    DRWCallBuffer *group = stl->g_data->group;

    if ((ob == draw_ctx->object_edit) || BKE_object_is_in_editmode(ob)) {
      MetaBall *mb = ob->data;

      const float *color;
      const float col_radius[3] = {0.63, 0.19, 0.19};           /* 0x3030A0 */
      const float col_radius_select[3] = {0.94, 0.63, 0.63};    /* 0xA0A0F0 */
      const float col_stiffness[3] = {0.19, 0.63, 0.19};        /* 0x30A030 */
      const float col_stiffness_select[3] = {0.63, 0.94, 0.63}; /* 0xA0F0A0 */

      const bool is_select = DRW_state_is_select();

      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
         * the scale of Scamat */
        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]);
      }

      const Object *orig_object = DEG_get_original_object(ob);
      int select_id = orig_object->runtime.select_id;
      for (MetaElem *ml = mb->editelems->first; ml != NULL; ml = ml->next, select_id += 0x10000) {
        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];

        float draw_stiffness_radius = ml->rad * atanf(ml->s) / (float)M_PI_2;

        if ((ml->flag & SELECT) && (ml->flag & MB_SCALE_RAD)) {
          color = col_radius_select;
        }
        else {
          color = col_radius;
        }

        if (is_select) {
          DRW_select_load_id(select_id | MBALLSEL_RADIUS);
        }

        DRW_buffer_add_entry(group, draw_scale_xform, &ml->rad, color);

        if ((ml->flag & SELECT) && !(ml->flag & MB_SCALE_RAD)) {
          color = col_stiffness_select;
        }
        else {
          color = col_stiffness;
        }

        if (is_select) {
          DRW_select_load_id(select_id | MBALLSEL_STIFF);
        }

        DRW_buffer_add_entry(group, draw_scale_xform, &draw_stiffness_radius, color);
      }
    }
  }
}

/* Draw time ! Control rendering pipeline from here */
static void EDIT_METABALL_draw_scene(void *vedata)
{
  EDIT_METABALL_PassList *psl = ((EDIT_METABALL_Data *)vedata)->psl;
  /* render passes on default framebuffer. */
  DRW_draw_pass(psl->pass);
}

/* Cleanup when destroying the engine.
 * This is not per viewport ! only when quitting blender.
 * Mostly used for freeing shaders */
static void EDIT_METABALL_engine_free(void)
{
  // DRW_SHADER_FREE_SAFE(custom_shader);
}

static const DrawEngineDataSize EDIT_METABALL_data_size = DRW_VIEWPORT_DATA_SIZE(
    EDIT_METABALL_Data);

DrawEngineType draw_engine_edit_metaball_type = {
    NULL,
    NULL,
    N_("EditMetaballMode"),
    &EDIT_METABALL_data_size,
    NULL,
    &EDIT_METABALL_engine_free,
    &EDIT_METABALL_cache_init,
    &EDIT_METABALL_cache_populate,
    NULL,
    NULL, /* draw_background but not needed by mode engines */
    &EDIT_METABALL_draw_scene,
    NULL,
    NULL,
};