implemented metascene spawn point/rot
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Mon, 5 Dec 2016 13:11:24 +0000 (15:11 +0200)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Mon, 5 Dec 2016 13:11:24 +0000 (15:11 +0200)
src/app.cc
src/dataset.inl
src/metascene.cc
src/scene.cc

index 9e5eba3..665ded4 100644 (file)
@@ -32,7 +32,7 @@ SceneSet sceneman;
 unsigned int sdr_ltmap, sdr_ltmap_notex;
 
 static float cam_dist = 0.0;
-static float cam_theta, cam_phi = 20;
+static float cam_theta, cam_phi;
 static Vec3 cam_pos;
 static float floor_y;  // last floor height
 static float user_eye_height = 165;
@@ -105,7 +105,9 @@ bool app_init(int argc, char **argv)
        }
 
        cam_pos = mscn->start_pos;
-       // TODO use start_rot
+       Vec3 dir = rotate(Vec3(0, 0, 1), mscn->start_rot);
+       dir.y = 0;
+       cam_theta = rad_to_deg(acos(dot(dir, Vec3(0, 0, 1))));
 
        if(!(sdr_ltmap_notex = create_program_load("sdr/lightmap.v.glsl", "sdr/lightmap-notex.p.glsl"))) {
                return false;
index bf6140c..ca01ea2 100644 (file)
@@ -59,6 +59,7 @@ int DataSet<T>::dataset_load_func(const char *fname, int id, void *cls)
 {
        DataSet<T> *dset = (DataSet<T>*)cls;
        T data = (T)resman_get_res_data(dset->rman, id);
+       if(!data) return -1;
 
        if(!dset->load(data, fname)) {
                return -1;
index 399295f..e0b2b20 100644 (file)
@@ -102,7 +102,8 @@ static bool proc_node(MetaScene *mscn, struct ts_node *node)
 
 
 struct SceneData {
-       std::string walkmesh_regexp;
+       MetaScene *meta;
+       std::string walkmesh_regexp, spawn_regexp;
        std::vector<MaterialEdit> mtledit;
 };
 
@@ -111,6 +112,7 @@ static bool proc_scenefile(MetaScene *mscn, struct ts_node *node)
        const char *fname = ts_get_attr_str(node, "file");
        if(fname) {
                SceneData *sdat = new SceneData;
+               sdat->meta = mscn;
 
                // datapath
                struct ts_attr *adpath = attr_inscope(node, "datapath");
@@ -125,6 +127,28 @@ static bool proc_scenefile(MetaScene *mscn, struct ts_node *node)
                        sdat->walkmesh_regexp = std::string(awmesh->val.str);
                }
 
+               // spawn node
+               struct ts_attr *awspawn = attr_inscope(node, "spawn");
+               if(awspawn) {
+                       switch(awspawn->val.type) {
+                       case TS_VECTOR:
+                               mscn->start_pos = Vec3(awspawn->val.vec[0], awspawn->val.vec[1],
+                                               awspawn->val.vec[2]);
+                               break;
+
+                       case TS_STRING:
+                       default:
+                               sdat->spawn_regexp = std::string(awspawn->val.str);
+                       }
+               }
+               if((awspawn = attr_inscope(node, "spawn_rot")) && awspawn->val.type == TS_VECTOR) {
+                       Quat rot;
+                       rot.rotate(Vec3(1, 0, 0), deg_to_rad(awspawn->val.vec[0]));
+                       rot.rotate(Vec3(0, 1, 0), deg_to_rad(awspawn->val.vec[1]));
+                       rot.rotate(Vec3(0, 0, 1), deg_to_rad(awspawn->val.vec[2]));
+                       mscn->start_rot = rot;
+               }
+
                int namesz = mscn->datamap.lookup(fname, 0, 0);
                char *namebuf = (char*)alloca(namesz + 1);
                if(mscn->datamap.lookup(fname, namebuf, namesz + 1)) {
@@ -184,6 +208,30 @@ bool MetaScene::scene_loaded(Scene *newscn)
                delete wscn;
        }
 
+       // extract the spawn node
+       if(!sdat->spawn_regexp.empty() && (wscn = newscn->extract_nodes(sdat->spawn_regexp.c_str()))) {
+
+               int nmeshes = wscn->meshes.size();
+               int nnodes = wscn->nodes ? wscn->nodes->get_num_children() : 0;
+
+               if(nmeshes) {
+                       Vec3 pos;
+                       for(int i=0; i<nmeshes; i++) {
+                               const Sphere &bsph = wscn->meshes[i]->get_bsphere();
+                               pos += bsph.center;
+                       }
+                       pos /= (float)nmeshes;
+                       sdat->meta->start_pos = pos;
+
+               } else if(nnodes) {
+                       // just use the first one
+                       SceneNode *first = wscn->nodes->get_child(0);
+                       sdat->meta->start_pos = first->get_position();
+                       sdat->meta->start_rot = first->get_rotation();
+               }
+               delete wscn;
+       }
+
        int num_medits = sdat->mtledit.size();
        for(int i=0; i<num_medits; i++) {
                // perform material edits
index a31a3ce..683c9ec 100644 (file)
@@ -182,6 +182,8 @@ static void find_nodes_rec(std::list<SceneNode*> *res, SceneNode *tree, const st
 
 Scene *Scene::extract_nodes(const char *qstr)
 {
+       if(!nodes) return 0;
+
        std::regex re{qstr};
 
        std::list<SceneNode*> nodelist;