switch to entity list
[carveJwlIkooP6JGAAIwe30JlM.git] / world_gen.c
1 /*
2 * Copyright (C) 2021-2023 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 *
4 * World generation/population. Different to regular loading, since it needs to
5 * create geometry, apply procedural stuff and save that image to files etc.
6 */
7
8 #ifndef WORLD_GEN_C
9 #define WORLD_GEN_C
10
11 #include "world.h"
12 #include "world_gen.h"
13 #include "world_load.h"
14 #include "world_volumes.h"
15 #include "world_gate.h"
16
17 /*
18 * Add all triangles from the model, which match the material ID
19 * applies affine transform to the model
20 */
21 VG_STATIC void world_add_all_if_material( m4x3f transform, scene_context *scene,
22 mdl_context *mdl, u32 id )
23 {
24 for( u32 i=0; i<mdl_arrcount(&mdl->meshs); i++ ){
25 mdl_mesh *mesh = mdl_arritm( &mdl->meshs, i );
26
27 for( u32 j=0; j<mesh->submesh_count; j++ ){
28 mdl_submesh *sm = mdl_arritm( &mdl->submeshs, mesh->submesh_start+j );
29 if( sm->material_id == id ){
30 m4x3f transform2;
31 mdl_transform_m4x3( &mesh->transform, transform2 );
32 m4x3_mul( transform, transform2, transform2 );
33
34 scene_add_mdl_submesh( scene, mdl, sm, transform2 );
35 }
36 }
37 }
38 }
39
40 /*
41 * Adds a small blob shape to the world at a raycast location. This is for the
42 * grass sprites
43 *
44 * /''''\
45 * / \
46 * | |
47 * |________|
48 */
49 VG_STATIC void world_gen_add_blob( scene_context *scene, ray_hit *hit )
50 {
51 world_instance *world = world_loading_instance();
52 m4x3f transform;
53 v4f qsurface, qrandom;
54 v3f axis;
55
56 v3_cross( (v3f){0.0f,1.0f,0.0f}, hit->normal, axis );
57
58 float angle = v3_dot(hit->normal,(v3f){0.0f,1.0f,0.0f});
59 q_axis_angle( qsurface, axis, angle );
60 q_axis_angle( qrandom, (v3f){0.0f,1.0f,0.0f}, vg_randf64()*VG_TAUf );
61 q_mul( qsurface, qrandom, qsurface );
62 q_m3x3( qsurface, transform );
63 v3_copy( hit->pos, transform[3] );
64
65 scene_vert verts[] =
66 {
67 { .co = { -1.00f, 0.0f, 0.0f } },
68 { .co = { 1.00f, 0.0f, 0.0f } },
69 { .co = { -1.00f, 1.2f, 0.0f } },
70 { .co = { 1.00f, 1.2f, 0.0f } },
71 { .co = { -0.25f, 2.0f, 0.0f } },
72 { .co = { 0.25f, 2.0f, 0.0f } }
73 };
74
75 const u32 indices[] = { 0,1,3, 0,3,2, 2,3,5, 2,5,4 };
76
77 if( scene->vertex_count + vg_list_size(verts) > scene->max_vertices )
78 vg_fatal_error( "Scene vertex buffer overflow" );
79
80 if( scene->indice_count + vg_list_size(indices) > scene->max_indices )
81 vg_fatal_error( "Scene index buffer overflow" );
82
83 scene_vert *dst_verts = &scene->arrvertices[ scene->vertex_count ];
84 u32 *dst_indices = &scene->arrindices [ scene->indice_count ];
85
86 scene_vert *ref = &world->scene_geo.arrvertices[ hit->tri[0] ];
87
88 for( u32 i=0; i<vg_list_size(verts); i++ )
89 {
90 scene_vert *pvert = &dst_verts[ i ],
91 *src = &verts[ i ];
92
93 m4x3_mulv( transform, src->co, pvert->co );
94 scene_vert_pack_norm( pvert, transform[1] );
95
96 v2_copy( ref->uv, pvert->uv );
97 }
98
99 for( u32 i=0; i<vg_list_size(indices); i++ )
100 dst_indices[i] = indices[i] + scene->vertex_count;
101
102 scene->vertex_count += vg_list_size(verts);
103 scene->indice_count += vg_list_size(indices);
104 }
105
106 /*
107 * Sprinkle foliage models over the map on terrain material
108 */
109 VG_STATIC void world_apply_procedural_foliage( scene_context *scene,
110 struct world_surface *mat )
111 {
112 if( vg.quality_profile == k_quality_profile_low )
113 return;
114
115 world_instance *world = world_loading_instance();
116 vg_info( "Applying foliage (%u)\n", mat->info.pstr_name );
117
118 v3f volume;
119 v3_sub( world->scene_geo.bbx[1], world->scene_geo.bbx[0], volume );
120 volume[1] = 1.0f;
121
122 int count = 0;
123
124 float area = volume[0]*volume[2];
125 u32 particles = 0.08f * area;
126
127 /* TODO: Quasirandom? */
128 vg_info( "Map area: %f. Max particles: %u\n", area, particles );
129
130 for( u32 i=0; i<particles; i++ ){
131 v3f pos;
132 v3_mul( volume, (v3f){ vg_randf64(), 1000.0f, vg_randf64() }, pos );
133 pos[1] = 1000.0f;
134 v3_add( pos, world->scene_geo.bbx[0], pos );
135
136 ray_hit hit;
137 hit.dist = INFINITY;
138
139 if( ray_world( world, pos, (v3f){0.0f,-1.0f,0.0f}, &hit )){
140 struct world_surface *m1 = ray_hit_surface( world, &hit );
141 if((hit.normal[1] > 0.8f) && (m1 == mat) && (hit.pos[1] > 0.0f+10.0f)){
142 world_gen_add_blob( scene, &hit );
143 count ++;
144 }
145 }
146 }
147
148 vg_info( "%d foliage models added\n", count );
149 }
150
151 VG_STATIC
152 void world_unpack_submesh_dynamic( world_instance *world,
153 scene_context *scene, mdl_submesh *sm ){
154 if( sm->flags & k_submesh_flag_consumed ) return;
155
156 m4x3f identity;
157 m4x3_identity( identity );
158 scene_add_mdl_submesh( scene, &world->meta, sm, identity );
159
160 scene_copy_slice( scene, sm );
161 sm->flags |= k_submesh_flag_consumed;
162 }
163
164 /*
165 * Create the main meshes for the world
166 */
167 VG_STATIC void world_gen_generate_meshes(void)
168 {
169 /*
170 * Compile meshes into the world scenes
171 */
172 world_instance *world = world_loading_instance();
173 scene_init( &world->scene_geo, 320000, 1200000 );
174 u32 buf_size = scene_mem_required( &world->scene_geo );
175 u8 *buffer = vg_linear_alloc( world->heap, buf_size );
176 scene_supply_buffer( &world->scene_geo, buffer );
177
178 m4x3f midentity;
179 m4x3_identity( midentity );
180
181 /*
182 * Generate scene: collidable geometry
183 * ----------------------------------------------------------------
184 */
185
186 vg_info( "Generating collidable geometry\n" );
187
188 for( u32 i=0; i<world->surface_count; i++ ){
189 struct world_surface *surf = &world->surfaces[ i ];
190
191 if( surf->info.flags & k_material_flag_collision )
192 world_add_all_if_material( midentity, &world->scene_geo,
193 &world->meta, i );
194
195 scene_copy_slice( &world->scene_geo, &surf->sm_geo );
196 }
197
198 /* compress that bad boy */
199 u32 new_vert_max = world->scene_geo.vertex_count,
200 new_vert_size = vg_align8(new_vert_max*sizeof(scene_vert)),
201 new_indice_len = world->scene_geo.indice_count*sizeof(u32);
202
203 u32 *src_indices = world->scene_geo.arrindices,
204 *dst_indices = (u32 *)(buffer + new_vert_size);
205
206 memmove( dst_indices, src_indices, new_indice_len );
207
208 world->scene_geo.max_indices = world->scene_geo.indice_count;
209 world->scene_geo.max_vertices = world->scene_geo.vertex_count;
210 buf_size = scene_mem_required( &world->scene_geo );
211
212 buffer = vg_linear_resize( world->heap, buffer, buf_size );
213
214 world->scene_geo.arrvertices = (scene_vert *)(buffer);
215 world->scene_geo.arrindices = (u32 *)(buffer + new_vert_size);
216
217 scene_upload_async( &world->scene_geo, &world->mesh_geo );
218
219 /* need send off the memory to the gpu before we can create the bvh. */
220 vg_async_stall();
221 vg_info( "creating bvh\n" );
222
223 /* setup spacial mapping and rigidbody */
224 world->geo_bh = scene_bh_create( world->heap, &world->scene_geo );
225
226 v3_zero( world->rb_geo.rb.co );
227 v3_zero( world->rb_geo.rb.v );
228 q_identity( world->rb_geo.rb.q );
229 v3_zero( world->rb_geo.rb.w );
230
231 world->rb_geo.type = k_rb_shape_scene;
232 world->rb_geo.inf.scene.bh_scene = world->geo_bh;
233 rb_init_object( &world->rb_geo );
234
235 /*
236 * Generate scene: non-collidable geometry
237 * ----------------------------------------------------------------
238 */
239 vg_info( "Generating non-collidable geometry\n" );
240
241 vg_async_item *call = scene_alloc_async( &world->scene_no_collide,
242 &world->mesh_no_collide,
243 250000, 500000 );
244
245 for( u32 i=0; i<world->surface_count; i++ ){
246 struct world_surface *surf = &world->surfaces[ i ];
247
248 if( !(surf->info.flags & k_material_flag_collision) ){
249 world_add_all_if_material( midentity,
250 &world->scene_no_collide, &world->meta, i );
251 }
252
253 if( surf->info.flags & k_material_flag_grow_grass )
254 world_apply_procedural_foliage( &world->scene_no_collide, surf );
255
256 scene_copy_slice( &world->scene_no_collide, &surf->sm_no_collide );
257 }
258
259 /* unpack traffic models.. TODO: should we just put all these submeshes in a
260 * dynamic models list? and then the actual entitities point to the
261 * models. we only have 2 types at the moment which need dynamic models but
262 * would make sense to do this when/if we have more.
263 */
264 for( u32 i=0; i<mdl_arrcount( &world->ent_traffic ); i++ ){
265 ent_traffic *vehc = mdl_arritm( &world->ent_traffic, i );
266
267 for( u32 j=0; j<vehc->submesh_count; j++ ){
268 mdl_submesh *sm = mdl_arritm( &world->meta.submeshs,
269 vehc->submesh_start+j );
270 world_unpack_submesh_dynamic( world, &world->scene_no_collide, sm );
271 }
272 }
273
274 /* unpack challenge models */
275 for( u32 i=0; i<mdl_arrcount( &world->ent_challenge ); i++ ){
276 ent_challenge *challenge = mdl_arritm( &world->ent_challenge, i );
277
278 for( u32 j=0; j<challenge->submesh_count; j ++ ){
279 mdl_submesh *sm = mdl_arritm( &world->meta.submeshs,
280 challenge->submesh_start+j );
281 world_unpack_submesh_dynamic( world, &world->scene_no_collide, sm );
282 }
283 }
284
285 vg_async_dispatch( call, async_scene_upload );
286 }
287
288 /* signed distance function for cone */
289 static f32 fsd_cone_infinite( v3f p, v2f c )
290 {
291 v2f q = { v2_length( (v2f){ p[0], p[2] } ), -p[1] };
292 float s = vg_maxf( 0.0f, v2_dot( q, c ) );
293
294 v2f v0;
295 v2_muls( c, s, v0 );
296 v2_sub( q, v0, v0 );
297
298 float d = v2_length( v0 );
299 return d * ((q[0]*c[1]-q[1]*c[0]<0.0f)?-1.0f:1.0f);
300 }
301
302 struct light_indices_upload_info{
303 world_instance *world;
304 v3i count;
305
306 void *data;
307 };
308
309 /*
310 * Async reciever to buffer light index data
311 */
312 VG_STATIC void async_upload_light_indices( void *payload, u32 size )
313 {
314 struct light_indices_upload_info *info = payload;
315
316 glGenTextures( 1, &info->world->tex_light_cubes );
317 glBindTexture( GL_TEXTURE_3D, info->world->tex_light_cubes );
318 glTexImage3D( GL_TEXTURE_3D, 0, GL_RG32UI,
319 info->count[0], info->count[1], info->count[2],
320 0, GL_RG_INTEGER, GL_UNSIGNED_INT, info->data );
321 glTexParameteri( GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_NEAREST );
322 glTexParameteri( GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_NEAREST );
323 }
324
325 /*
326 * Computes light indices for world
327 */
328 VG_STATIC void world_gen_compute_light_indices(void)
329 {
330 /* light cubes */
331 world_instance *world = world_loading_instance();
332 v3f cubes_min, cubes_max;
333 v3_muls( world->scene_geo.bbx[0], 1.0f/k_world_light_cube_size, cubes_min );
334 v3_muls( world->scene_geo.bbx[1], 1.0f/k_world_light_cube_size, cubes_max );
335
336 v3_sub( cubes_min, (v3f){ 0.5f, 0.5f, 0.5f }, cubes_min );
337 v3_add( cubes_max, (v3f){ 0.5f, 0.5f, 0.5f }, cubes_max );
338
339 v3_floor( cubes_min, cubes_min );
340 v3_floor( cubes_max, cubes_max );
341
342 v3i icubes_min, icubes_max;
343
344 for( int i=0; i<3; i++ ){
345 icubes_min[i] = cubes_min[i];
346 icubes_max[i] = cubes_max[i];
347 }
348
349 v3f cube_size;
350
351 v3i icubes_count;
352 v3i_sub( icubes_max, icubes_min, icubes_count );
353
354 for( int i=0; i<3; i++ ){
355 int clamped_count = VG_MIN( 128, icubes_count[i]+1 );
356 float clamped_max = icubes_min[i] + clamped_count,
357 max = icubes_min[i] + icubes_count[i]+1;
358
359 icubes_count[i] = clamped_count;
360 cube_size[i] = (max / clamped_max) * k_world_light_cube_size;
361 cubes_max[i] = clamped_max;
362 }
363
364 v3_mul( cubes_min, cube_size, cubes_min );
365 v3_mul( cubes_max, cube_size, cubes_max );
366
367 for( int i=0; i<3; i++ ){
368 float range = cubes_max[i]-cubes_min[i];
369 world->ub_lighting.g_cube_inv_range[i] = 1.0f / range;
370 world->ub_lighting.g_cube_inv_range[i] *= (float)icubes_count[i];
371
372 vg_info( "cubes[%d]: %d\n", i, icubes_count[i] );
373 }
374
375 int total_cubes = icubes_count[0]*icubes_count[1]*icubes_count[2];
376
377 u32 data_size = vg_align8(total_cubes*sizeof(u32)*2),
378 hdr_size = vg_align8(sizeof(struct light_indices_upload_info));
379
380 vg_async_item *call = vg_async_alloc( data_size + hdr_size );
381 struct light_indices_upload_info *info = call->payload;
382 info->data = ((u8*)call->payload) + hdr_size;
383 info->world = world;
384 u32 *cubes_index = info->data;
385
386 for( int i=0; i<3; i++ )
387 info->count[i] = icubes_count[i];
388
389 vg_info( "Computing light cubes (%d) [%f %f %f] -> [%f %f %f]\n",
390 total_cubes, cubes_min[0], -cubes_min[2], cubes_min[1],
391 cubes_max[0], -cubes_max[2], cubes_max[1] );
392 v3_copy( cubes_min, world->ub_lighting.g_cube_min );
393
394 float bound_radius = v3_length( cube_size );
395
396 for( int iz = 0; iz<icubes_count[2]; iz ++ ){
397 for( int iy = 0; iy<icubes_count[1]; iy++ ){
398 for( int ix = 0; ix<icubes_count[0]; ix++ ){
399 boxf bbx;
400 v3_div( (v3f){ ix, iy, iz }, world->ub_lighting.g_cube_inv_range,
401 bbx[0] );
402 v3_div( (v3f){ ix+1, iy+1, iz+1 },
403 world->ub_lighting.g_cube_inv_range,
404 bbx[1] );
405
406 v3_add( bbx[0], world->ub_lighting.g_cube_min, bbx[0] );
407 v3_add( bbx[1], world->ub_lighting.g_cube_min, bbx[1] );
408
409 v3f center;
410 v3_add( bbx[0], bbx[1], center );
411 v3_muls( center, 0.5f, center );
412
413 u32 indices[6] = { 0, 0, 0, 0, 0, 0 };
414 u32 count = 0;
415
416 float influences[6] = { 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f };
417 const int N = vg_list_size( influences );
418
419 for( u32 j=0; j<mdl_arrcount(&world->ent_light); j ++ ){
420 ent_light *light = mdl_arritm( &world->ent_light, j );
421 v3f closest;
422 closest_point_aabb( light->transform.co, bbx, closest );
423
424 float dist = v3_dist( closest, light->transform.co ),
425 influence = 1.0f/(dist+1.0f);
426
427 if( dist > light->range )
428 continue;
429
430 if( light->type == k_light_type_spot){
431 v3f local;
432 m4x3_mulv( light->inverse_world, center, local );
433
434 float r = fsd_cone_infinite( local, light->angle_sin_cos );
435
436 if( r > bound_radius )
437 continue;
438 }
439
440 int best_pos = N;
441 for( int k=best_pos-1; k>=0; k -- )
442 if( influence > influences[k] )
443 best_pos = k;
444
445 if( best_pos < N ){
446 for( int k=N-1; k>best_pos; k -- ){
447 influences[k] = influences[k-1];
448 indices[k] = indices[k-1];
449 }
450
451 influences[best_pos] = influence;
452 indices[best_pos] = j;
453 }
454 }
455
456 for( int j=0; j<N; j++ )
457 if( influences[j] > 0.0f )
458 count ++;
459
460 int base_index = iz * (icubes_count[0]*icubes_count[1]) +
461 iy * (icubes_count[0]) +
462 ix;
463
464 int lower_count = VG_MIN( 3, count );
465 u32 packed_index_lower = lower_count;
466 packed_index_lower |= indices[0]<<2;
467 packed_index_lower |= indices[1]<<12;
468 packed_index_lower |= indices[2]<<22;
469
470 int upper_count = VG_MAX( 0, count - lower_count );
471 u32 packed_index_upper = upper_count;
472 packed_index_upper |= indices[3]<<2;
473 packed_index_upper |= indices[4]<<12;
474 packed_index_upper |= indices[5]<<22;
475
476 cubes_index[ base_index*2 + 0 ] = packed_index_lower;
477 cubes_index[ base_index*2 + 1 ] = packed_index_upper;
478 }
479 }
480 }
481
482 vg_async_dispatch( call, async_upload_light_indices );
483 }
484
485 /*
486 * Rendering pass needed to complete the world
487 */
488 VG_STATIC void async_world_postprocess_render( void *payload, u32 _size )
489 {
490 /* create scene lighting buffer */
491 world_instance *world = world_loading_instance();
492
493 u32 size = VG_MAX(mdl_arrcount(&world->ent_light),1) * sizeof(float)*12;
494 vg_info( "Upload %ubytes (lighting)\n", size );
495
496 glGenBuffers( 1, &world->tbo_light_entities );
497 glBindBuffer( GL_TEXTURE_BUFFER, world->tbo_light_entities );
498 glBufferData( GL_TEXTURE_BUFFER, size, NULL, GL_DYNAMIC_DRAW );
499
500 /* buffer layout
501 *
502 * colour position direction (spots)
503 * | . . . . | . . . . | . . . . |
504 * | Re Ge Be Night | Xco Yco Zco Range | Dx Dy Dz Da |
505 *
506 */
507
508 v4f *light_dst = glMapBuffer( GL_TEXTURE_BUFFER, GL_WRITE_ONLY );
509 for( u32 i=0; i<mdl_arrcount(&world->ent_light); i++ ){
510 ent_light *light = mdl_arritm( &world->ent_light, i );
511
512 /* colour + night */
513 v3_muls( light->colour, light->colour[3] * 2.0f, light_dst[i*3+0] );
514 light_dst[i*3+0][3] = 2.0f;
515
516 if( !light->daytime ){
517 u32 hash = (i * 29986577u) & 0xffu;
518 float switch_on = hash;
519 switch_on *= (1.0f/255.0f);
520
521 light_dst[i*3+0][3] = 0.44f + switch_on * 0.015f;
522 }
523
524 /* position + 1/range^2 */
525 v3_copy( light->transform.co, light_dst[i*3+1] );
526 light_dst[i*3+1][3] = 1.0f/(light->range*light->range);
527
528 /* direction + angle */
529 q_mulv( light->transform.q, (v3f){0.0f,-1.0f,0.0f}, light_dst[i*3+2]);
530 light_dst[i*3+2][3] = cosf( light->angle );
531 }
532
533 glUnmapBuffer( GL_TEXTURE_BUFFER );
534
535 glGenTextures( 1, &world->tex_light_entities );
536 glBindTexture( GL_TEXTURE_BUFFER, world->tex_light_entities );
537 glTexBuffer( GL_TEXTURE_BUFFER, GL_RGBA32F, world->tbo_light_entities );
538
539 /* Upload lighting uniform buffer */
540 if( world->water.enabled )
541 v4_copy( world->water.plane, world->ub_lighting.g_water_plane );
542
543 v4f info_vec;
544 v3f *bounds = world->scene_geo.bbx;
545
546 info_vec[0] = bounds[0][0];
547 info_vec[1] = bounds[0][2];
548 info_vec[2] = 1.0f/ (bounds[1][0]-bounds[0][0]);
549 info_vec[3] = 1.0f/ (bounds[1][2]-bounds[0][2]);
550 v4_copy( info_vec, world->ub_lighting.g_depth_bounds );
551
552 /*
553 * Rendering the depth map
554 */
555 camera ortho;
556
557 v3f extent;
558 v3_sub( world->scene_geo.bbx[1], world->scene_geo.bbx[0], extent );
559
560 float fl = world->scene_geo.bbx[0][0],
561 fr = world->scene_geo.bbx[1][0],
562 fb = world->scene_geo.bbx[0][2],
563 ft = world->scene_geo.bbx[1][2],
564 rl = 1.0f / (fr-fl),
565 tb = 1.0f / (ft-fb);
566
567 m4x4_zero( ortho.mtx.p );
568 ortho.mtx.p[0][0] = 2.0f * rl;
569 ortho.mtx.p[2][1] = 2.0f * tb;
570 ortho.mtx.p[3][0] = (fr + fl) * -rl;
571 ortho.mtx.p[3][1] = (ft + fb) * -tb;
572 ortho.mtx.p[3][3] = 1.0f;
573 m4x3_identity( ortho.transform );
574 camera_update_view( &ortho );
575 camera_finalize( &ortho );
576
577 glDisable(GL_DEPTH_TEST);
578 glDisable(GL_BLEND);
579 glDisable(GL_CULL_FACE);
580 render_fb_bind( &world->heightmap, 0 );
581 shader_blitcolour_use();
582 shader_blitcolour_uColour( (v4f){-9999.0f,-9999.0f,-9999.0f,-9999.0f} );
583 render_fsquad();
584
585 glEnable(GL_BLEND);
586 glBlendFunc(GL_ONE, GL_ONE);
587 glBlendEquation(GL_MAX);
588
589 render_world_position( world, &ortho );
590 glDisable(GL_BLEND);
591 glEnable(GL_DEPTH_TEST);
592 glBindFramebuffer( GL_FRAMEBUFFER, 0 );
593
594 /* upload full buffer */
595 glBindBuffer( GL_UNIFORM_BUFFER, world->ubo_lighting );
596 glBufferSubData( GL_UNIFORM_BUFFER, 0,
597 sizeof(struct ub_world_lighting), &world->ub_lighting );
598
599 /* yes we are using this as the entity begin thing. FIXME */
600 world->probabilities[ k_probability_curve_constant ] = 1.0f;
601 for( u32 i=0; i<mdl_arrcount(&world->ent_audio); i++ ){
602 ent_audio *audio = mdl_arritm(&world->ent_audio,i);
603 if( audio->flags & AUDIO_FLAG_AUTO_START ){
604 ent_call call;
605 call.data = NULL;
606 call.function = k_ent_function_trigger;
607 call.id = mdl_entity_id( k_ent_audio, i );
608 entity_call( world, &call );
609 }
610 }
611 }
612
613 /* Loads textures from the pack file */
614 VG_STATIC void world_gen_load_surfaces(void)
615 {
616 world_instance *world = world_loading_instance();
617 vg_info( "Loading textures\n" );
618 world->texture_count = 0;
619
620 world->texture_count = world->meta.textures.count+1;
621 world->textures = vg_linear_alloc( world->heap,
622 vg_align8(sizeof(GLuint)*world->texture_count) );
623
624 vg_tex2d_replace_with_error( &world->textures[0] );
625
626 for( u32 i=0; i<mdl_arrcount(&world->meta.textures); i++ ){
627 mdl_texture *tex = mdl_arritm( &world->meta.textures, i );
628
629 if( !tex->file.pack_size ){
630 vg_fatal_error( "World models must have packed textures!" );
631 }
632
633 vg_linear_clear( vg_mem.scratch );
634 void *src_data = vg_linear_alloc( vg_mem.scratch,
635 tex->file.pack_size );
636 mdl_fread_pack_file( &world->meta, &tex->file, src_data );
637
638 vg_tex2d_load_qoi_async( src_data, tex->file.pack_size,
639 VG_TEX2D_NEAREST|VG_TEX2D_REPEAT,
640 &world->textures[i+1] );
641 }
642
643 vg_info( "Loading materials\n" );
644
645 world->surface_count = world->meta.materials.count+1;
646 world->surfaces = vg_linear_alloc( world->heap,
647 vg_align8(sizeof(struct world_surface)*world->surface_count) );
648
649 /* error material */
650 struct world_surface *errmat = &world->surfaces[0];
651 memset( errmat, 0, sizeof(struct world_surface) );
652
653 for( u32 i=0; i<mdl_arrcount(&world->meta.materials); i++ ){
654 world->surfaces[i+1].info =
655 *(mdl_material *)mdl_arritm( &world->meta.materials, i );
656 }
657 }
658
659 #endif /* WORLD_GEN_C */