mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-29 04:50:42 +00:00
- inlined calc_globalshifts to get rid of two global variables.
This commit is contained in:
parent
2184baaa18
commit
0f8e73ce77
2 changed files with 8 additions and 17 deletions
|
@ -178,7 +178,6 @@ int32_t cosviewingrangeglobalang, sinviewingrangeglobalang;
|
||||||
int32_t xyaspect;
|
int32_t xyaspect;
|
||||||
int32_t viewingrangerecip;
|
int32_t viewingrangerecip;
|
||||||
|
|
||||||
static char globalxshift, globalyshift;
|
|
||||||
static int32_t globalxpanning, globalypanning;
|
static int32_t globalxpanning, globalypanning;
|
||||||
int32_t globalshade, globalorientation;
|
int32_t globalshade, globalorientation;
|
||||||
int16_t globalpicnum;
|
int16_t globalpicnum;
|
||||||
|
@ -301,19 +300,6 @@ int32_t animateoffs(int const tilenum, int fakevar)
|
||||||
return offs;
|
return offs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// globalpicnum --> globalxshift, globalyshift
|
|
||||||
static void calc_globalshifts(void)
|
|
||||||
{
|
|
||||||
globalxshift = (8-widthBits(globalpicnum));
|
|
||||||
globalyshift = (8-heightBits(globalpicnum));
|
|
||||||
if (globalorientation&8) { globalxshift++; globalyshift++; }
|
|
||||||
// PK: the following can happen for large (>= 512) tile sizes.
|
|
||||||
// NOTE that global[xy]shift are unsigned chars.
|
|
||||||
if (globalxshift > 31) globalxshift=0;
|
|
||||||
if (globalyshift > 31) globalyshift=0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void renderDrawSprite(int32_t snum)
|
static void renderDrawSprite(int32_t snum)
|
||||||
{
|
{
|
||||||
polymost_drawsprite(snum);
|
polymost_drawsprite(snum);
|
||||||
|
@ -1705,7 +1691,12 @@ void renderDrawMapView(int32_t dax, int32_t day, int32_t zoome, int16_t ang)
|
||||||
globaly2 = mulscale12(globaly2,i);
|
globaly2 = mulscale12(globaly2,i);
|
||||||
}
|
}
|
||||||
|
|
||||||
calc_globalshifts();
|
int globalxshift = (8 - widthBits(globalpicnum));
|
||||||
|
int globalyshift = (8 - heightBits(globalpicnum));
|
||||||
|
if (globalorientation & 8) { globalxshift++; globalyshift++; }
|
||||||
|
// PK: the following can happen for large (>= 512) tile sizes.
|
||||||
|
if (globalxshift < 0) globalxshift = 0;
|
||||||
|
if (globalyshift < 0) globalyshift = 0;
|
||||||
|
|
||||||
if ((globalorientation&0x4) > 0)
|
if ((globalorientation&0x4) > 0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -599,12 +599,12 @@ void GameInterface::LevelCompleted(MapRecord *map, int skill)
|
||||||
COVER_SetReverb(0); // Reset reverb
|
COVER_SetReverb(0); // Reset reverb
|
||||||
Player[myconnectindex].Reverb = 0;
|
Player[myconnectindex].Reverb = 0;
|
||||||
StopSound();
|
StopSound();
|
||||||
|
STAT_Update(map == nullptr);
|
||||||
|
|
||||||
StatScreen(FinishAnim, [=](bool)
|
StatScreen(FinishAnim, [=](bool)
|
||||||
{
|
{
|
||||||
if (map == nullptr)
|
if (map == nullptr)
|
||||||
{
|
{
|
||||||
STAT_Update(true);
|
|
||||||
FinishAnim = false;
|
FinishAnim = false;
|
||||||
PlaySong(nullptr, ThemeSongs[0], ThemeTrack[0]);
|
PlaySong(nullptr, ThemeSongs[0], ThemeTrack[0]);
|
||||||
if (SW_SHAREWARE)
|
if (SW_SHAREWARE)
|
||||||
|
|
Loading…
Reference in a new issue