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
|
// copyright (c) 1991-2004 TLK Games all rights reserved
//-----------------------------------------------------------------------------
// file : "scrolledit.h"
// created : 2004-09-13
// updates : 2004-09-13
// fonction : edit scrolling map (menu and guards)
//-----------------------------------------------------------------------------
// 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., 59 Temple
// Place - Suite 330, Boston, MA 02111-1307, USA.
//******************************************************************************
#ifndef __SCROLLEDIT__
#define __SCROLLEDIT__
#include "../include/runGestion.h"
#include "../include/lastScroll.h"
#include "../include/mousePoint.h"
#include "../include/GIF_bitMap.h"
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
typedef struct
{
Sint32 box_pos_x1;
Sint32 box_pos_x2;
Sint32 box_pos_y1;
Sint32 box_pos_y2;
Sint32 box_widthT;
Sint32 box_height;
Sint32 boxOffsetY;
Sint32 box_typeID; //0 = d'ont display / 1 = current select / 2 = select finish
}
selectinfo;
class scrolledit:public virtual runGestion
{
private:
static const Sint32 YCOORDNULL = -10240;
lastScroll* defilement;
mousePoint* objetMouse;
Sint32 ecranHaute; //height of the main window
Sint32 ecranLarge; //weight of the main window
Sint32 displayMod; //0=show map / 1=show tiles
Sint32 flagSpaceK;
Sint32 titlesPosy;
GIF_bitMap* ptrGBitMap;
Sint32 flag_press;
// brush handle
Sint32 flagPress2; //left button pressed
Sint32 brush_posx; //
Sint32 brush_posy; //
Sint32 brushWidth;
Sint32 brushHeigh;
Uint16* pBrushTile;
GIF_bitMap* pBrush_bob;
Sint32 box_colour;
selectinfo* pt_select0;
selectinfo* pt_select1;
selectinfo* pt_select2;
Sint32 tile_width;
Sint32 tile_mask1;
Sint32 tile_mask2;
Sint32 keyS_press;
public:
scrolledit();
~scrolledit();
Sint32 first_init();
Sint32 zeMainLoop();
private:
void vscrolling();
void view_tiles();
void tile2brush();
void maps2brush();
void check_keys();
Sint32 getZeSpeed();
void select_box();
void drawingBox();
void brushAlloc();
void brush_draw();
Sint32 saveTheMap();
static const unsigned char cyclingtab[];
};
#endif
|