mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
Tidied up DoEnergyTile() a bit and lowered the speed of the cinema text scrolling
This commit is contained in:
parent
e1dc15d165
commit
0ddfbba8a0
1 changed files with 64 additions and 64 deletions
|
@ -182,35 +182,34 @@ void DoEnergyTile()
|
|||
{
|
||||
for (j = 0; j < 64; j++)
|
||||
{
|
||||
if (*c != 96)
|
||||
uint8_t val = *c;
|
||||
|
||||
if (val != 96)
|
||||
{
|
||||
if (*c <= 158) {
|
||||
*ptrW = 96;
|
||||
if (val > 158) {
|
||||
*ptrW = val - 1;
|
||||
}
|
||||
else {
|
||||
*ptrW = (*c) - 1;
|
||||
*ptrW = 96;
|
||||
}
|
||||
//continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (menu_RandomBit2()) {
|
||||
*ptrW = *c;
|
||||
c++;
|
||||
ptrW++;
|
||||
continue;
|
||||
}
|
||||
|
||||
char al = *(c + 1);
|
||||
char ah = *(c - 1);
|
||||
else
|
||||
{
|
||||
uint8_t al = *(c + 1);
|
||||
uint8_t ah = *(c - 1);
|
||||
|
||||
if (al <= ah) {
|
||||
al = ah;
|
||||
}
|
||||
|
||||
char cl = al;
|
||||
al = *(c - 66);
|
||||
uint8_t cl = al;
|
||||
|
||||
al = *(c - 66);
|
||||
if (cl <= al) {
|
||||
cl = al;
|
||||
}
|
||||
|
@ -244,18 +243,17 @@ void DoEnergyTile()
|
|||
|
||||
if (al <= 159) {
|
||||
*ptrW = 96;
|
||||
//continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!menu_RandomBit2())
|
||||
{
|
||||
if (!menu_RandomBit2()) {
|
||||
cl--;
|
||||
}
|
||||
|
||||
*ptrW = cl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
c++;
|
||||
ptrW++;
|
||||
|
@ -267,6 +265,7 @@ void DoEnergyTile()
|
|||
c = &energytile[67];
|
||||
ptrW = energy2;
|
||||
|
||||
// copy back to energytile[]
|
||||
for (i = 0; i < 64; i++)
|
||||
{
|
||||
memcpy(c, ptrW, 64);
|
||||
|
@ -276,13 +275,12 @@ void DoEnergyTile()
|
|||
|
||||
ptrW = energy2;
|
||||
|
||||
// kEnergy2 is 64 x 64
|
||||
for (i = 0; i < 4096; i++)
|
||||
{
|
||||
if ((*ptrW) == 96) {
|
||||
*ptrW = 255; // -1?
|
||||
if (ptrW[i] == 96) {
|
||||
ptrW[i] = 255; // -1?
|
||||
}
|
||||
|
||||
ptrW++;
|
||||
}
|
||||
|
||||
word_9AB5B--;
|
||||
|
@ -296,6 +294,8 @@ void DoEnergyTile()
|
|||
val *= 2;
|
||||
val += randSize2;
|
||||
|
||||
assert(val < 4356);
|
||||
|
||||
energytile[val] = 175;
|
||||
word_9AB5B = 1;
|
||||
}
|
||||
|
@ -1992,7 +1992,7 @@ void DoCinemaText(short nVal)
|
|||
videoNextPage();
|
||||
|
||||
// TEMP
|
||||
int time = (int)totalclock + 8;
|
||||
int time = (int)totalclock + 4;
|
||||
while ((int)totalclock < time) {
|
||||
HandleAsync();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue