ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/map.c
(Generate patch)

Comparing deliantra/server/common/map.c (file contents):
Revision 1.6 by root, Mon Mar 6 22:59:26 2006 UTC vs.
Revision 1.11 by root, Fri May 12 23:42:59 2006 UTC

1/* 1/*
2 * static char *rcsid_map_c = 2 * static char *rcsid_map_c =
3 * "$Id: map.c,v 1.6 2006/03/06 22:59:26 root Exp $"; 3 * "$Id: map.c,v 1.11 2006/05/12 23:42:59 root Exp $";
4 */ 4 */
5 5
6/* 6/*
7 CrossFire, A Multiplayer game for X-windows 7 CrossFire, A Multiplayer game for X-windows
8 8
38#include "path.h" 38#include "path.h"
39 39
40 40
41extern int nrofallocobjects,nroffreeobjects; 41extern int nrofallocobjects,nroffreeobjects;
42 42
43void (*load_original_map_callback)(mapstruct *map);
44void (*load_temporary_map_callback)(mapstruct *map);
45void (*clean_temporary_map_callback)(mapstruct *map);
43 46
44/* 47/*
45 * Returns the mapstruct which has a name matching the given argument. 48 * Returns the mapstruct which has a name matching the given argument.
46 * return NULL if no match is found. 49 * return NULL if no match is found.
47 */ 50 */
587 * and we only save the head of multi part objects - this is needed 590 * and we only save the head of multi part objects - this is needed
588 * in order to do map tiling properly. 591 * in order to do map tiling properly.
589 */ 592 */
590void save_objects (mapstruct *m, FILE *fp, FILE *fp2, int flag) { 593void save_objects (mapstruct *m, FILE *fp, FILE *fp2, int flag) {
591 int i, j = 0,unique=0; 594 int i, j = 0,unique=0;
592 object *op, *otmp; 595 object *op;
593 /* first pass - save one-part objects */ 596 /* first pass - save one-part objects */
594 for(i = 0; i < MAP_WIDTH(m); i++) 597 for(i = 0; i < MAP_WIDTH(m); i++)
595 for (j = 0; j < MAP_HEIGHT(m); j++) { 598 for (j = 0; j < MAP_HEIGHT(m); j++) {
596 unique=0; 599 unique=0;
597 for(op = get_map_ob (m, i, j); op; op = otmp) { 600 for(op = get_map_ob (m, i, j); op; op = op->above) {
598 otmp = op->above;
599
600 if (QUERY_FLAG(op,FLAG_IS_FLOOR) && QUERY_FLAG(op, FLAG_UNIQUE)) 601 if (QUERY_FLAG(op,FLAG_IS_FLOOR) && QUERY_FLAG(op, FLAG_UNIQUE))
601 unique=1; 602 unique=1;
602 603
603 if(op->type == PLAYER) { 604 if(op->type == PLAYER) {
604 LOG(llevDebug, "Player on map that is being saved\n"); 605 LOG(llevDebug, "Player on map that is being saved\n");
676 677
677 if(m->spaces==NULL) 678 if(m->spaces==NULL)
678 fatal(OUT_OF_MEMORY); 679 fatal(OUT_OF_MEMORY);
679} 680}
680 681
681/* Creatures and returns a map of the specific size. Used 682/* Create and returns a map of the specific size. Used
682 * in random map code and the editor. 683 * in random map code and the editor.
683 */ 684 */
684mapstruct *get_empty_map(int sizex, int sizey) { 685mapstruct *get_empty_map(int sizex, int sizey) {
685 mapstruct *m = get_linked_map(); 686 mapstruct *m = get_linked_map();
686 m->width = sizex; 687 m->width = sizex;
702 int i=0, number_of_entries=0; 703 int i=0, number_of_entries=0;
703 const typedata *current_type; 704 const typedata *current_type;
704 705
705 shop_string=strdup_local(input_string); 706 shop_string=strdup_local(input_string);
706 p=shop_string; 707 p=shop_string;
707 LOG(llevDebug, "parsing %s\n", input_string);
708 /* first we'll count the entries, we'll need that for allocating the array shortly */ 708 /* first we'll count the entries, we'll need that for allocating the array shortly */
709 while (p) { 709 while (p) {
710 p=strchr(p, ';'); 710 p=strchr(p, ';');
711 number_of_entries++; 711 number_of_entries++;
712 if (p) p++; 712 if (p) p++;
1010 * cases, no matter if this flag is set or not. 1010 * cases, no matter if this flag is set or not.
1011 * MAP_STYLE: style map - don't add active objects, don't add to server 1011 * MAP_STYLE: style map - don't add active objects, don't add to server
1012 * managed map list. 1012 * managed map list.
1013 */ 1013 */
1014 1014
1015void (*load_original_map_callback)(mapstruct *map);
1016void (*load_temporary_map_callback)(mapstruct *map);
1017
1018mapstruct *load_original_map(const char *filename, int flags) { 1015mapstruct *load_original_map(const char *filename, int flags) {
1019 FILE *fp; 1016 FILE *fp;
1020 mapstruct *m; 1017 mapstruct *m;
1021 int comp; 1018 int comp;
1022 char pathname[MAX_BUF]; 1019 char pathname[MAX_BUF];
1150 *****************************************************************************/ 1147 *****************************************************************************/
1151 1148
1152/* This goes through map 'm' and removed any unique items on the map. */ 1149/* This goes through map 'm' and removed any unique items on the map. */
1153static void delete_unique_items(mapstruct *m) 1150static void delete_unique_items(mapstruct *m)
1154{ 1151{
1155 int i,j,unique=0; 1152 int i,j,unique;
1156 object *op, *next; 1153 object *op, *next;
1157 1154
1158 for(i=0; i<MAP_WIDTH(m); i++) 1155 for(i=0; i<MAP_WIDTH(m); i++)
1159 for(j=0; j<MAP_HEIGHT(m); j++) { 1156 for(j=0; j<MAP_HEIGHT(m); j++) {
1160 unique=0; 1157 unique=0;
1664} 1661}
1665 1662
1666void clean_tmp_map(mapstruct *m) { 1663void clean_tmp_map(mapstruct *m) {
1667 if(m->tmpname == NULL) 1664 if(m->tmpname == NULL)
1668 return; 1665 return;
1666 if (clean_temporary_map_callback)
1667 clean_temporary_map_callback (m);
1669 (void) unlink(m->tmpname); 1668 (void) unlink(m->tmpname);
1670} 1669}
1671 1670
1672void free_all_maps(void) 1671void free_all_maps(void)
1673{ 1672{
1701 return 0; 1700 return 0;
1702 } 1701 }
1703 1702
1704 /* inform all players on the map */ 1703 /* inform all players on the map */
1705 if (change>0) 1704 if (change>0)
1706 new_info_map(NDI_BLACK, m,"It becomes darker."); 1705 new_info_map(NDI_BLACK|NDI_UNIQUE, m,"It becomes darker.");
1707 else 1706 else
1708 new_info_map(NDI_BLACK, m,"It becomes brighter."); 1707 new_info_map(NDI_BLACK|NDI_UNIQUE, m,"It becomes brighter.");
1709 1708
1710 /* Do extra checking. since m->darkness is a unsigned value, 1709 /* Do extra checking. since m->darkness is a unsigned value,
1711 * we need to be extra careful about negative values. 1710 * we need to be extra careful about negative values.
1712 * In general, the checks below are only needed if change 1711 * In general, the checks below are only needed if change
1713 * is not +/-1 1712 * is not +/-1

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines