
Removed unnecessary or potentially harmful compiler flags. Added alignment attribute to all old struct members. Removed some unused variables. Made some switch statements handle all or more cases. Removed using declarations in favor of fully qualified names. Fixed a couple of assignments in conditionals that should have been comparisons. Eliminated linker warnings by restoring default linking of standard libraries. Fixed some comparisons between signed and unsigned integers. Note: No testing has been done, in particular of old file I/O. This should be checked for regression caused by alteration of old struct definitions. git-svn-id: http://openexile.googlecode.com/svn/trunk@63 4ebdad44-0ea0-11de-aab3-ff745001d230
35 lines
585 B
C++
35 lines
585 B
C++
/*
|
|
* talking.h
|
|
* BoE
|
|
*
|
|
* Created by Celtic Minstrel on 22/04/09.
|
|
*
|
|
*/
|
|
|
|
#ifndef TALKING_H
|
|
#define TALKING_H
|
|
|
|
#include <iostream>
|
|
|
|
namespace legacy {
|
|
struct talking_record_type;
|
|
struct talking_node_type;
|
|
};
|
|
|
|
class cSpeech { // formerly talking_record_type
|
|
public:
|
|
class cNode { // formerly talking_node_type
|
|
public:
|
|
short personality,type;
|
|
char link1[4],link2[4];
|
|
short extras[4];
|
|
};
|
|
unsigned char strlens[200];
|
|
char talk_strs[170][256];
|
|
cNode talk_nodes[60];
|
|
|
|
cSpeech& operator = (legacy::talking_record_type& old);
|
|
void writeTo(std::ostream& file);
|
|
};
|
|
|
|
#endif |