]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - pr_cmds.c
Added Quake 2 sprite support (.sp2 files). Added the corresponding QC extension ...
[xonotic/darkplaces.git] / pr_cmds.c
index e57ebe3927067778d57f07e4dba5f90d4947e054..316bc2ee50ad8cdd9cbabc3426bd77fff26ab5a3 100644 (file)
--- a/pr_cmds.c
+++ b/pr_cmds.c
@@ -128,6 +128,7 @@ char *ENGINE_EXTENSIONS =
 "DP_QC_TRACE_MOVETYPE_WORLDONLY "
 "DP_QC_VECTORVECTORS "
 "DP_QUAKE2_MODEL "
+"DP_QUAKE2_SPRITE "
 "DP_QUAKE3_MODEL "
 "DP_REGISTERCVAR "
 "DP_SND_DIRECTIONLESSATTNNONE "
@@ -2606,13 +2607,13 @@ static void clippointtosurface(msurface_t *surface, vec3_t p, vec3_t out)
        float *v[3], facenormal[3], edgenormal[3], sidenormal[3], temp[3], offsetdist, dist, bestdist;
        bestdist = 1000000000;
        VectorCopy(p, out);
-       for (i = 0;i < surface->mesh.num_triangles;i++)
+       for (i = 0;i < surface->num_triangles;i++)
        {
                // clip original point to each triangle of the surface and find the
                // triangle that is closest
-               v[0] = surface->mesh.data_vertex3f + surface->mesh.data_element3i[i * 3 + 0] * 3;
-               v[1] = surface->mesh.data_vertex3f + surface->mesh.data_element3i[i * 3 + 1] * 3;
-               v[2] = surface->mesh.data_vertex3f + surface->mesh.data_element3i[i * 3 + 2] * 3;
+               v[0] = (surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex) + (surface->groupmesh->data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 0] * 3;
+               v[1] = (surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex) + (surface->groupmesh->data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 1] * 3;
+               v[2] = (surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex) + (surface->groupmesh->data_element3i + 3 * surface->num_firsttriangle)[i * 3 + 2] * 3;
                TriangleNormal(v[0], v[1], v[2], facenormal);
                VectorNormalize(facenormal);
                offsetdist = DotProduct(v[0], facenormal) - DotProduct(p, facenormal);
@@ -2663,7 +2664,7 @@ void PF_getsurfacenumpoints(void)
        }
 
        // note: this (incorrectly) assumes it is a simple polygon
-       G_FLOAT(OFS_RETURN) = surface->mesh.num_vertices;
+       G_FLOAT(OFS_RETURN) = surface->num_vertices;
 }
 //PF_getsurfacepoint,     // #435 vector(entity e, float s, float n) getsurfacepoint = #435;
 void PF_getsurfacepoint(void)
@@ -2679,10 +2680,10 @@ void PF_getsurfacepoint(void)
                return;
        // note: this (incorrectly) assumes it is a simple polygon
        pointnum = G_FLOAT(OFS_PARM2);
-       if (pointnum < 0 || pointnum >= surface->mesh.num_vertices)
+       if (pointnum < 0 || pointnum >= surface->num_vertices)
                return;
        // FIXME: implement rotation/scaling
-       VectorAdd(&surface->mesh.data_vertex3f[pointnum * 3], ed->v->origin, G_VECTOR(OFS_RETURN));
+       VectorAdd(&(surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex)[pointnum * 3], ed->v->origin, G_VECTOR(OFS_RETURN));
 }
 //PF_getsurfacenormal,    // #436 vector(entity e, float s) getsurfacenormal = #436;
 void PF_getsurfacenormal(void)
@@ -2696,7 +2697,7 @@ void PF_getsurfacenormal(void)
        // note: this (incorrectly) assumes it is a simple polygon
        // note: this only returns the first triangle, so it doesn't work very
        // well for curved surfaces or arbitrary meshes
-       TriangleNormal(surface->mesh.data_vertex3f, surface->mesh.data_vertex3f + 3, surface->mesh.data_vertex3f + 6, normal);
+       TriangleNormal((surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex), (surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex) + 3, (surface->groupmesh->data_vertex3f + 3 * surface->num_firstvertex) + 6, normal);
        VectorNormalize(normal);
        VectorCopy(normal, G_VECTOR(OFS_RETURN));
 }
@@ -3059,7 +3060,7 @@ void PF_setattachment (void)
        edict_t *tagentity = G_EDICT(OFS_PARM1);
        char *tagname = G_STRING(OFS_PARM2);
        eval_t *v;
-       int i, modelindex;
+       int modelindex;
        model_t *model;
 
        if (e == sv.edicts)
@@ -3082,15 +3083,7 @@ void PF_setattachment (void)
                modelindex = (int)tagentity->v->modelindex;
                if (modelindex >= 0 && modelindex < MAX_MODELS && (model = sv.models[modelindex]))
                {
-                       if (model->data_overridetagnamesforskin && (unsigned int)tagentity->v->skin < (unsigned int)model->numskins && model->data_overridetagnamesforskin[(unsigned int)tagentity->v->skin].num_overridetagnames)
-                               for (i = 0;i < model->data_overridetagnamesforskin[(unsigned int)tagentity->v->skin].num_overridetagnames;i++)
-                                       if (!strcmp(tagname, model->data_overridetagnamesforskin[(unsigned int)tagentity->v->skin].data_overridetagnames[i].name))
-                                               v->_float = i + 1;
-                       // FIXME: use a model function to get tag info (need to handle skeletal)
-                       if (v->_float == 0 && model->alias.aliasnum_tags)
-                               for (i = 0;i < model->alias.aliasnum_tags;i++)
-                                       if (!strcmp(tagname, model->alias.aliasdata_tags[i].name))
-                                               v->_float = i + 1;
+                       v->_float = Mod_Alias_GetTagIndexForName(model, tagentity->v->skin, tagname);
                        if (v->_float == 0)
                                Con_DPrintf("setattachment(edict %i, edict %i, string \"%s\"): tried to find tag named \"%s\" on entity %i (model \"%s\") but could not find it\n", NUM_FOR_EDICT(e), NUM_FOR_EDICT(tagentity), tagname, tagname, NUM_FOR_EDICT(tagentity), model->name);
                }
@@ -3104,7 +3097,7 @@ void PF_setattachment (void)
 
 int SV_GetTagIndex (edict_t *e, char *tagname)
 {
-       int tagindex, i;
+       int i;
        model_t *model;
 
        i = e->v->modelindex;
@@ -3112,30 +3105,7 @@ int SV_GetTagIndex (edict_t *e, char *tagname)
                return -1;
        model = sv.models[i];
 
-       tagindex = -1;
-       if (model->data_overridetagnamesforskin && (unsigned int)e->v->skin < (unsigned int)model->numskins && model->data_overridetagnamesforskin[(unsigned int)e->v->skin].num_overridetagnames)
-       {
-               for (i = 0; i < model->data_overridetagnamesforskin[(unsigned int)e->v->skin].num_overridetagnames; i++)
-               {
-                       if (!strcmp(tagname, model->data_overridetagnamesforskin[(unsigned int)e->v->skin].data_overridetagnames[i].name))
-                       {
-                               tagindex = i;
-                               break;
-                       }
-               }
-       }
-       if (tagindex == -1)
-       {
-               for (i = 0;i < model->alias.aliasnum_tags; i++)
-               {
-                       if (!(strcmp(tagname, model->alias.aliasdata_tags[i].name)))
-                       {
-                               tagindex = i;
-                               break;
-                       }
-               }
-       }
-       return tagindex + 1;
+       return Mod_Alias_GetTagIndexForName(model, e->v->skin, tagname);
 };
 
 // Warnings/errors code:
@@ -3151,7 +3121,7 @@ extern cvar_t cl_bobup;
 int SV_GetTagMatrix (matrix4x4_t *out, edict_t *ent, int tagindex)
 {
        eval_t *val;
-       int modelindex, reqtag, reqframe, attachloop;
+       int modelindex, reqframe, attachloop;
        matrix4x4_t entitymatrix, tagmatrix, attachmatrix;
        edict_t *attachent;
        model_t *model;
@@ -3168,25 +3138,18 @@ int SV_GetTagMatrix (matrix4x4_t *out, edict_t *ent, int tagindex)
                return 3;
 
        model = sv.models[modelindex];
-       reqtag = model->alias.aliasnum_tags;
-
-       if (tagindex <= 0 || tagindex > reqtag)
-       {
-               if (reqtag && tagindex) // Only appear if model has no tags or not-null tag requested
-                       return 4;
-               return 0;
-       }
 
-       if (ent->v->frame < 0 || ent->v->frame > model->alias.aliasnum_tagframes)
-               reqframe = model->numframes - 1; // if model has wrong frame, engine automatically switches to model last frame
+       if (ent->v->frame >= 0 && ent->v->frame < model->numframes && model->animscenes)
+               reqframe = model->animscenes[(int)ent->v->frame].firstframe;
        else
-               reqframe = ent->v->frame;
+               reqframe = 0; // if model has wrong frame, engine automatically switches to model first frame
 
        // get initial tag matrix
        if (tagindex)
        {
-               reqtag = (tagindex - 1) + ent->v->frame*model->alias.aliasnum_tags;
-               Matrix4x4_Copy(&tagmatrix, &model->alias.aliasdata_tags[reqtag].matrix);
+               int ret = Mod_Alias_GetTagMatrix(model, reqframe, tagindex - 1, &tagmatrix);
+               if (ret)
+                       return ret;
        }
        else
                Matrix4x4_CreateIdentity(&tagmatrix);
@@ -3198,18 +3161,10 @@ int SV_GetTagMatrix (matrix4x4_t *out, edict_t *ent, int tagindex)
                {
                        attachent = EDICT_NUM(val->edict); // to this it entity our entity is attached
                        val = GETEDICTFIELDVALUE(ent, eval_tag_index);
-                       Matrix4x4_CreateIdentity(&attachmatrix);
-                       if (val->_float >= 1 && attachent->v->modelindex >= 1 && attachent->v->modelindex < MAX_MODELS)
-                       {
-                               model = sv.models[(int)attachent->v->modelindex];
-                               if (val->_float < model->alias.aliasnum_tags)
-                               {
-                                       // got tagname on parent entity attachment tag via tag_index (and got it's matrix)
-                                       model = sv.models[(int)attachent->v->modelindex];
-                                       reqtag = (val->_float - 1) + attachent->v->frame*model->alias.aliasnum_tags;
-                                       Matrix4x4_Copy(&attachmatrix, &model->alias.aliasdata_tags[reqtag].matrix);
-                               }
-                       }
+                       if (val->_float >= 1 && attachent->v->modelindex >= 1 && attachent->v->modelindex < MAX_MODELS && (model = sv.models[(int)attachent->v->modelindex]) && model->animscenes && attachent->v->frame >= 0 && attachent->v->frame < model->numframes)
+                               Mod_Alias_GetTagMatrix(model, model->animscenes[(int)attachent->v->frame].firstframe, val->_float - 1, &attachmatrix);
+                       else
+                               Matrix4x4_CreateIdentity(&attachmatrix);
 
                        // apply transformation by child entity matrix
                        val = GETEDICTFIELDVALUE(ent, eval_scale);