~ubuntu-branches/ubuntu/vivid/inform/vivid

« back to all changes in this revision

Viewing changes to inform-6.31.1/lib/verblib.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-05-26 22:09:44 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526220944-ba7phz0d1k4vo7wx
Tags: 6.31.1+dfsg-1
* Remove a considerable number of files from the package
  due to unacceptable licensing terms.
* Repair library symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
! ==============================================================================
 
2
!   VERBLIB:  Front end to standard verbs library.
 
3
!
 
4
!   Supplied for use with Inform 6 -- Release 6/11 -- Serial number 040227
 
5
!
 
6
!   Copyright Graham Nelson 1993-2004 but freely usable (see manuals)
 
7
!
 
8
!   In your game file, Include three library files in this order:
 
9
!       Include "Parser";
 
10
!       Include "VerbLib";
 
11
!       Include "Grammar";
 
12
! ==============================================================================
 
13
 
 
14
System_file;
 
15
 
 
16
! ------------------------------------------------------------------------------
 
17
 
 
18
Default AMUSING_PROVIDED 1;
 
19
Default MAX_CARRIED      100;
 
20
Default MAX_SCORE        0;
 
21
Default NUMBER_TASKS     1;
 
22
Default OBJECT_SCORE     4;
 
23
Default ROOM_SCORE       5;
 
24
Default SACK_OBJECT      0;
 
25
Default TASKS_PROVIDED   1;
 
26
 
 
27
#Ifndef task_scores;
 
28
! Constant MAKE__TS;
 
29
! #Endif;
 
30
! #Ifdef MAKE__TS;
 
31
Array  task_scores -> 0 0 0 0;
 
32
#Endif;
 
33
 
 
34
Array  task_done -> NUMBER_TASKS;
 
35
 
 
36
#Ifndef LibraryMessages;
 
37
Object LibraryMessages;
 
38
#Endif;
 
39
 
 
40
#Ifndef NO_PLACES;
 
41
[ ObjectsSub; Objects1Sub(); ];
 
42
[ PlacesSub;  Places1Sub(); ];
 
43
#Endif; ! NO_PLACES
 
44
 
 
45
#Ifdef USE_MODULES;
 
46
Link "verblibm";
 
47
#Ifnot;
 
48
Include "verblibm";
 
49
#Endif; ! USE_MODULES
 
50
 
 
51
! ==============================================================================
 
52
 
 
53
Constant LIBRARY_VERBLIB;       ! for dependency checking
 
54
 
 
55
! ==============================================================================