1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Default config fheroes2.cfg options:
#
# path to directory data
data = /usr/share/fheroes2/data
#
# path to directory maps, you can set few maps
maps = /usr/share/fheroes2/maps
# maps = c:\other_maps
#
# use alternative resource
# alt resource = off
#
# sound: on off
sound = on
#
# music: on,midi,cd,ext,off
music = on
#
# sound volume: 0 - 10
# sound volume = 6
#
# music volume: 0 - 10
# music volume = 6
#
# external play music command:
# playmus command = ""
#
# video mode (640x480, 800x576, 1024x768, 1280x1024 or other divisible 32)
videomode = 320x240
#
# sdl video driver, windows: windib, directx, wince: gapi, raw, linux: x11, other see sdl manual
# videdriver =
#
# heroes move speed: 0 - 10
heroes speed = 10
#
# AI move speed: 0 - 10
ai speed = 10
#
# battle speed: 0 - 10
battle speed = 10
#
# scroll speed: 1 - 4
# scroll speed = 2
#
# fullscreen: on off (F4 switch)
fullscreen = on
#
# debug (0 - 9)
debug = off
#
# use ttf fonts
unicode = on
#
# force lang
# lang = en
#
# force encode maps text
# maps charset =
#
# font name (only with unicode = on)
# fonts normal = bigfonts.ttf
# fonts small = smallfonts.ttf
# fonts normal size = 15
# fonts small size = 10
#
# fonts render engine: (blended/solid) (only with unicode = on)
fonts small render = blended
fonts normal render = blended
#
# network port:
# port = 5154
#
# pocket pc emulation (set auto on for videomode < 640x480)
pocket pc = on
#
# pocket pc options:
# tap delay = 1050
# pointer offset x = 0
# pointer offset y = 0
#
# move mouse from keyboard (also see fheroes2.key):
# emulate mouse = off
# emulate mouse step = 10
# virtual key mapping:
# key_273 = '.'
# key_275 = '/'
# see http://en.qi-hardware.com/wiki/Key_codes
key_98 = ';'
key_46 = '/'
#key_33 = ','
key_47 = '.'
key_282 = '1'
key_283 = '3'
key_284 = '5'
key_285 = '7'
key_286 = '9'
emulate mouse = on
emulate mouse step = 5
emulate mouse up = 273
emulate mouse down = 274
emulate mouse right = 275
emulate mouse left = 276
emulate press left = 292
emulate press right = 293
|