2013-04-17 23:29:41 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:29:41 -04:00
|
|
|
// Refer to the license.txt file included.
|
2013-03-26 00:05:46 +01:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2013-03-26 00:05:46 +01:00
|
|
|
|
2013-04-13 23:54:02 -04:00
|
|
|
class RasterFont
|
|
|
|
{
|
2013-03-26 00:05:46 +01:00
|
|
|
public:
|
2013-04-13 23:54:02 -04:00
|
|
|
RasterFont();
|
2014-08-30 12:41:21 -04:00
|
|
|
~RasterFont();
|
2013-04-13 23:54:02 -04:00
|
|
|
static int debug;
|
|
|
|
|
|
|
|
// and the happy helper functions
|
|
|
|
void printString(const char *s, double x, double y, double z=0.0);
|
|
|
|
void printCenteredString(const char *s, double y, int screen_width, double z=0.0);
|
2013-03-26 00:05:46 +01:00
|
|
|
|
|
|
|
void printMultilineText(const char *text, double x, double y, double z, int bbWidth, int bbHeight);
|
2014-08-10 20:48:28 -04:00
|
|
|
|
2013-03-26 00:05:46 +01:00
|
|
|
private:
|
2013-04-13 23:54:02 -04:00
|
|
|
int fontOffset;
|
|
|
|
char *temp_buffer;
|
2014-08-10 20:48:28 -04:00
|
|
|
|
|
|
|
static const int TEMP_BUFFER_SIZE = 64 * 1024;
|
|
|
|
static const int CHAR_WIDTH = 10;
|
|
|
|
static const int CHAR_HEIGHT = 15;
|
2013-03-26 00:05:46 +01:00
|
|
|
};
|