X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbatch.cpp;h=f14cc307ff71b92deb212e9f759ac70f1c8d69f0;hb=47bfbdc8cf844aa079995fca34a3b906b49a4f66;hp=0f6418b53d2905c51829a56835c5023b5c9fefd3;hpb=0937dda5763a8d790349547da4a18bfdbb140b36;p=libs%2Fgl.git diff --git a/source/batch.cpp b/source/batch.cpp index 0f6418b5..f14cc307 100644 --- a/source/batch.cpp +++ b/source/batch.cpp @@ -12,7 +12,7 @@ using namespace std; namespace { template -void append(vector &data, T i) +void append(vector &data, T i) { data.insert(data.end(), sizeof(T), 0); *(T *)(&data[data.size()-sizeof(T)]) = i; @@ -28,7 +28,7 @@ U convert(T n) } template -void expand(vector &data) +void expand(vector &data) { unsigned count = data.size()/sizeof(T); data.resize(count*sizeof(U)); @@ -37,7 +37,7 @@ void expand(vector &data) } template -void shrink(vector &data) +void shrink(vector &data) { unsigned count = data.size()/sizeof(T); for(unsigned i=0; i0xFE) - throw invalid_operation("Batch::set_data_type"); - else if(t==UNSIGNED_SHORT && max_index>0xFFFE) + if(t==UNSIGNED_SHORT && max_index>0xFFFE) throw invalid_operation("Batch::set_data_type"); - if(data_type==UNSIGNED_BYTE && t==UNSIGNED_SHORT) - expand(data); - else if(data_type==UNSIGNED_BYTE && t==UNSIGNED_INT) - expand(data); - else if(data_type==UNSIGNED_SHORT && t==UNSIGNED_INT) - expand(data); - else if(data_type==UNSIGNED_INT && t==UNSIGNED_BYTE) - shrink(data); - else if(data_type==UNSIGNED_INT && t==UNSIGNED_SHORT) - shrink(data); - else if(data_type==UNSIGNED_SHORT && t==UNSIGNED_BYTE) - shrink(data); - - data_type = t; + if(index_type==UNSIGNED_SHORT && t==UNSIGNED_INT) + expand(data); + else if(index_type==UNSIGNED_INT && t==UNSIGNED_SHORT) + shrink(data); + + index_type = t; update_offset(); dirty = true; } @@ -135,17 +125,17 @@ Batch &Batch::append(const Batch &other) if(other.data.empty()) return *this; + // TODO allow appending triangles to a triangle strip + if(prim_type==POINTS || prim_type==LINES || prim_type==TRIANGLES) ; else if(MSP_primitive_restart) { restart = true; - if(data_type==UNSIGNED_SHORT) - ::append(data, 0xFFFF); - else if(data_type==UNSIGNED_INT) - ::append(data, 0xFFFFFFFF); + if(index_type==UNSIGNED_INT) + ::append(data, 0xFFFFFFFF); else - data.push_back(0xFF); + ::append(data, 0xFFFF); } else if(prim_type==TRIANGLE_STRIP) { @@ -172,36 +162,26 @@ void Batch::append_index(unsigned i) else max_index = max(max_index, i); - if((data_type==UNSIGNED_BYTE || data_type==UNSIGNED_SHORT) && max_index>0xFFFE) - set_data_type(UNSIGNED_INT); - else if(data_type==UNSIGNED_BYTE && max_index>0xFE) - set_data_type(UNSIGNED_SHORT); + if(index_type==UNSIGNED_SHORT && max_index>0xFFFE) + set_index_type(UNSIGNED_INT); - if(data_type==UNSIGNED_SHORT) - ::append(data, i); - else if(data_type==UNSIGNED_INT) - ::append(data, i); + if(index_type==UNSIGNED_INT) + ::append(data, i); else - data.push_back(i); + ::append(data, i); } unsigned Batch::get_index_size() const { - if(data_type==UNSIGNED_SHORT) - return sizeof(unsigned short); - else if(data_type==UNSIGNED_INT) - return sizeof(unsigned); - return sizeof(unsigned char); + return (index_type==UNSIGNED_INT ? sizeof(UInt32) : sizeof(UInt16)); } unsigned Batch::get_index(unsigned i) const { - if(data_type==UNSIGNED_SHORT) - return *(unsigned short *)&data[i*sizeof(unsigned short)]; - else if(data_type==UNSIGNED_INT) - return *(unsigned *)&data[i*sizeof(unsigned )]; + if(index_type==UNSIGNED_INT) + return *(UInt32 *)&data[i*sizeof(UInt32)]; else - return data[i]; + return *(UInt16 *)&data[i*sizeof(UInt16)]; } void Batch::draw() const @@ -209,7 +189,7 @@ void Batch::draw() const BindRestore _bind_ibuf(get_buffer(), ELEMENT_ARRAY_BUFFER); const void *data_ptr = setup_draw(); - glDrawElements(prim_type, size(), data_type, data_ptr); + glDrawElements(prim_type, size(), index_type, data_ptr); } void Batch::draw_instanced(unsigned count) const @@ -219,20 +199,17 @@ void Batch::draw_instanced(unsigned count) const BindRestore _bind_ibuf(get_buffer(), ELEMENT_ARRAY_BUFFER); const void *data_ptr = setup_draw(); - glDrawElementsInstanced(prim_type, size(), data_type, data_ptr, count); + glDrawElementsInstanced(prim_type, size(), index_type, data_ptr, count); } const void *Batch::setup_draw() const { + if(!get_buffer()) + throw invalid_operation("Batch::setup_draw"); + if(restart) { - unsigned index; - if(data_type==UNSIGNED_SHORT) - index = 0xFFFF; - else if(data_type==UNSIGNED_INT) - index = 0xFFFFFFFF; - else - index = 0xFF; + unsigned index = (index_type==UNSIGNED_INT ? 0xFFFFFFFF : 0xFFFF); if(index!=restart_index) set_restart_index(index); @@ -240,15 +217,9 @@ const void *Batch::setup_draw() const else if(restart_index && restart_index<=max_index) set_restart_index(0); - if(get_buffer()) - { - if(dirty) - update_buffer(); + refresh(); - return reinterpret_cast(get_offset()); - } - else - return &data[0]; + return reinterpret_cast(get_offset()); } void Batch::set_restart_index(unsigned index)