2017-05-09 16:23:47 +02:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2017 by Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation, Mike Erwin, Dalai Felinto
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file draw_cache_impl_particles.c
|
|
|
|
* \ingroup draw
|
|
|
|
*
|
|
|
|
* \brief Particle API for render engines
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BLI_math_vector.h"
|
2017-06-22 19:19:55 +02:00
|
|
|
#include "BLI_ghash.h"
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
#include "DNA_modifier_types.h"
|
2017-05-09 16:23:47 +02:00
|
|
|
#include "DNA_particle_types.h"
|
|
|
|
|
|
|
|
#include "BKE_particle.h"
|
2017-06-22 19:19:55 +02:00
|
|
|
#include "BKE_DerivedMesh.h"
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
#include "GPU_batch.h"
|
|
|
|
|
|
|
|
#include "draw_cache_impl.h" /* own include */
|
|
|
|
|
|
|
|
static void particle_batch_cache_clear(ParticleSystem *psys);
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
2017-06-19 20:18:04 +10:00
|
|
|
/* Particle Gwn_Batch Cache */
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
typedef struct ParticleBatchCache {
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_VertBuf *pos;
|
|
|
|
Gwn_IndexBuf *segments;
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_Batch *hairs;
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
int segment_count;
|
|
|
|
int point_count;
|
|
|
|
|
|
|
|
/* settings to determine if cache is invalid */
|
|
|
|
bool is_dirty;
|
|
|
|
} ParticleBatchCache;
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
/* Gwn_Batch cache management. */
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
static bool particle_batch_cache_valid(ParticleSystem *psys)
|
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = psys->batch_cache;
|
|
|
|
|
|
|
|
if (cache == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cache->is_dirty == false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void particle_batch_cache_init(ParticleSystem *psys)
|
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = psys->batch_cache;
|
|
|
|
|
|
|
|
if (!cache) {
|
|
|
|
cache = psys->batch_cache = MEM_callocN(sizeof(*cache), __func__);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memset(cache, 0, sizeof(*cache));
|
|
|
|
}
|
|
|
|
|
|
|
|
cache->is_dirty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ParticleBatchCache *particle_batch_cache_get(ParticleSystem *psys)
|
|
|
|
{
|
|
|
|
if (!particle_batch_cache_valid(psys)) {
|
|
|
|
particle_batch_cache_clear(psys);
|
|
|
|
particle_batch_cache_init(psys);
|
|
|
|
}
|
|
|
|
return psys->batch_cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DRW_particle_batch_cache_dirty(ParticleSystem *psys, int mode)
|
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = psys->batch_cache;
|
|
|
|
if (cache == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (mode) {
|
|
|
|
case BKE_PARTICLE_BATCH_DIRTY_ALL:
|
|
|
|
cache->is_dirty = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BLI_assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void particle_batch_cache_clear(ParticleSystem *psys)
|
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = psys->batch_cache;
|
|
|
|
if (!cache) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_BATCH_DISCARD_SAFE(cache->hairs);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_VERTBUF_DISCARD_SAFE(cache->pos);
|
|
|
|
GWN_INDEXBUF_DISCARD_SAFE(cache->segments);
|
2017-05-09 16:23:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DRW_particle_batch_cache_free(ParticleSystem *psys)
|
|
|
|
{
|
|
|
|
particle_batch_cache_clear(psys);
|
|
|
|
MEM_SAFE_FREE(psys->batch_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ensure_seg_pt_count(ParticleSystem *psys, ParticleBatchCache *cache)
|
|
|
|
{
|
|
|
|
if (cache->pos == NULL || cache->segments == NULL) {
|
|
|
|
cache->segment_count = 0;
|
|
|
|
cache->point_count = 0;
|
|
|
|
|
|
|
|
if (psys->pathcache && (!psys->childcache || (psys->part->draw & PART_DRAW_PARENT))) {
|
|
|
|
for (int i = 0; i < psys->totpart; i++) {
|
|
|
|
ParticleCacheKey *path = psys->pathcache[i];
|
|
|
|
|
2017-05-16 17:42:14 +02:00
|
|
|
if (path->segments > 0) {
|
2017-05-09 16:23:47 +02:00
|
|
|
cache->segment_count += path->segments;
|
|
|
|
cache->point_count += path->segments + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (psys->childcache) {
|
|
|
|
int child_count = psys->totchild * psys->part->disp / 100;
|
|
|
|
|
|
|
|
for (int i = 0; i < child_count; i++) {
|
|
|
|
ParticleCacheKey *path = psys->childcache[i];
|
|
|
|
|
2017-05-16 17:42:14 +02:00
|
|
|
if (path->segments > 0) {
|
2017-05-09 16:23:47 +02:00
|
|
|
cache->segment_count += path->segments;
|
|
|
|
cache->point_count += path->segments + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
/* Gwn_Batch cache usage. */
|
2017-06-22 19:19:55 +02:00
|
|
|
static void particle_batch_cache_ensure_pos_and_seg(ParticleSystem *psys, ModifierData *md, ParticleBatchCache *cache)
|
2017-05-09 16:23:47 +02:00
|
|
|
{
|
|
|
|
if (cache->pos == NULL || cache->segments == NULL) {
|
|
|
|
int curr_point = 0;
|
2017-06-22 19:19:55 +02:00
|
|
|
ParticleSystemModifierData *psmd = (ParticleSystemModifierData *)md;
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_VERTBUF_DISCARD_SAFE(cache->pos);
|
|
|
|
GWN_INDEXBUF_DISCARD_SAFE(cache->segments);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
static Gwn_VertFormat format = { 0 };
|
2017-05-17 12:22:22 +10:00
|
|
|
static struct { uint pos, tan, ind; } attr_id;
|
2017-06-29 15:46:00 +02:00
|
|
|
unsigned int *uv_id = NULL;
|
2017-06-22 19:19:55 +02:00
|
|
|
int uv_layers = 0;
|
2017-06-29 15:46:00 +02:00
|
|
|
MTFace **mtfaces = NULL;
|
2017-06-22 19:19:55 +02:00
|
|
|
float (**parent_uvs)[2] = NULL;
|
|
|
|
bool simple = psys->part->childtype == PART_CHILD_PARTICLES;
|
|
|
|
|
|
|
|
if (psmd) {
|
|
|
|
if (CustomData_has_layer(&psmd->dm_final->loopData, CD_MLOOPUV)) {
|
|
|
|
uv_layers = CustomData_number_of_layers(&psmd->dm_final->loopData, CD_MLOOPUV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GWN_vertformat_clear(&format);
|
|
|
|
|
|
|
|
/* initialize vertex format */
|
|
|
|
attr_id.pos = GWN_vertformat_attr_add(&format, "pos", GWN_COMP_F32, 3, GWN_FETCH_FLOAT);
|
|
|
|
attr_id.tan = GWN_vertformat_attr_add(&format, "nor", GWN_COMP_F32, 3, GWN_FETCH_FLOAT);
|
|
|
|
attr_id.ind = GWN_vertformat_attr_add(&format, "ind", GWN_COMP_I32, 1, GWN_FETCH_INT);
|
|
|
|
|
|
|
|
if (psmd) {
|
|
|
|
uv_id = MEM_mallocN(sizeof(*uv_id) * uv_layers, "UV attrib format");
|
|
|
|
|
|
|
|
for (int i = 0; i < uv_layers; i++) {
|
|
|
|
const char *name = CustomData_get_layer_name(&psmd->dm_final->loopData, CD_MLOOPUV, i);
|
|
|
|
char uuid[32];
|
|
|
|
|
|
|
|
BLI_snprintf(uuid, sizeof(uuid), "u%u", BLI_ghashutil_strhash_p(name));
|
|
|
|
uv_id[i] = GWN_vertformat_attr_add(&format, uuid, GWN_COMP_F32, 2, GWN_FETCH_FLOAT);
|
|
|
|
}
|
2017-05-09 16:23:47 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
cache->pos = GWN_vertbuf_create_with_format(&format);
|
|
|
|
GWN_vertbuf_data_alloc(cache->pos, cache->point_count);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_IndexBufBuilder elb;
|
|
|
|
GWN_indexbuf_init(&elb, GWN_PRIM_LINES, cache->segment_count, cache->point_count);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (uv_layers) {
|
|
|
|
DM_ensure_tessface(psmd->dm_final);
|
|
|
|
|
|
|
|
mtfaces = MEM_mallocN(sizeof(*mtfaces) * uv_layers, "Faces UV layers");
|
|
|
|
|
|
|
|
for (int i = 0; i < uv_layers; i++) {
|
|
|
|
mtfaces[i] = (MTFace *)CustomData_get_layer_n(&psmd->dm_final->faceData, CD_MTFACE, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
if (psys->pathcache && (!psys->childcache || (psys->part->draw & PART_DRAW_PARENT))) {
|
2017-06-22 19:19:55 +02:00
|
|
|
if (simple) {
|
|
|
|
parent_uvs = MEM_callocN(sizeof(*parent_uvs) * psys->totpart, "Parent particle UVs");
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
for (int i = 0; i < psys->totpart; i++) {
|
|
|
|
ParticleCacheKey *path = psys->pathcache[i];
|
|
|
|
|
2017-05-16 17:42:14 +02:00
|
|
|
if (path->segments > 0) {
|
2017-05-09 16:23:47 +02:00
|
|
|
float tangent[3];
|
2017-06-22 19:19:55 +02:00
|
|
|
int from = psmd ? psmd->psys->part->from : 0;
|
2017-06-29 15:46:00 +02:00
|
|
|
float (*uv)[2] = NULL;
|
2017-06-22 19:19:55 +02:00
|
|
|
|
|
|
|
if (psmd) {
|
|
|
|
uv = MEM_callocN(sizeof(*uv) * uv_layers, "Particle UVs");
|
|
|
|
|
|
|
|
if (simple) {
|
|
|
|
parent_uvs[i] = uv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ELEM(from, PART_FROM_FACE, PART_FROM_VOLUME)) {
|
|
|
|
ParticleData *particle = &psys->particles[i];
|
|
|
|
int num = particle->num_dmcache;
|
|
|
|
|
|
|
|
if (num == DMCACHE_NOTFOUND) {
|
|
|
|
if (particle->num < psmd->dm_final->getNumTessFaces(psmd->dm_final)) {
|
|
|
|
num = particle->num;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num != DMCACHE_NOTFOUND) {
|
|
|
|
MFace *mface = psmd->dm_final->getTessFaceData(psmd->dm_final, num, CD_MFACE);
|
|
|
|
|
|
|
|
for (int j = 0; j < uv_layers; j++) {
|
|
|
|
psys_interpolate_uvs(mtfaces[j] + num, mface->v4, particle->fuv, uv[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
for (int j = 0; j < path->segments; j++) {
|
|
|
|
if (j == 0) {
|
|
|
|
sub_v3_v3v3(tangent, path[j + 1].co, path[j].co);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sub_v3_v3v3(tangent, path[j + 1].co, path[j - 1].co);
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.pos, curr_point, path[j].co);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.tan, curr_point, tangent);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.ind, curr_point, &i);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (psmd) {
|
|
|
|
for (int k = 0; k < uv_layers; k++) {
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, uv_id[k], curr_point, uv[k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_indexbuf_add_line_verts(&elb, curr_point, curr_point + 1);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
curr_point++;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub_v3_v3v3(tangent, path[path->segments].co, path[path->segments - 1].co);
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.pos, curr_point, path[path->segments].co);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.tan, curr_point, tangent);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.ind, curr_point, &i);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (psmd) {
|
|
|
|
for (int k = 0; k < uv_layers; k++) {
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, uv_id[k], curr_point, uv[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!simple) {
|
|
|
|
MEM_freeN(uv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
curr_point++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (psys->childcache) {
|
|
|
|
int child_count = psys->totchild * psys->part->disp / 100;
|
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (simple && !parent_uvs) {
|
|
|
|
parent_uvs = MEM_callocN(sizeof(*parent_uvs) * psys->totpart, "Parent particle UVs");
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
for (int i = 0, x = psys->totpart; i < child_count; i++, x++) {
|
|
|
|
ParticleCacheKey *path = psys->childcache[i];
|
|
|
|
float tangent[3];
|
|
|
|
|
2017-05-16 17:42:14 +02:00
|
|
|
if (path->segments > 0) {
|
2017-06-22 19:19:55 +02:00
|
|
|
int from = psmd ? psmd->psys->part->from : 0;
|
2017-06-29 15:46:00 +02:00
|
|
|
float (*uv)[2] = NULL;
|
2017-06-22 19:19:55 +02:00
|
|
|
|
|
|
|
if (!simple) {
|
|
|
|
if (psmd) {
|
|
|
|
uv = MEM_callocN(sizeof(*uv) * uv_layers, "Particle UVs");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ELEM(from, PART_FROM_FACE, PART_FROM_VOLUME)) {
|
|
|
|
ChildParticle *particle = &psys->child[i];
|
2017-06-27 11:58:59 +02:00
|
|
|
int num = particle->num;
|
2017-06-22 19:19:55 +02:00
|
|
|
|
|
|
|
if (num != DMCACHE_NOTFOUND) {
|
|
|
|
MFace *mface = psmd->dm_final->getTessFaceData(psmd->dm_final, num, CD_MFACE);
|
|
|
|
|
|
|
|
for (int j = 0; j < uv_layers; j++) {
|
|
|
|
psys_interpolate_uvs(mtfaces[j] + num, mface->v4, particle->fuv, uv[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!parent_uvs[psys->child[i].parent]) {
|
|
|
|
if (psmd) {
|
|
|
|
parent_uvs[psys->child[i].parent] = MEM_callocN(sizeof(*uv) * uv_layers, "Particle UVs");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ELEM(from, PART_FROM_FACE, PART_FROM_VOLUME)) {
|
|
|
|
ParticleData *particle = &psys->particles[psys->child[i].parent];
|
|
|
|
int num = particle->num_dmcache;
|
|
|
|
|
|
|
|
if (num == DMCACHE_NOTFOUND) {
|
|
|
|
if (particle->num < psmd->dm_final->getNumTessFaces(psmd->dm_final)) {
|
|
|
|
num = particle->num;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num != DMCACHE_NOTFOUND) {
|
|
|
|
MFace *mface = psmd->dm_final->getTessFaceData(psmd->dm_final, num, CD_MFACE);
|
|
|
|
|
|
|
|
for (int j = 0; j < uv_layers; j++) {
|
|
|
|
psys_interpolate_uvs(mtfaces[j] + num, mface->v4, particle->fuv, parent_uvs[psys->child[i].parent][j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
for (int j = 0; j < path->segments; j++) {
|
|
|
|
if (j == 0) {
|
|
|
|
sub_v3_v3v3(tangent, path[j + 1].co, path[j].co);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sub_v3_v3v3(tangent, path[j + 1].co, path[j - 1].co);
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.pos, curr_point, path[j].co);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.tan, curr_point, tangent);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.ind, curr_point, &x);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (psmd) {
|
|
|
|
for (int k = 0; k < uv_layers; k++) {
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, uv_id[k], curr_point,
|
|
|
|
simple ? parent_uvs[psys->child[i].parent][k] : uv[k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_indexbuf_add_line_verts(&elb, curr_point, curr_point + 1);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
|
|
|
curr_point++;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub_v3_v3v3(tangent, path[path->segments].co, path[path->segments - 1].co);
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.pos, curr_point, path[path->segments].co);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.tan, curr_point, tangent);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, attr_id.ind, curr_point, &x);
|
2017-05-09 16:23:47 +02:00
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (psmd) {
|
|
|
|
for (int k = 0; k < uv_layers; k++) {
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, uv_id[k], curr_point,
|
|
|
|
simple ? parent_uvs[psys->child[i].parent][k] : uv[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!simple) {
|
|
|
|
MEM_freeN(uv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 16:23:47 +02:00
|
|
|
curr_point++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
if (parent_uvs) {
|
|
|
|
for (int i = 0; i < psys->totpart; i++) {
|
|
|
|
MEM_SAFE_FREE(parent_uvs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
MEM_freeN(parent_uvs);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uv_layers) {
|
|
|
|
MEM_freeN(mtfaces);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (psmd) {
|
|
|
|
MEM_freeN(uv_id);
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
cache->segments = GWN_indexbuf_build(&elb);
|
2017-05-09 16:23:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-19 17:13:48 +02:00
|
|
|
static void particle_batch_cache_ensure_pos(ParticleSystem *psys, ParticleBatchCache *cache)
|
|
|
|
{
|
|
|
|
if (cache->pos == NULL) {
|
2017-06-19 20:18:04 +10:00
|
|
|
static Gwn_VertFormat format = { 0 };
|
2017-05-23 16:56:53 +02:00
|
|
|
static unsigned pos_id, rot_id, val_id;
|
2017-05-19 17:13:48 +02:00
|
|
|
int i, curr_point;
|
|
|
|
ParticleData *pa;
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_VERTBUF_DISCARD_SAFE(cache->pos);
|
|
|
|
GWN_INDEXBUF_DISCARD_SAFE(cache->segments);
|
2017-05-19 17:13:48 +02:00
|
|
|
|
|
|
|
if (format.attrib_ct == 0) {
|
|
|
|
/* initialize vertex format */
|
2017-06-19 20:18:04 +10:00
|
|
|
pos_id = GWN_vertformat_attr_add(&format, "pos", GWN_COMP_F32, 3, GWN_FETCH_FLOAT);
|
|
|
|
rot_id = GWN_vertformat_attr_add(&format, "rot", GWN_COMP_F32, 4, GWN_FETCH_FLOAT);
|
|
|
|
val_id = GWN_vertformat_attr_add(&format, "val", GWN_COMP_F32, 1, GWN_FETCH_FLOAT);
|
2017-05-19 17:13:48 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
cache->pos = GWN_vertbuf_create_with_format(&format);
|
|
|
|
GWN_vertbuf_data_alloc(cache->pos, psys->totpart);
|
2017-05-19 17:13:48 +02:00
|
|
|
|
|
|
|
for (curr_point = 0, i = 0, pa = psys->particles; i < psys->totpart; i++, pa++) {
|
|
|
|
if (pa->state.time >= pa->time && pa->state.time < pa->dietime &&
|
|
|
|
!(pa->flag & (PARS_NO_DISP | PARS_UNEXIST)))
|
|
|
|
{
|
2017-05-23 16:56:53 +02:00
|
|
|
float val;
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, pos_id, curr_point, pa->state.co);
|
|
|
|
GWN_vertbuf_attr_set(cache->pos, rot_id, curr_point, pa->state.rot);
|
2017-05-19 17:13:48 +02:00
|
|
|
|
2017-05-23 16:56:53 +02:00
|
|
|
switch (psys->part->draw_col) {
|
|
|
|
case PART_DRAW_COL_VEL:
|
|
|
|
val = len_v3(pa->state.vel) / psys->part->color_vec_max;
|
|
|
|
break;
|
|
|
|
case PART_DRAW_COL_ACC:
|
|
|
|
val = len_v3v3(pa->state.vel, pa->prev_state.vel) / ((pa->state.time - pa->prev_state.time) * psys->part->color_vec_max);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
val = -1.0f;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_attr_set(cache->pos, val_id, curr_point, &val);
|
2017-05-23 16:56:53 +02:00
|
|
|
|
2017-05-19 17:13:48 +02:00
|
|
|
curr_point++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (curr_point != psys->totpart) {
|
2017-06-19 20:18:04 +10:00
|
|
|
GWN_vertbuf_data_resize(cache->pos, curr_point);
|
2017-05-19 17:13:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 19:19:55 +02:00
|
|
|
Gwn_Batch *DRW_particles_batch_cache_get_hair(ParticleSystem *psys, ModifierData *md)
|
2017-05-09 16:23:47 +02:00
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = particle_batch_cache_get(psys);
|
|
|
|
|
|
|
|
if (cache->hairs == NULL) {
|
|
|
|
ensure_seg_pt_count(psys, cache);
|
2017-06-22 19:19:55 +02:00
|
|
|
particle_batch_cache_ensure_pos_and_seg(psys, md, cache);
|
2017-06-19 20:18:04 +10:00
|
|
|
cache->hairs = GWN_batch_create(GWN_PRIM_LINES, cache->pos, cache->segments);
|
2017-05-09 16:23:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return cache->hairs;
|
|
|
|
}
|
2017-05-19 17:13:48 +02:00
|
|
|
|
2017-06-19 20:18:04 +10:00
|
|
|
Gwn_Batch *DRW_particles_batch_cache_get_dots(ParticleSystem *psys)
|
2017-05-19 17:13:48 +02:00
|
|
|
{
|
|
|
|
ParticleBatchCache *cache = particle_batch_cache_get(psys);
|
|
|
|
|
|
|
|
if (cache->hairs == NULL) {
|
|
|
|
particle_batch_cache_ensure_pos(psys, cache);
|
2017-06-19 20:18:04 +10:00
|
|
|
cache->hairs = GWN_batch_create(GWN_PRIM_POINTS, cache->pos, NULL);
|
2017-05-19 17:13:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return cache->hairs;
|
|
|
|
}
|