Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Commits
aa3455dc
Commit
aa3455dc
authored
10 months ago
by
Lactozilla
Browse files
Options
Downloads
Plain Diff
Merge branch 'spr2defaults-fix' into 'next'
SPR2defaults fix See merge request
!2461
parents
8b1ddcbd
b7fdcdf2
No related branches found
No related tags found
1 merge request
!2461
SPR2defaults fix
Pipeline
#4274
canceled
10 months ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hardware/hw_md2.c
+12
-7
12 additions, 7 deletions
src/hardware/hw_md2.c
with
12 additions
and
7 deletions
src/hardware/hw_md2.c
+
12
−
7
View file @
aa3455dc
...
...
@@ -1093,19 +1093,19 @@ static modelspr2frames_t *HWR_GetModelSprite2Frames(md2_t *md2, UINT16 spr2)
return
&
md2
->
model
->
superspr2frames
[
spr2
];
}
if
(
md2
->
model
->
spr2frames
)
if
(
md2
->
model
->
spr2frames
[
spr2
].
numframes
)
return
&
md2
->
model
->
spr2frames
[
spr2
];
return
NULL
;
}
static
modelspr2frames_t
*
HWR_GetModelSprite2
(
md2_t
*
md2
,
skin_t
*
skin
,
UINT16
spr2
,
player_t
*
player
)
static
UINT16
HWR_GetModelSprite2
Num
(
md2_t
*
md2
,
skin_t
*
skin
,
UINT16
spr2
,
player_t
*
player
)
{
UINT16
super
=
0
;
UINT8
i
=
0
;
if
(
!
md2
||
!
md2
->
model
||
!
skin
)
return
HWR_GetModelSprite2Frames
(
md2
,
0
)
;
return
0
;
while
(
!
HWR_GetModelSprite2Frames
(
md2
,
spr2
)
&&
spr2
!=
SPR2_STND
...
...
@@ -1145,7 +1145,7 @@ static modelspr2frames_t *HWR_GetModelSprite2(md2_t *md2, skin_t *skin, UINT16 s
if
(
i
>=
32
)
// probably an infinite loop...
spr2
=
0
;
return
HWR_GetModelSprite2Frames
(
md2
,
spr2
)
;
return
spr2
;
}
// Adjust texture coords of model to fit into a patch's max_s and max_t
...
...
@@ -1269,6 +1269,7 @@ boolean HWR_DrawModel(gl_vissprite_t *spr)
const
UINT8
flip
=
(
UINT8
)(
!
(
spr
->
mobj
->
eflags
&
MFE_VERTICALFLIP
)
!=
!
R_ThingVerticallyFlipped
(
spr
->
mobj
));
const
UINT8
hflip
=
(
UINT8
)(
!
(
spr
->
mobj
->
mirrored
)
!=
!
R_ThingHorizontallyFlipped
(
spr
->
mobj
));
spritedef_t
*
sprdef
;
UINT16
spr2
=
0
;
spriteframe_t
*
sprframe
;
INT32
mod
;
interpmobjstate_t
interp
;
...
...
@@ -1438,13 +1439,17 @@ boolean HWR_DrawModel(gl_vissprite_t *spr)
frame
=
(
spr
->
mobj
->
frame
&
FF_FRAMEMASK
);
if
(
spr
->
mobj
->
skin
&&
spr
->
mobj
->
sprite
==
SPR_PLAY
)
spr2frames
=
HWR_GetModelSprite2
(
md2
,
spr
->
mobj
->
skin
,
spr
->
mobj
->
sprite2
,
spr
->
mobj
->
player
);
{
spr2
=
HWR_GetModelSprite2Num
(
md2
,
spr
->
mobj
->
skin
,
spr
->
mobj
->
sprite2
,
spr
->
mobj
->
player
);
spr2frames
=
HWR_GetModelSprite2Frames
(
md2
,
spr2
);
}
if
(
spr2frames
)
{
spritedef_t
*
defaultdef
=
P_GetSkinSpritedef
(
spr
->
mobj
->
skin
,
spr2
);
mod
=
spr2frames
->
numframes
;
#ifndef DONTHIDEDIFFANIMLENGTH // by default, different anim length is masked by the mod
if
(
mod
>
(
INT32
)
spr
def
->
numframes
)
mod
=
spr
def
->
numframes
;
if
(
mod
>
(
INT32
)
default
def
->
numframes
)
mod
=
default
def
->
numframes
;
#endif
if
(
!
mod
)
mod
=
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment