]> git.tdb.fi Git - libs/gl.git/blobdiff - source/object.cpp
Get all blocks for the program before applying them
[libs/gl.git] / source / object.cpp
index 70c2aeeec8b616dbda605255f7463f87fd795add..f23f66584880d0bd18a4bf55d9eaf6cc0dba3e7e 100644 (file)
@@ -1,6 +1,5 @@
 #include <msp/datafile/collection.h>
 #include <msp/strings/format.h>
-#include "except.h"
 #include "material.h"
 #include "mesh.h"
 #include "object.h"
@@ -20,6 +19,12 @@ Object::Object():
        meshes(1)
 { }
 
+Object::Object(const Mesh *m, const Technique *t)
+{
+       set_mesh(m);
+       set_technique(t);
+}
+
 Object::~Object()
 {
 }
@@ -27,7 +32,7 @@ Object::~Object()
 void Object::set_mesh(unsigned i, const Mesh *m)
 {
        if(i>meshes.size())
-               throw InvalidParameterValue("LODs must be continuous");
+               throw invalid_argument("Object::set_mesh");
 
        if(i==meshes.size())
                meshes.push_back(m);
@@ -118,8 +123,6 @@ Object::Loader::Loader(Object &o, Collection &c):
 
 void Object::Loader::init()
 {
-       allow_pointer_reload = false;
-
        add("mesh",     &Loader::mesh_inline);
        add("mesh",     &Loader::mesh_inline_lod);
        add("mesh",     &Loader::mesh);
@@ -141,7 +144,7 @@ void Object::Loader::mesh_inline()
 void Object::Loader::mesh_inline_lod(unsigned l)
 {
        if(l>obj.meshes.size())
-               throw InvalidParameterValue("LODs must be continuous");
+               throw invalid_argument("Object::Loader::mesh_inline_lod");
 
        RefPtr<Mesh> msh = new Mesh;
        load_sub(*msh);
@@ -153,12 +156,12 @@ void Object::Loader::mesh_inline_lod(unsigned l)
 
 void Object::Loader::mesh(const std::string &n)
 {
-       obj.set_mesh(get_collection().get<Mesh>(n));
+       obj.set_mesh(&get_collection().get<Mesh>(n));
 }
 
 void Object::Loader::mesh_lod(unsigned l, const string &n)
 {
-       obj.set_mesh(l, get_collection().get<Mesh>(n));
+       obj.set_mesh(l, &get_collection().get<Mesh>(n));
 }
 
 void Object::Loader::technique_inline()
@@ -173,7 +176,7 @@ void Object::Loader::technique_inline()
 
 void Object::Loader::technique(const std::string &n)
 {
-       obj.set_technique(get_collection().get<Technique>(n));
+       obj.set_technique(&get_collection().get<Technique>(n));
 }
 
 } // namespace GL