74 lines
2.8 KiB
C
74 lines
2.8 KiB
C
#ifndef _INCLUDED_TEXTDRAW_
|
|
#define _INCLUDED_TEXTDRAW_
|
|
|
|
#include "ivisdef.h"
|
|
#define iV_DrawText pie_DrawText
|
|
#define iV_DrawText270 pie_DrawText270
|
|
|
|
#define PIE_TEXT_WHITE (-1)
|
|
#define PIE_TEXT_LIGHTBLUE (-2)
|
|
#define PIE_TEXT_DARKBLUE (-3)
|
|
|
|
#define PIE_TEXT_WHITE_COLOUR (0xffffffff)
|
|
#define PIE_TEXT_LIGHTBLUE_COLOUR (0xffa0a0ff)
|
|
#define PIE_TEXT_DARKBLUE_COLOUR (0xff6060c0)
|
|
|
|
extern void iV_ClearFonts(void);
|
|
extern void iV_SetFont(int FontID);
|
|
extern int iV_CreateFontIndirect(IMAGEFILE *ImageFile,UWORD *AsciiTable,int SpaceSize);
|
|
extern int iV_CreateFont(IMAGEFILE *ImageFile,UWORD StartID,UWORD EndID,int SpaceSize,BOOL bInGame);
|
|
extern void iV_GetTextExtents(STRING *String,int *Width,int *y0,int *y1);
|
|
extern int iV_GetTextAboveBase(void);
|
|
extern int iV_GetTextBelowBase(void);
|
|
extern int iV_GetTextLineSize(void);
|
|
extern int iV_GetTextWidth(STRING *String);
|
|
extern int iV_GetCharWidth(STRING Char);
|
|
extern void iV_SetTextColour(SWORD Index);
|
|
|
|
#define ASCII_SPACE (32)
|
|
#define ASCII_NEWLINE ('@')
|
|
#define ASCII_COLOURMODE ('#')
|
|
|
|
|
|
|
|
// Valid values for "Justify" argument of pie_DrawFormattedText().
|
|
|
|
enum {
|
|
FTEXT_LEFTJUSTIFY, // Left justify.
|
|
FTEXT_CENTRE, // Centre justify.
|
|
FTEXT_RIGHTJUSTIFY, // Right justify.
|
|
FTEXT_LEFTJUSTIFYAPPEND, // Start from end of last print and then left justify.
|
|
};
|
|
|
|
|
|
// Valid values for paramaters for pie_SetFormattedTextFlags().
|
|
|
|
// Skip leading spaces at the start of each line of text. Improves centre justification
|
|
// but may result in unwanted word breaks.
|
|
#define FTEXTF_SKIP_LEADING_SPACES 1
|
|
// Skip trailing spaces at the end of each line of text, improves centre justification.
|
|
#define FTEXTF_SKIP_TRAILING_SPACES 2
|
|
// Inserts a space before the first word in the string, usefull when use FTEXT_LEFTJUSTIFYAPPEND
|
|
#define FTEXTF_INSERT_SPACE_ON_APPEND 4
|
|
|
|
extern void pie_SetFormattedTextFlags(UDWORD Flags);
|
|
extern UDWORD pie_GetFormattedTextFlags(void);
|
|
extern void pie_StartTextExtents(void);
|
|
extern void pie_FillTextExtents(int BorderThickness,UBYTE r,UBYTE g,UBYTE b,BOOL Alpha);
|
|
extern UDWORD pie_DrawFormattedText(UBYTE *String,UDWORD x,UDWORD y,UDWORD Width,UDWORD Justify,BOOL DrawBack);
|
|
|
|
extern void pie_DrawText(STRING *string,UDWORD x,UDWORD y);
|
|
extern void pie_DrawTextToSurface(LPDIRECTDRAWSURFACE4 lpDDSF, STRING *String, int XPos, int YPos);
|
|
extern void pie_DrawText270(STRING *String,int XPos,int YPos);
|
|
extern void pie_RenderBlueTintedBitmap(iBitmap *bmp, int x, int y, int w, int h, int ow);
|
|
extern void pie_RenderDeepBlueTintedBitmap(iBitmap *bmp, int x, int y, int w, int h, int ow);
|
|
|
|
void InitClut24(UWORD *InputClut);
|
|
|
|
typedef void (*RENDERTEXT_CALLBACK)(STRING *String, UDWORD X, UDWORD Y);
|
|
// routines used for textdraw
|
|
void SetIndirectDrawTextCallback(RENDERTEXT_CALLBACK routine);
|
|
RENDERTEXT_CALLBACK GetIndirectDrawTextCallback(void);
|
|
|
|
#endif
|