Major code reorganization

This commit only updates the XCode project for the changes.
A later commit each will update it for scons and MSVC.

A few actual changes are mixed in:
- Add a prefix header for a handful of common definitions
- Moved current_cursor into the Cursor class as a static member
- Removed the make_cursor_sword and make_cursor_watch functions
- Include tests in the All target
- Remove redundant -l flags for Common and Common-Party (since they're included in the Link phases anyway)
This commit is contained in:
2017-04-14 00:24:29 -04:00
parent b624841bea
commit 82abdab695
211 changed files with 1855 additions and 1881 deletions

View File

@@ -0,0 +1,31 @@
#ifndef BOE_GAME_GRAPHUTIL_H
#define BOE_GAME_GRAPHUTIL_H
#include "pict.hpp"
#include "location.hpp"
#include "graphtool.hpp"
void draw_one_terrain_spot (short i,short j,short terrain_to_draw);
void draw_monsters();
void play_see_monster_str(unsigned short m, location monst_loc);
void draw_combat_pc(class cPlayer& who, location center, bool attacking);
void frame_active_pc(location center);
void draw_pcs(location center);
void draw_outd_boats(location center);
void draw_town_boat(location center) ;
void draw_party_symbol(location center);
rectangle get_monster_template_rect (pic_num_t type_wanted,short mode,short which_part) ;
bool is_fluid(ter_num_t ter_type);
bool is_shore(ter_num_t ter_type);
bool is_wall(ter_num_t ter_type);
bool is_ground(ter_num_t ter_type);
char get_fluid_trim(location where,ter_num_t ter_type);
void check_if_monst_seen(unsigned short m_num, location monst_loc);
void play_ambient_sound();
graf_pos calc_item_rect(int num,rectangle& to_rect);
void draw_items(location where);
void draw_fields(location where);
#endif