lovr/src/api/types/mesh.c

333 lines
11 KiB
C
Raw Normal View History

2017-12-10 20:40:37 +00:00
#include "api.h"
2018-03-22 05:03:03 +00:00
#include "graphics/graphics.h"
2018-03-21 21:48:46 +00:00
#include <limits.h>
2017-03-11 22:13:49 +00:00
int l_lovrMeshAttachAttributes(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
Mesh* other = luax_checktype(L, 2, Mesh);
int instanceDivisor = luaL_optinteger(L, 3, 0);
if (lua_isnoneornil(L, 4)) {
VertexFormat* format = lovrMeshGetVertexFormat(other);
for (int i = 0; i < format->count; i++) {
lovrMeshAttachAttribute(mesh, other, format->attributes[i].name, instanceDivisor);
}
} else if (lua_istable(L, 4)) {
int length = lua_objlen(L, 4);
for (int i = 0; i < length; i++) {
lua_rawgeti(L, 4, i + 1);
lovrMeshAttachAttribute(mesh, other, lua_tostring(L, -1), instanceDivisor);
lua_pop(L, 1);
}
} else {
int top = lua_gettop(L);
for (int i = 4; i <= top; i++) {
lovrMeshAttachAttribute(mesh, other, lua_tostring(L, i), instanceDivisor);
}
}
return 0;
}
int l_lovrMeshDetachAttributes(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
if (lua_isuserdata(L, 2)) {
Mesh* other = luax_checktype(L, 2, Mesh);
VertexFormat* format = lovrMeshGetVertexFormat(other);
for (int i = 0; i < format->count; i++) {
lovrMeshDetachAttribute(mesh, format->attributes[i].name);
}
} else if (lua_istable(L, 2)) {
int length = lua_objlen(L, 2);
for (int i = 0; i < length; i++) {
lua_rawgeti(L, 2, i + 1);
lovrMeshDetachAttribute(mesh, lua_tostring(L, -1));
lua_pop(L, 1);
}
} else {
int top = lua_gettop(L);
for (int i = 2; i <= top; i++) {
lovrMeshDetachAttribute(mesh, lua_tostring(L, i));
}
}
return 0;
}
2018-01-27 21:43:20 +00:00
int l_lovrMeshDrawInstanced(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
int instances = luaL_checkinteger(L, 2);
float transform[16];
luax_readtransform(L, 3, transform, 1);
2018-03-22 15:45:05 +00:00
lovrGraphicsDraw(mesh, transform, SHADER_DEFAULT, instances);
2018-01-27 21:43:20 +00:00
return 0;
}
int l_lovrMeshDraw(lua_State* L) {
lua_pushinteger(L, 1);
lua_insert(L, 2);
return l_lovrMeshDrawInstanced(L);
}
2017-03-11 22:13:49 +00:00
int l_lovrMeshGetDrawMode(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
luax_pushenum(L, &MeshDrawModes, lovrMeshGetDrawMode(mesh));
return 1;
}
int l_lovrMeshSetDrawMode(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
MeshDrawMode* drawMode = (MeshDrawMode*) luax_checkenum(L, 2, &MeshDrawModes, "mesh draw mode");
lovrMeshSetDrawMode(mesh, *drawMode);
return 0;
}
2018-02-11 01:27:29 +00:00
int l_lovrMeshGetVertexFormat(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
return luax_pushvertexformat(L, format);
}
2017-03-11 22:13:49 +00:00
int l_lovrMeshGetVertexCount(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
2018-02-11 01:27:29 +00:00
lua_pushinteger(L, lovrMeshGetVertexCount(mesh));
2017-03-11 22:13:49 +00:00
return 1;
}
int l_lovrMeshGetVertex(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
int index = luaL_checkint(L, 2) - 1;
2018-03-21 21:48:46 +00:00
VertexPointer vertex = lovrMeshMapVertices(mesh, index, 1, true, false);
2018-01-27 02:58:36 +00:00
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
2018-01-27 21:43:20 +00:00
return luax_pushvertex(L, &vertex, format);
2017-03-11 22:13:49 +00:00
}
int l_lovrMeshSetVertex(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
int index = luaL_checkint(L, 2) - 1;
2018-02-11 01:27:29 +00:00
lovrAssert(index >= 0 && index < lovrMeshGetVertexCount(mesh), "Invalid mesh vertex index: %d", index + 1);
2018-01-27 02:58:36 +00:00
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
2018-03-21 21:48:46 +00:00
VertexPointer vertex = lovrMeshMapVertices(mesh, index, 1, false, true);
2018-02-11 01:27:29 +00:00
luax_setvertex(L, 3, &vertex, format);
2017-03-11 22:13:49 +00:00
return 0;
}
int l_lovrMeshGetVertexAttribute(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
int vertexIndex = luaL_checkint(L, 2) - 1;
int attributeIndex = luaL_checkint(L, 3) - 1;
2018-01-27 02:58:36 +00:00
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
2018-02-11 01:27:29 +00:00
lovrAssert(vertexIndex >= 0 && vertexIndex < lovrMeshGetVertexCount(mesh), "Invalid mesh vertex: %d", vertexIndex + 1);
lovrAssert(attributeIndex >= 0 && attributeIndex < format->count, "Invalid mesh attribute: %d", attributeIndex + 1);
2018-01-27 02:58:36 +00:00
Attribute attribute = format->attributes[attributeIndex];
2018-03-21 21:48:46 +00:00
VertexPointer vertex = lovrMeshMapVertices(mesh, vertexIndex, 1, true, false);
2018-01-27 20:51:41 +00:00
vertex.bytes += attribute.offset;
2018-02-11 01:27:29 +00:00
return luax_pushvertexattribute(L, &vertex, attribute);
2017-03-11 22:13:49 +00:00
}
int l_lovrMeshSetVertexAttribute(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
int vertexIndex = luaL_checkint(L, 2) - 1;
int attributeIndex = luaL_checkint(L, 3) - 1;
2018-01-27 02:58:36 +00:00
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
2018-02-11 01:27:29 +00:00
lovrAssert(vertexIndex >= 0 && vertexIndex < lovrMeshGetVertexCount(mesh), "Invalid mesh vertex: %d", vertexIndex + 1);
lovrAssert(attributeIndex >= 0 && attributeIndex < format->count, "Invalid mesh attribute: %d", attributeIndex + 1);
2018-01-27 02:58:36 +00:00
Attribute attribute = format->attributes[attributeIndex];
2018-03-21 21:48:46 +00:00
VertexPointer vertex = lovrMeshMapVertices(mesh, vertexIndex, 1, false, true);
2018-01-27 20:51:41 +00:00
vertex.bytes += attribute.offset;
2018-02-11 01:27:29 +00:00
luax_setvertexattribute(L, 4, &vertex, attribute);
2017-03-11 22:13:49 +00:00
return 0;
}
int l_lovrMeshSetVertices(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
2018-01-27 02:58:36 +00:00
VertexFormat* format = lovrMeshGetVertexFormat(mesh);
2018-03-11 18:43:01 +00:00
uint32_t capacity = lovrMeshGetVertexCount(mesh);
VertexData* vertexData = NULL;
uint32_t sourceSize;
if (lua_istable(L, 2)) {
sourceSize = lua_objlen(L, 2);
} else {
vertexData = luax_checktype(L, 2, VertexData);
sourceSize = vertexData->count;
bool sameFormat = !memcmp(&vertexData->format, format, sizeof(VertexFormat));
lovrAssert(sameFormat, "Mesh and VertexData must have the same format to copy vertices");
}
uint32_t start = luaL_optnumber(L, 3, 1) - 1;
uint32_t count = luaL_optinteger(L, 4, sourceSize);
lovrAssert(start + count <= capacity, "Overflow in Mesh:setVertices: Mesh can only hold %d vertices", capacity);
lovrAssert(count <= sourceSize, "Cannot set %d vertices on Mesh: source only has %d vertices", count, sourceSize);
2018-03-21 21:48:46 +00:00
VertexPointer vertices = lovrMeshMapVertices(mesh, start, count, false, true);
2018-03-11 18:43:01 +00:00
if (vertexData) {
memcpy(vertices.raw, vertexData->blob.data, count * format->stride);
} else {
for (uint32_t i = 0; i < count; i++) {
lua_rawgeti(L, 2, i + 1);
luaL_checktype(L, -1, LUA_TTABLE);
luax_setvertex(L, -1, &vertices, format);
lua_pop(L, 1);
}
2017-03-11 22:13:49 +00:00
}
return 0;
}
int l_lovrMeshGetVertexMap(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
2018-03-21 21:48:46 +00:00
uint32_t count;
size_t size;
IndexPointer indices = lovrMeshReadIndices(mesh, &count, &size);
2017-03-11 22:13:49 +00:00
2018-03-21 21:48:46 +00:00
if (count == 0 || !indices.raw) {
2017-03-11 22:13:49 +00:00
lua_pushnil(L);
return 1;
}
lua_newtable(L);
for (size_t i = 0; i < count; i++) {
2018-03-21 21:48:46 +00:00
uint32_t index = size == sizeof(uint32_t) ? indices.ints[i] : indices.shorts[i];
2018-01-27 20:51:41 +00:00
lua_pushinteger(L, index + 1);
2017-03-11 22:13:49 +00:00
lua_rawseti(L, -2, i + 1);
}
return 1;
}
int l_lovrMeshSetVertexMap(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
if (lua_isnoneornil(L, 2)) {
2018-03-21 21:48:46 +00:00
lovrMeshWriteIndices(mesh, 0, 0);
2017-03-11 22:13:49 +00:00
return 0;
}
if (lua_type(L, 2) == LUA_TUSERDATA) {
Blob* blob = luax_checktypeof(L, 2, Blob);
size_t size = luaL_optinteger(L, 3, 4);
lovrAssert(size == 2 || size == 4, "Size of Mesh indices should be 2 bytes or 4 bytes");
uint32_t count = blob->size / size;
IndexPointer indices = lovrMeshWriteIndices(mesh, count, size);
memcpy(indices.raw, blob->data, blob->size);
} else {
luaL_checktype(L, 2, LUA_TTABLE);
uint32_t count = lua_objlen(L, 2);
uint32_t vertexCount = lovrMeshGetVertexCount(mesh);
size_t size = vertexCount > USHRT_MAX ? sizeof(uint32_t) : sizeof(uint16_t);
IndexPointer indices = lovrMeshWriteIndices(mesh, count, size);
2017-03-11 22:13:49 +00:00
for (uint32_t i = 0; i < count; i++) {
lua_rawgeti(L, 2, i + 1);
if (!lua_isnumber(L, -1)) {
return luaL_error(L, "Mesh vertex map index #%d must be numeric", i);
}
2017-03-11 22:13:49 +00:00
uint32_t index = lua_tointeger(L, -1);
if (index > vertexCount || index < 1) {
return luaL_error(L, "Invalid vertex map value: %d", index);
}
if (size == sizeof(uint16_t)) {
indices.shorts[i] = index - 1;
} else {
indices.ints[i] = index - 1;
}
lua_pop(L, 1);
}
2017-03-11 22:13:49 +00:00
}
return 0;
}
int l_lovrMeshIsAttributeEnabled(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
const char* attribute = luaL_checkstring(L, 2);
lua_pushboolean(L, lovrMeshIsAttributeEnabled(mesh, attribute));
return 1;
}
int l_lovrMeshSetAttributeEnabled(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
const char* attribute = luaL_checkstring(L, 2);
2017-10-31 08:14:09 +00:00
bool enabled = lua_toboolean(L, 3);
lovrMeshSetAttributeEnabled(mesh, attribute, enabled);
return 0;
}
2017-03-11 22:13:49 +00:00
int l_lovrMeshGetDrawRange(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
2018-03-21 21:48:46 +00:00
int start, count;
lovrMeshGetDrawRange(mesh, &start, &count);
if (count == 0) {
2017-03-11 22:13:49 +00:00
lua_pushnil(L);
return 1;
}
lua_pushinteger(L, start + 1);
lua_pushinteger(L, count);
return 2;
}
int l_lovrMeshSetDrawRange(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
if (lua_isnoneornil(L, 2)) {
2018-03-21 21:48:46 +00:00
lovrMeshSetDrawRange(mesh, 0, 0);
2017-03-11 22:13:49 +00:00
return 0;
}
int rangeStart = luaL_checkinteger(L, 2) - 1;
int rangeCount = luaL_checkinteger(L, 3);
2017-10-22 14:20:40 +00:00
lovrMeshSetDrawRange(mesh, rangeStart, rangeCount);
2017-03-11 22:13:49 +00:00
return 0;
}
int l_lovrMeshGetMaterial(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
Material* material = lovrMeshGetMaterial(mesh);
if (material) {
luax_pushtype(L, Material, material);
} else {
lua_pushnil(L);
}
return 1;
}
int l_lovrMeshSetMaterial(lua_State* L) {
Mesh* mesh = luax_checktype(L, 1, Mesh);
if (lua_isnoneornil(L, 2)) {
lovrMeshSetMaterial(mesh, NULL);
} else {
Material* material = luax_checktype(L, 2, Material);
lovrMeshSetMaterial(mesh, material);
}
return 0;
}
2017-03-11 22:13:49 +00:00
const luaL_Reg lovrMesh[] = {
{ "attachAttributes", l_lovrMeshAttachAttributes },
{ "detachAttributes", l_lovrMeshDetachAttributes },
{ "drawInstanced", l_lovrMeshDrawInstanced },
2017-03-11 22:13:49 +00:00
{ "draw", l_lovrMeshDraw },
{ "getVertexFormat", l_lovrMeshGetVertexFormat },
{ "getVertexCount", l_lovrMeshGetVertexCount },
{ "getVertex", l_lovrMeshGetVertex },
{ "setVertex", l_lovrMeshSetVertex },
{ "getVertexAttribute", l_lovrMeshGetVertexAttribute },
{ "setVertexAttribute", l_lovrMeshSetVertexAttribute },
{ "setVertices", l_lovrMeshSetVertices },
{ "getVertexMap", l_lovrMeshGetVertexMap },
{ "setVertexMap", l_lovrMeshSetVertexMap },
{ "isAttributeEnabled", l_lovrMeshIsAttributeEnabled },
{ "setAttributeEnabled", l_lovrMeshSetAttributeEnabled },
2017-03-11 22:13:49 +00:00
{ "getDrawMode", l_lovrMeshGetDrawMode },
{ "setDrawMode", l_lovrMeshSetDrawMode },
{ "getDrawRange", l_lovrMeshGetDrawRange },
{ "setDrawRange", l_lovrMeshSetDrawRange },
{ "getMaterial", l_lovrMeshGetMaterial },
{ "setMaterial", l_lovrMeshSetMaterial },
2017-03-11 22:13:49 +00:00
{ NULL, NULL }
};