aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorPaul Gilbert2012-09-15 13:23:46 +1000
committerPaul Gilbert2012-09-15 13:23:46 +1000
commitd007e0aafe7932899cdf87d6007bf10ebed1cad6 (patch)
treea474fc40a34d45a98627e73f3fb841665e45279e /engines/hopkins/graphics.h
parent10bb7730ea559f62682db053eda2f532d25ffe68 (diff)
downloadscummvm-rg350-d007e0aafe7932899cdf87d6007bf10ebed1cad6.tar.gz
scummvm-rg350-d007e0aafe7932899cdf87d6007bf10ebed1cad6.tar.bz2
scummvm-rg350-d007e0aafe7932899cdf87d6007bf10ebed1cad6.zip
HOPKINS: initial implementation of INTORUN method
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index 6451fdae5c..756ae49cbe 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -76,6 +76,7 @@ public:
byte PALPCX[800];
int FADE_LINUX;
bool NOLOCK;
+ int no_scroll;
public:
GraphicsManager();
~GraphicsManager();
@@ -83,6 +84,8 @@ public:
void SET_MODE(int width, int height);
void DD_Lock();
void DD_Unlock();
+ void DD_LOCK() { DD_Lock(); }
+ void DD_UNLOCK() { DD_Unlock(); }
void Cls_Video();
void LOAD_IMAGE(const Common::String &file);
void INIT_TABLE(int a1, int a2, byte *a3);
@@ -104,6 +107,8 @@ public:
void FADE_INW();
void FADE_OUTW();
void setpal_vga256(const byte *palette);
+ void setpal_vga256_linux(const byte *palette, const byte *surface);
+ void SETCOLOR3(int palIndex, int r, int g, int b);
void CHANGE_PALETTE(const byte *palette);
uint16 MapRGB(byte r, byte g, byte b);
void DD_VBL();
@@ -111,6 +116,8 @@ public:
void Copy_WinScan_Vbe3(const byte *sourceSurface, byte *destSurface);
void Copy_Video_Vbe3(const byte *surface);
void Copy_Video_Vbe16(const byte *surface);
+ void FIN_VISU();
+ void VISU_ALL();
};
class ObjectManager {