From 7929255cd9723ebba451d5b9dd4d4597ed32e6a7 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Sun, 31 Jan 2010 12:35:15 +0000 Subject: SCI: cleaned up graphics classes, removed gfx&windowmgr, added gfxports, gfxcompare, gfxpaint16, gfxcache. kernel uses gfxports directly w/o going through SciGui svn-id: r47745 --- engines/sci/graphics/compare.h | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 engines/sci/graphics/compare.h (limited to 'engines/sci/graphics/compare.h') diff --git a/engines/sci/graphics/compare.h b/engines/sci/graphics/compare.h new file mode 100644 index 0000000000..f759aad0aa --- /dev/null +++ b/engines/sci/graphics/compare.h @@ -0,0 +1,55 @@ +/* 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. + * + * $URL$ + * $Id$ + * + */ + +#ifndef SCI_GRAPHICS_GFX_H +#define SCI_GRAPHICS_GFX_H + +#include "sci/graphics/gui.h" + +#include "common/hashmap.h" + +namespace Sci { + +class Screen; + +class GfxCompare { +public: + GfxCompare(SegManager *segMan, Kernel *kernel, GfxCache *cache, Screen *screen); + ~GfxCompare(); + + uint16 onControl(uint16 screenMask, Common::Rect rect); + bool CanBeHereCheckRectList(reg_t checkObject, Common::Rect checkRect, List *list); + void SetNowSeen(reg_t objectReference); + +private: + SegManager *_segMan; + Kernel *_kernel; + GfxCache *_cache; + Screen *_screen; +}; + +} // End of namespace Sci + +#endif -- cgit v1.2.3