ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/book.h
Revision: 1.3
Committed: Sat Sep 16 22:06:17 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1
Changes since 1.2: +6 -4 lines
Log Message:
indent

File Contents

# User Rev Content
1 root 1.1
2     /* Dec '95 - laid down initial file. Stuff in here is for BOOKs
3     * hack. Information in this file describes fundental parameters
4     * of 'books' - objects with type==BOOK. -b.t.
5     */
6    
7     /* Message buf size. If this is changed, keep in mind that big strings
8     * may be unreadable by the player as the tail of the message
9     * can scroll over the beginning (as of v0.92.2).
10     * Note that the book messages are stored in the msg buf,
11     * which is limited by 'HUGE_BUF' in the loader.
12     */
13     #ifndef BOOK_H
14     #define BOOK_H
15     #define BOOK_BUF HUGE_BUF-10
16    
17     /* if little books arent getting enough text generated, enlarge this */
18    
19     #define BASE_BOOK_BUF 250
20    
21     /* Book buffer size. We shouldnt let little books/scrolls have
22     * more info than big, weighty tomes! So lets base the 'natural'
23     * book message buffer size on its weight. But never let a book
24     * mesg buffer exceed the max. size (BOOK_BUF) */
25    
26     #define BOOKSIZE(xyz) BASE_BOOK_BUF+((xyz)->weight/10)>BOOK_BUF? \
27     BOOK_BUF:BASE_BOOK_BUF+((xyz)->weight/10);
28    
29 root 1.3 struct readable_message_type
30     {
31     uint8 message_type;
32     uint8 message_subtype;
33     };
34    
35 root 1.1 #endif