1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "common/endian.h"
#include "common/file.h"
#include "common/util.h"
#include "cruise/cruise_main.h"
#include "cruise/mouse.h"
#include "cruise/staticres.h"
namespace Cruise {
const int SPACE_WIDTH = 5;
/**
* Determines the line size by finding the highest character in the given font set
*/
int32 getLineHeight(int16 charCount, const FontEntry *fontPtr) {
int32 highestChar = 0;
if (!charCount)
return (0);
for (int i = 0; i < charCount; ++i) {
int charHeight = fontPtr[i].charHeight;
if (charHeight > highestChar) highestChar = charHeight;
}
return highestChar;
}
/**
* This function determines how many lines the text will have
*/
int32 getTextLineCount(int32 rightBorder_X, int16 wordSpacingWidth,
const FontEntry *fontData, const char *textString) {
const char *localString = textString;
const char *tempPtr = textString;
uint8 ch;
int32 total = 0, lineLength = 0;
if (rightBorder_X == 0)
error("getTextLineCount() - invalid parameter");
if (!*textString)
return (0);
ch = *localString;
do {
int32 charData = fontCharacterTable[ch];
if (ch == '|') {
lineLength = rightBorder_X;
localString = tempPtr;
} else if (charData >= 0) {
lineLength += wordSpacingWidth + (int16)fontData[charData].charWidth;
} else if (ch == ' ') {
lineLength += wordSpacingWidth + SPACE_WIDTH;
localString = tempPtr;
}
if (lineLength >= rightBorder_X) {
total += rightBorder_X;
tempPtr = localString;
lineLength = 0;
}
ch = *++tempPtr;
} while (ch);
if (lineLength > 0)
total += rightBorder_X;
return (total / rightBorder_X);
}
void loadFNT(const char *fileName) {
uint8 header[4];
_systemFNT = NULL;
Common::File fontFileHandle;
if (!fontFileHandle.exists(fileName))
return;
fontFileHandle.open((const char *)fileName);
fontFileHandle.read(header, 4);
if (strcmp((char *)header, "FNT") == 0) {
uint32 fontSize = fontFileHandle.readUint32BE();
_systemFNT = (uint8 *)mallocAndZero(fontSize);
if (_systemFNT != NULL) {
fontFileHandle.seek(4);
fontFileHandle.read(_systemFNT, fontSize);
// Flip structure values from BE to LE for font files - this is for consistency
// with font resources, which are in LE formatt
FontInfo *f = (FontInfo *)_systemFNT;
bigEndianLongToNative(&f->offset);
bigEndianLongToNative(&f->size);
flipGen(&f->numChars, 6); // numChars, hSpacing, and vSpacing
FontEntry *fe = (FontEntry *)(_systemFNT + sizeof(FontInfo));
for (int i = 0; i < f->numChars; ++i, ++fe) {
bigEndianLongToNative(&fe->offset); // Flip 32-bit offset field
flipGen(&fe->v1, 8); // Flip remaining 16-bit fields
}
}
}
fontFileHandle.close();
}
void initSystem() {
int32 i;
itemColor = 15;
titleColor = 9;
selectColor = 13;
subColor = 10;
for (i = 0; i < 64; i++) {
strcpy(preloadData[i].name, "");
preloadData[i].ptr = NULL;
preloadData[i].nofree = 0;
}
doFade = 0;
fadeFlag = 0;
scroll = 0;
switchPal = 0;
masterScreen = 0;
changeCursor(CURSOR_NOMOUSE);
changeCursor(CURSOR_NORMAL);
mouseOn();
strcpy(cmdLine, "");
loadFNT("system.fnt");
}
void freeSystem() {
MemFree(_systemFNT);
}
void bigEndianShortToNative(void *var) {
WRITE_UINT16(var, READ_BE_UINT16(var));
}
void bigEndianLongToNative(void *var) {
WRITE_UINT32(var, READ_BE_UINT32(var));
}
void flipGen(void *var, int32 length) {
short int *varPtr = (int16 *) var;
for (int i = 0; i < (length / 2); i++) {
bigEndianShortToNative(&varPtr[i]);
}
}
void renderWord(const uint8 *fontPtr_Data, uint8 *outBufferPtr, int xOffset, int yOffset,
int32 height, int32 param4, int32 stringRenderBufferSize, int32 width, int32 charWidth) {
const uint8 *fontPtr_Data2 = fontPtr_Data + height * 2;
outBufferPtr += yOffset * width + xOffset;
for (int i = 0; i < height; i++) { // y++
uint16 bitSet1 = READ_BE_UINT16(fontPtr_Data);
uint16 bitSet2 = READ_BE_UINT16(fontPtr_Data2);
fontPtr_Data += sizeof(uint16);
fontPtr_Data2 += sizeof(uint16);
for (int j = 0; j < charWidth; j++) {
if (((bitSet1 >> 15) & 1)) {
*outBufferPtr = ((bitSet2 >> 15) & 1) + 1;
}
outBufferPtr++;
bitSet1 <<= 1;
bitSet2 <<= 1;
}
outBufferPtr += width - charWidth;
}
}
// returns character count and pixel size (via pointer) per line of the string (old: prepareWordRender(int32 param, int32 var1, int16* out2, uint8* ptr3, uint8* string))
int32 prepareWordRender(int32 inRightBorder_X, int16 wordSpacingWidth,
int16 *strPixelLength, const FontEntry *fontData, const char *textString) {
const char *localString = textString;
int32 counter = 0;
int32 finish = 0;
int32 temp_pc = 0; // var_A // temporary pixel count save
int32 temp_cc = 0; // var_C // temporary char count save
int32 pixelCount = 0; // si
do {
uint8 character = *(localString++);
int16 charData = fontCharacterTable[character];
if (character == ' ') {
temp_cc = counter;
temp_pc = pixelCount;
if (pixelCount + wordSpacingWidth + SPACE_WIDTH >=
inRightBorder_X) {
finish = 1;
} else {
pixelCount += wordSpacingWidth + SPACE_WIDTH;
}
} else {
if (character == '|' || !character) {
finish = 1;
} else {
if (charData >= 0) {
if (pixelCount + wordSpacingWidth +
(int16)fontData[charData].charWidth >= inRightBorder_X) {
finish = 1;
if (temp_pc) {
pixelCount = temp_pc;
counter = temp_cc;
}
} else {
pixelCount += wordSpacingWidth +
(int16)fontData[charData].charWidth;
}
}
}
}
counter++;
} while (!finish);
*strPixelLength = (int16) pixelCount;
return counter;
}
void drawString(int32 x, int32 y, const char *string, uint8 *buffer, uint8 fontColor, int32 rightBorder_X) {
// Get the rendered text to display
gfxEntryStruct *s = renderText(rightBorder_X, string);
// Draw the message
drawMessage(s, x, y, rightBorder_X - x, fontColor, buffer);
// Free the data
delete s->imagePtr;
delete s;
}
// calculates all necessary datas and renders text
gfxEntryStruct *renderText(int inRightBorder_X, const char *string) {
const FontInfo *fontPtr;
const FontEntry *fontPtr_Desc;
const uint8 *fontPtr_Data;
int16 wordSpacingWidth; // 0 or -1
int16 wordSpacingHeight;// 0 or -1
int32 rightBorder_X;
int32 lineHeight;
int32 numLines;
int32 stringHeight;
int32 stringFinished;
int32 stringWidth; // var_1C
int32 stringRenderBufferSize;
// int32 useDynamicBuffer;
uint8 *currentStrRenderBuffer;
// int32 var_8; // don't need that one
int32 heightOffset; // var_12 // how much pixel-lines have already been drawn
// int32 var_1E;
gfxEntryStruct *generatedGfxEntry;
// check if string is empty
if (!string) {
return NULL;
}
// check if font has been loaded, else get system font
if (fontFileIndex != -1) {
fontPtr = (const FontInfo *)filesDatabase[fontFileIndex].subData.ptr;
if (!fontPtr) {
fontPtr = (const FontInfo *)_systemFNT;
}
} else {
fontPtr = (const FontInfo *)_systemFNT;
}
if (!fontPtr) {
return NULL;
}
fontPtr_Desc = (const FontEntry *)((const uint8 *)fontPtr + sizeof(FontInfo));
fontPtr_Data = (const uint8 *)fontPtr + fontPtr->offset;
lineHeight = getLineHeight(fontPtr->numChars, fontPtr_Desc);
wordSpacingWidth = fontPtr->hSpacing;
wordSpacingHeight = fontPtr->vSpacing;
// if right border is higher then screenwidth (+ spacing), adjust border
if (inRightBorder_X > 310) {
rightBorder_X = 310;
} else {
rightBorder_X = inRightBorder_X;
}
numLines = getTextLineCount(rightBorder_X, wordSpacingWidth, fontPtr_Desc, string); // ok
if (!numLines) {
return NULL;
}
stringHeight = ((wordSpacingHeight + lineHeight + 2) * numLines) + 1;
stringFinished = 0;
stringWidth = rightBorder_X + 2; // max render width to the right
stringRenderBufferSize = stringWidth * stringHeight * 4;
inRightBorder_X = rightBorder_X;
currentStrRenderBuffer =
(uint8 *) mallocAndZero(stringRenderBufferSize);
resetBitmap(currentStrRenderBuffer, stringRenderBufferSize);
generatedGfxEntry = (gfxEntryStruct *) MemAlloc(sizeof(gfxEntryStruct));
generatedGfxEntry->imagePtr = currentStrRenderBuffer;
generatedGfxEntry->imageSize = stringRenderBufferSize / 2;
generatedGfxEntry->fontIndex = fontFileIndex;
generatedGfxEntry->height = stringHeight;
generatedGfxEntry->width = stringWidth; // maximum render width to the right
// var_8 = 0;
heightOffset = 0;
do {
int spacesCount = 0; // si
unsigned char character = *string;
short int strPixelLength; // var_16
const char *ptrStringEnd; // var_4 //ok
int drawPosPixel_X; // di
// find first letter in string, skip all spaces
while (character == ' ') {
spacesCount++;
character = *(string + spacesCount);
}
string += spacesCount;
// returns character count and pixel length (via pointer) per line of the text string
ptrStringEnd = string + prepareWordRender(inRightBorder_X, wordSpacingWidth, &strPixelLength, fontPtr_Desc, string); //ok
// determine how much space is left to the right and left (center text)
if (inRightBorder_X > strPixelLength) {
//var_8 = (inRightBorder_X - strPixelLength) / 2;
drawPosPixel_X =
(inRightBorder_X - strPixelLength) / 2;
} else {
drawPosPixel_X = 0;
}
//drawPosPixel_X = var_8;
// draw textline, character wise
do {
character = *(string++);
short int charData = fontCharacterTable[character]; // get character position
if (character) {
if (character == ' ' || character == 0x7C) {
drawPosPixel_X += wordSpacingWidth + SPACE_WIDTH; // if char = "space" adjust word starting postion (don't render space though);
} else {
if (charData >= 0) {
const FontEntry &fe = fontPtr_Desc[charData];
// should ist be stringRenderBufferSize/2 for the second last param?
renderWord((const uint8 *)fontPtr_Data + fe.offset,
currentStrRenderBuffer,
drawPosPixel_X,
fe.height2 - fe.charHeight +
lineHeight + heightOffset,
fe.charHeight,
fe.v1,
stringRenderBufferSize,
stringWidth,
(int16)fe.charWidth);
drawPosPixel_X +=
wordSpacingWidth + (int16)fe.charWidth;
}
}
} else {
stringFinished = 1; // character = 0x00
}
} while ((string < ptrStringEnd) && !stringFinished);
// var_8 = 0;
heightOffset += wordSpacingHeight + lineHeight;
} while (!stringFinished);
return generatedGfxEntry;
}
void freeGfx(gfxEntryStruct *pGfx) {
if (pGfx->imagePtr) {
MemFree(pGfx->imagePtr);
}
MemFree(pGfx);
}
} // End of namespace Cruise
|