89 lines
2.3 KiB
C++
89 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2012-2013 Stephen Williams (steve@icarus.com)
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form 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.
|
|
*/
|
|
|
|
# include "vvp_cobject.h"
|
|
# include "class_type.h"
|
|
# include <iostream>
|
|
# include <cassert>
|
|
|
|
using namespace std;
|
|
|
|
vvp_cobject::vvp_cobject(const class_type*defn)
|
|
: defn_(defn), properties_(defn->instance_new())
|
|
{
|
|
}
|
|
|
|
vvp_cobject::~vvp_cobject()
|
|
{
|
|
defn_->instance_delete(properties_);
|
|
properties_ = 0;
|
|
}
|
|
|
|
void vvp_cobject::set_vec4(size_t pid, const vvp_vector4_t&val)
|
|
{
|
|
defn_->set_vec4(properties_, pid, val);
|
|
}
|
|
|
|
void vvp_cobject::get_vec4(size_t pid, vvp_vector4_t&val)
|
|
{
|
|
defn_->get_vec4(properties_, pid, val);
|
|
}
|
|
|
|
void vvp_cobject::set_real(size_t pid, double val)
|
|
{
|
|
defn_->set_real(properties_, pid, val);
|
|
}
|
|
|
|
double vvp_cobject::get_real(size_t pid)
|
|
{
|
|
return defn_->get_real(properties_, pid);
|
|
}
|
|
|
|
void vvp_cobject::set_string(size_t pid, const string&val)
|
|
{
|
|
defn_->set_string(properties_, pid, val);
|
|
}
|
|
|
|
string vvp_cobject::get_string(size_t pid)
|
|
{
|
|
return defn_->get_string(properties_, pid);
|
|
}
|
|
|
|
void vvp_cobject::set_object(size_t pid, const vvp_object_t&val, size_t idx)
|
|
{
|
|
defn_->set_object(properties_, pid, val, idx);
|
|
}
|
|
|
|
void vvp_cobject::get_object(size_t pid, vvp_object_t&val, size_t idx)
|
|
{
|
|
return defn_->get_object(properties_, pid, val, idx);
|
|
}
|
|
|
|
void vvp_cobject::shallow_copy(const vvp_object*obj)
|
|
{
|
|
const vvp_cobject*that = dynamic_cast<const vvp_cobject*>(obj);
|
|
assert(that);
|
|
|
|
assert(defn_ == that->defn_);
|
|
|
|
for (size_t idx = 0 ; idx < defn_->property_count() ; idx += 1)
|
|
defn_->copy_property(properties_, idx, that->properties_);
|
|
|
|
}
|