1# This file was automatically generated by SWIG (http://www.swig.org).
2# Version 3.0.8
3#
4# Do not make changes to this file unless you know what you are doing--modify
5# the SWIG interface file instead.
6
7
8
9
10
11from sys import version_info
12if version_info >= (2, 6, 0):
13    def swig_import_helper():
14        from os.path import dirname
15        import imp
16        fp = None
17        try:
18            fp, pathname, description = imp.find_module('_adonthell', [dirname(__file__)])
19        except ImportError:
20            import _adonthell
21            return _adonthell
22        if fp is not None:
23            try:
24                _mod = imp.load_module('_adonthell', fp, pathname, description)
25            finally:
26                fp.close()
27            return _mod
28    _adonthell = swig_import_helper()
29    del swig_import_helper
30else:
31    import _adonthell
32del version_info
33try:
34    _swig_property = property
35except NameError:
36    pass  # Python < 2.2 doesn't have 'property'.
37
38
39def _swig_setattr_nondynamic(self, class_type, name, value, static=1):
40    if (name == "thisown"):
41        return self.this.own(value)
42    if (name == "this"):
43        if type(value).__name__ == 'SwigPyObject':
44            self.__dict__[name] = value
45            return
46    method = class_type.__swig_setmethods__.get(name, None)
47    if method:
48        return method(self, value)
49    if (not static):
50        object.__setattr__(self, name, value)
51    else:
52        raise AttributeError("You cannot add attributes to %s" % self)
53
54
55def _swig_setattr(self, class_type, name, value):
56    return _swig_setattr_nondynamic(self, class_type, name, value, 0)
57
58
59def _swig_getattr_nondynamic(self, class_type, name, static=1):
60    if (name == "thisown"):
61        return self.this.own()
62    method = class_type.__swig_getmethods__.get(name, None)
63    if method:
64        return method(self)
65    if (not static):
66        return object.__getattr__(self, name)
67    else:
68        raise AttributeError(name)
69
70def _swig_getattr(self, class_type, name):
71    return _swig_getattr_nondynamic(self, class_type, name, 0)
72
73
74def _swig_repr(self):
75    try:
76        strthis = "proxy of " + self.this.__repr__()
77    except Exception:
78        strthis = ""
79    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
80
81try:
82    _object = object
83    _newclass = 1
84except AttributeError:
85    class _object:
86        pass
87    _newclass = 0
88
89
90
91def _swig_setattr_nondynamic_method(set):
92    def set_attr(self, name, value):
93        if (name == "thisown"):
94            return self.this.own(value)
95        if hasattr(self, name) or (name == "this"):
96            set(self, name, value)
97        else:
98            raise AttributeError("You cannot add attributes to %s" % self)
99    return set_attr
100
101
102
103_adonthell.Python_swigconstant(_adonthell)
104Python = _adonthell.Python
105
106_adonthell.C_swigconstant(_adonthell)
107C = _adonthell.C
108
109_adonthell.READ_swigconstant(_adonthell)
110READ = _adonthell.READ
111
112_adonthell.WRITE_swigconstant(_adonthell)
113WRITE = _adonthell.WRITE
114class gz_file(object):
115    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
116    __repr__ = _swig_repr
117
118    def __init__(self, *args):
119        this = _adonthell.new_gz_file(*args)
120        try:
121            self.this.append(this)
122        except Exception:
123            self.this = this
124    __swig_destroy__ = _adonthell.delete_gz_file
125    __del__ = lambda self: None
126
127    def open(self, *args):
128        return _adonthell.gz_file_open(self, *args)
129
130    def close(self, *args):
131        return _adonthell.gz_file_close(self, *args)
132
133    def is_open(self, *args):
134        return _adonthell.gz_file_is_open(self, *args)
135
136    def eof(self, *args):
137        return _adonthell.gz_file_eof(self, *args)
138gz_file_swigregister = _adonthell.gz_file_swigregister
139gz_file_swigregister(gz_file)
140
141class igzstream(gz_file):
142    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
143    __repr__ = _swig_repr
144
145    def __init__(self, *args):
146        this = _adonthell.new_igzstream(*args)
147        try:
148            self.this.append(this)
149        except Exception:
150            self.this = this
151    __swig_destroy__ = _adonthell.delete_igzstream
152    __del__ = lambda self: None
153
154    def open(self, *args):
155        return _adonthell.igzstream_open(self, *args)
156
157    def get_block(self, *args):
158        return _adonthell.igzstream_get_block(self, *args)
159
160    def get_bool(self, *args):
161        return _adonthell.igzstream_get_bool(self, *args)
162
163    def get_uint8(self, *args):
164        return _adonthell.igzstream_get_uint8(self, *args)
165
166    def get_sint8(self, *args):
167        return _adonthell.igzstream_get_sint8(self, *args)
168
169    def get_uint16(self, *args):
170        return _adonthell.igzstream_get_uint16(self, *args)
171
172    def get_sint16(self, *args):
173        return _adonthell.igzstream_get_sint16(self, *args)
174
175    def get_uint32(self, *args):
176        return _adonthell.igzstream_get_uint32(self, *args)
177
178    def get_sint32(self, *args):
179        return _adonthell.igzstream_get_sint32(self, *args)
180
181    def get_string(self, *args):
182        return _adonthell.igzstream_get_string(self, *args)
183
184    def get_float(self, *args):
185        return _adonthell.igzstream_get_float(self, *args)
186igzstream_swigregister = _adonthell.igzstream_swigregister
187igzstream_swigregister(igzstream)
188
189class ogzstream(gz_file):
190    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
191    __repr__ = _swig_repr
192
193    def __init__(self, *args):
194        this = _adonthell.new_ogzstream(*args)
195        try:
196            self.this.append(this)
197        except Exception:
198            self.this = this
199    __swig_destroy__ = _adonthell.delete_ogzstream
200    __del__ = lambda self: None
201
202    def open(self, *args):
203        return _adonthell.ogzstream_open(self, *args)
204
205    def put_block(self, *args):
206        return _adonthell.ogzstream_put_block(self, *args)
207
208    def put_bool(self, *args):
209        return _adonthell.ogzstream_put_bool(self, *args)
210
211    def put_uint8(self, *args):
212        return _adonthell.ogzstream_put_uint8(self, *args)
213
214    def put_sint8(self, *args):
215        return _adonthell.ogzstream_put_sint8(self, *args)
216
217    def put_uint16(self, *args):
218        return _adonthell.ogzstream_put_uint16(self, *args)
219
220    def put_sint16(self, *args):
221        return _adonthell.ogzstream_put_sint16(self, *args)
222
223    def put_uint32(self, *args):
224        return _adonthell.ogzstream_put_uint32(self, *args)
225
226    def put_sint32(self, *args):
227        return _adonthell.ogzstream_put_sint32(self, *args)
228
229    def put_string(self, *args):
230        return _adonthell.ogzstream_put_string(self, *args)
231
232    def put_float(self, *args):
233        return _adonthell.ogzstream_put_float(self, *args)
234ogzstream_swigregister = _adonthell.ogzstream_swigregister
235ogzstream_swigregister(ogzstream)
236
237class fileops(object):
238    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
239    __repr__ = _swig_repr
240    put_version = staticmethod(_adonthell.fileops_put_version)
241    get_version = staticmethod(_adonthell.fileops_get_version)
242
243    def __init__(self, *args):
244        this = _adonthell.new_fileops(*args)
245        try:
246            self.this.append(this)
247        except Exception:
248            self.this = this
249    __swig_destroy__ = _adonthell.delete_fileops
250    __del__ = lambda self: None
251fileops_swigregister = _adonthell.fileops_swigregister
252fileops_swigregister(fileops)
253
254def fileops_put_version(*args):
255    return _adonthell.fileops_put_version(*args)
256fileops_put_version = _adonthell.fileops_put_version
257
258def fileops_get_version(*args):
259    return _adonthell.fileops_get_version(*args)
260fileops_get_version = _adonthell.fileops_get_version
261
262
263_adonthell.EVENTS_DIR_swigconstant(_adonthell)
264EVENTS_DIR = _adonthell.EVENTS_DIR
265class event(object):
266    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
267
268    def __init__(self, *args, **kwargs):
269        raise AttributeError("No constructor defined - class is abstract")
270    __repr__ = _swig_repr
271    __swig_destroy__ = _adonthell.delete_event
272    __del__ = lambda self: None
273
274    def clear(self, *args):
275        return _adonthell.event_clear(self, *args)
276
277    def type(self, *args):
278        return _adonthell.event_type(self, *args)
279
280    def id(self, *args):
281        return _adonthell.event_id(self, *args)
282
283    def set_id(self, *args):
284        return _adonthell.event_set_id(self, *args)
285
286    def registered(self, *args):
287        return _adonthell.event_registered(self, *args)
288
289    def repeat(self, *args):
290        return _adonthell.event_repeat(self, *args)
291
292    def set_repeat(self, *args):
293        return _adonthell.event_set_repeat(self, *args)
294
295    def execute(self, *args):
296        return _adonthell.event_execute(self, *args)
297
298    def equals(self, *args):
299        return _adonthell.event_equals(self, *args)
300
301    def set_script(self, *args):
302        return _adonthell.event_set_script(self, *args)
303
304    def set_callback(self, *args):
305        return _adonthell.event_set_callback(self, *args)
306
307    def pause(self, *args):
308        return _adonthell.event_pause(self, *args)
309
310    def resume(self, *args):
311        return _adonthell.event_resume(self, *args)
312
313    def is_paused(self, *args):
314        return _adonthell.event_is_paused(self, *args)
315
316    def put_state(self, *args):
317        return _adonthell.event_put_state(self, *args)
318
319    def get_state(self, *args):
320        return _adonthell.event_get_state(self, *args)
321event_swigregister = _adonthell.event_swigregister
322event_swigregister(event)
323
324class event_list(object):
325    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
326    __repr__ = _swig_repr
327
328    def __init__(self, *args):
329        this = _adonthell.new_event_list(*args)
330        try:
331            self.this.append(this)
332        except Exception:
333            self.this = this
334    __swig_destroy__ = _adonthell.delete_event_list
335    __del__ = lambda self: None
336
337    def clear(self, *args):
338        return _adonthell.event_list_clear(self, *args)
339
340    def add_event(self, *args):
341        return _adonthell.event_list_add_event(self, *args)
342
343    def remove_event(self, *args):
344        return _adonthell.event_list_remove_event(self, *args)
345
346    def get_event(self, *args):
347        return _adonthell.event_list_get_event(self, *args)
348
349    def pause(self, *args):
350        return _adonthell.event_list_pause(self, *args)
351
352    def resume(self, *args):
353        return _adonthell.event_list_resume(self, *args)
354
355    def is_paused(self, *args):
356        return _adonthell.event_list_is_paused(self, *args)
357
358    def put_state(self, *args):
359        return _adonthell.event_list_put_state(self, *args)
360
361    def get_state(self, *args):
362        return _adonthell.event_list_get_state(self, *args)
363event_list_swigregister = _adonthell.event_list_swigregister
364event_list_swigregister(event_list)
365
366class time_event(event):
367    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
368    __repr__ = _swig_repr
369
370    def __init__(self, *args):
371        this = _adonthell.new_time_event(*args)
372        try:
373            self.this.append(this)
374        except Exception:
375            self.this = this
376
377    def set_repeat(self, *args):
378        return _adonthell.time_event_set_repeat(self, *args)
379
380    def equals(self, *args):
381        return _adonthell.time_event_equals(self, *args)
382
383    def execute(self, *args):
384        return _adonthell.time_event_execute(self, *args)
385
386    def put_state(self, *args):
387        return _adonthell.time_event_put_state(self, *args)
388
389    def get_state(self, *args):
390        return _adonthell.time_event_get_state(self, *args)
391
392    def pause(self, *args):
393        return _adonthell.time_event_pause(self, *args)
394
395    def resume(self, *args):
396        return _adonthell.time_event_resume(self, *args)
397
398    def time(self, *args):
399        return _adonthell.time_event_time(self, *args)
400    __swig_destroy__ = _adonthell.delete_time_event
401    __del__ = lambda self: None
402time_event_swigregister = _adonthell.time_event_swigregister
403time_event_swigregister(time_event)
404
405class map_event(event):
406    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
407    __repr__ = _swig_repr
408
409    def __init__(self, *args):
410        this = _adonthell.new_map_event(*args)
411        try:
412            self.this.append(this)
413        except Exception:
414            self.this = this
415
416    def put_state(self, *args):
417        return _adonthell.map_event_put_state(self, *args)
418
419    def get_state(self, *args):
420        return _adonthell.map_event_get_state(self, *args)
421    submap = _swig_property(_adonthell.map_event_submap_get, _adonthell.map_event_submap_set)
422    x = _swig_property(_adonthell.map_event_x_get, _adonthell.map_event_x_set)
423    y = _swig_property(_adonthell.map_event_y_get, _adonthell.map_event_y_set)
424    dir = _swig_property(_adonthell.map_event_dir_get, _adonthell.map_event_dir_set)
425    map = _swig_property(_adonthell.map_event_map_get, _adonthell.map_event_map_set)
426    c = _swig_property(_adonthell.map_event_c_get, _adonthell.map_event_c_set)
427
428    def equals(self, *args):
429        return _adonthell.map_event_equals(self, *args)
430
431    def execute(self, *args):
432        return _adonthell.map_event_execute(self, *args)
433    __swig_destroy__ = _adonthell.delete_map_event
434    __del__ = lambda self: None
435map_event_swigregister = _adonthell.map_event_swigregister
436map_event_swigregister(map_event)
437
438class enter_event(map_event):
439    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
440    __repr__ = _swig_repr
441
442    def __init__(self, *args):
443        this = _adonthell.new_enter_event(*args)
444        try:
445            self.this.append(this)
446        except Exception:
447            self.this = this
448    __swig_destroy__ = _adonthell.delete_enter_event
449    __del__ = lambda self: None
450enter_event_swigregister = _adonthell.enter_event_swigregister
451enter_event_swigregister(enter_event)
452
453class leave_event(map_event):
454    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
455    __repr__ = _swig_repr
456
457    def __init__(self, *args):
458        this = _adonthell.new_leave_event(*args)
459        try:
460            self.this.append(this)
461        except Exception:
462            self.this = this
463    __swig_destroy__ = _adonthell.delete_leave_event
464    __del__ = lambda self: None
465leave_event_swigregister = _adonthell.leave_event_swigregister
466leave_event_swigregister(leave_event)
467
468class action_event(map_event):
469    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
470    __repr__ = _swig_repr
471
472    def __init__(self, *args):
473        this = _adonthell.new_action_event(*args)
474        try:
475            self.this.append(this)
476        except Exception:
477            self.this = this
478    __swig_destroy__ = _adonthell.delete_action_event
479    __del__ = lambda self: None
480action_event_swigregister = _adonthell.action_event_swigregister
481action_event_swigregister(action_event)
482
483class event_handler(object):
484    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
485    __repr__ = _swig_repr
486    init = staticmethod(_adonthell.event_handler_init)
487    cleanup = staticmethod(_adonthell.event_handler_cleanup)
488    remove_event = staticmethod(_adonthell.event_handler_remove_event)
489    raise_event = staticmethod(_adonthell.event_handler_raise_event)
490
491    def __init__(self, *args):
492        this = _adonthell.new_event_handler(*args)
493        try:
494            self.this.append(this)
495        except Exception:
496            self.this = this
497    __swig_destroy__ = _adonthell.delete_event_handler
498    __del__ = lambda self: None
499event_handler_swigregister = _adonthell.event_handler_swigregister
500event_handler_swigregister(event_handler)
501
502def event_handler_init(*args):
503    return _adonthell.event_handler_init(*args)
504event_handler_init = _adonthell.event_handler_init
505
506def event_handler_cleanup(*args):
507    return _adonthell.event_handler_cleanup(*args)
508event_handler_cleanup = _adonthell.event_handler_cleanup
509
510def event_handler_remove_event(*args):
511    return _adonthell.event_handler_remove_event(*args)
512event_handler_remove_event = _adonthell.event_handler_remove_event
513
514def event_handler_raise_event(*args):
515    return _adonthell.event_handler_raise_event(*args)
516event_handler_raise_event = _adonthell.event_handler_raise_event
517
518class storage(object):
519    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
520    __repr__ = _swig_repr
521
522    def __init__(self, *args):
523        this = _adonthell.new_storage(*args)
524        try:
525            self.this.append(this)
526        except Exception:
527            self.this = this
528    __swig_destroy__ = _adonthell.delete_storage
529    __del__ = lambda self: None
530
531    def set_val(self, *args):
532        return _adonthell.storage_set_val(self, *args)
533
534    def get_val(self, *args):
535        return _adonthell.storage_get_val(self, *args)
536
537    def next(self, *args):
538        return _adonthell.storage_next(self, *args)
539storage_swigregister = _adonthell.storage_swigregister
540storage_swigregister(storage)
541
542class objects(object):
543    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
544    __repr__ = _swig_repr
545
546    def __init__(self, *args):
547        this = _adonthell.new_objects(*args)
548        try:
549            self.this.append(this)
550        except Exception:
551            self.this = this
552
553    def set_val(self, *args):
554        return _adonthell.objects_set_val(self, *args)
555
556    def get_val(self, *args):
557        return _adonthell.objects_get_val(self, *args)
558
559    def erase(self, *args):
560        return _adonthell.objects_erase(self, *args)
561
562    def next(self, *args):
563        return _adonthell.objects_next(self, *args)
564    __swig_destroy__ = _adonthell.delete_objects
565    __del__ = lambda self: None
566objects_swigregister = _adonthell.objects_swigregister
567objects_swigregister(objects)
568
569
570_adonthell.CYCLE_LENGTH_swigconstant(_adonthell)
571CYCLE_LENGTH = _adonthell.CYCLE_LENGTH
572
573_adonthell.FRAME_RATE_swigconstant(_adonthell)
574FRAME_RATE = _adonthell.FRAME_RATE
575
576_adonthell.FTS_LIMIT_swigconstant(_adonthell)
577FTS_LIMIT = _adonthell.FTS_LIMIT
578class gametime(object):
579    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
580    __repr__ = _swig_repr
581    init = staticmethod(_adonthell.gametime_init)
582    minute = staticmethod(_adonthell.gametime_minute)
583    start_action = staticmethod(_adonthell.gametime_start_action)
584    stop_action = staticmethod(_adonthell.gametime_stop_action)
585    frames_to_skip = staticmethod(_adonthell.gametime_frames_to_skip)
586    update = staticmethod(_adonthell.gametime_update)
587
588    def __init__(self, *args):
589        this = _adonthell.new_gametime(*args)
590        try:
591            self.this.append(this)
592        except Exception:
593            self.this = this
594    __swig_destroy__ = _adonthell.delete_gametime
595    __del__ = lambda self: None
596gametime_swigregister = _adonthell.gametime_swigregister
597gametime_swigregister(gametime)
598
599def gametime_init(*args):
600    return _adonthell.gametime_init(*args)
601gametime_init = _adonthell.gametime_init
602
603def gametime_minute(*args):
604    return _adonthell.gametime_minute(*args)
605gametime_minute = _adonthell.gametime_minute
606
607def gametime_start_action(*args):
608    return _adonthell.gametime_start_action(*args)
609gametime_start_action = _adonthell.gametime_start_action
610
611def gametime_stop_action(*args):
612    return _adonthell.gametime_stop_action(*args)
613gametime_stop_action = _adonthell.gametime_stop_action
614
615def gametime_frames_to_skip(*args):
616    return _adonthell.gametime_frames_to_skip(*args)
617gametime_frames_to_skip = _adonthell.gametime_frames_to_skip
618
619def gametime_update(*args):
620    return _adonthell.gametime_update(*args)
621gametime_update = _adonthell.gametime_update
622
623class gamedate(object):
624    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
625    __repr__ = _swig_repr
626    update = staticmethod(_adonthell.gamedate_update)
627    time = staticmethod(_adonthell.gamedate_time)
628    weekday = staticmethod(_adonthell.gamedate_weekday)
629    day = staticmethod(_adonthell.gamedate_day)
630    hour = staticmethod(_adonthell.gamedate_hour)
631    minute = staticmethod(_adonthell.gamedate_minute)
632    parse_time = staticmethod(_adonthell.gamedate_parse_time)
633    get_state = staticmethod(_adonthell.gamedate_get_state)
634    put_state = staticmethod(_adonthell.gamedate_put_state)
635
636    def __init__(self, *args):
637        this = _adonthell.new_gamedate(*args)
638        try:
639            self.this.append(this)
640        except Exception:
641            self.this = this
642    __swig_destroy__ = _adonthell.delete_gamedate
643    __del__ = lambda self: None
644gamedate_swigregister = _adonthell.gamedate_swigregister
645gamedate_swigregister(gamedate)
646
647def gamedate_update(*args):
648    return _adonthell.gamedate_update(*args)
649gamedate_update = _adonthell.gamedate_update
650
651def gamedate_time(*args):
652    return _adonthell.gamedate_time(*args)
653gamedate_time = _adonthell.gamedate_time
654
655def gamedate_weekday(*args):
656    return _adonthell.gamedate_weekday(*args)
657gamedate_weekday = _adonthell.gamedate_weekday
658
659def gamedate_day(*args):
660    return _adonthell.gamedate_day(*args)
661gamedate_day = _adonthell.gamedate_day
662
663def gamedate_hour(*args):
664    return _adonthell.gamedate_hour(*args)
665gamedate_hour = _adonthell.gamedate_hour
666
667def gamedate_minute(*args):
668    return _adonthell.gamedate_minute(*args)
669gamedate_minute = _adonthell.gamedate_minute
670
671def gamedate_parse_time(*args):
672    return _adonthell.gamedate_parse_time(*args)
673gamedate_parse_time = _adonthell.gamedate_parse_time
674
675def gamedate_get_state(*args):
676    return _adonthell.gamedate_get_state(*args)
677gamedate_get_state = _adonthell.gamedate_get_state
678
679def gamedate_put_state(*args):
680    return _adonthell.gamedate_put_state(*args)
681gamedate_put_state = _adonthell.gamedate_put_state
682
683
684_adonthell.SDLK_SCANCODE_MASK_swigconstant(_adonthell)
685SDLK_SCANCODE_MASK = _adonthell.SDLK_SCANCODE_MASK
686
687_adonthell.SDLK_UNKNOWN_swigconstant(_adonthell)
688SDLK_UNKNOWN = _adonthell.SDLK_UNKNOWN
689
690_adonthell.SDLK_RETURN_swigconstant(_adonthell)
691SDLK_RETURN = _adonthell.SDLK_RETURN
692
693_adonthell.SDLK_ESCAPE_swigconstant(_adonthell)
694SDLK_ESCAPE = _adonthell.SDLK_ESCAPE
695
696_adonthell.SDLK_BACKSPACE_swigconstant(_adonthell)
697SDLK_BACKSPACE = _adonthell.SDLK_BACKSPACE
698
699_adonthell.SDLK_TAB_swigconstant(_adonthell)
700SDLK_TAB = _adonthell.SDLK_TAB
701
702_adonthell.SDLK_SPACE_swigconstant(_adonthell)
703SDLK_SPACE = _adonthell.SDLK_SPACE
704
705_adonthell.SDLK_EXCLAIM_swigconstant(_adonthell)
706SDLK_EXCLAIM = _adonthell.SDLK_EXCLAIM
707
708_adonthell.SDLK_QUOTEDBL_swigconstant(_adonthell)
709SDLK_QUOTEDBL = _adonthell.SDLK_QUOTEDBL
710
711_adonthell.SDLK_HASH_swigconstant(_adonthell)
712SDLK_HASH = _adonthell.SDLK_HASH
713
714_adonthell.SDLK_PERCENT_swigconstant(_adonthell)
715SDLK_PERCENT = _adonthell.SDLK_PERCENT
716
717_adonthell.SDLK_DOLLAR_swigconstant(_adonthell)
718SDLK_DOLLAR = _adonthell.SDLK_DOLLAR
719
720_adonthell.SDLK_AMPERSAND_swigconstant(_adonthell)
721SDLK_AMPERSAND = _adonthell.SDLK_AMPERSAND
722
723_adonthell.SDLK_QUOTE_swigconstant(_adonthell)
724SDLK_QUOTE = _adonthell.SDLK_QUOTE
725
726_adonthell.SDLK_LEFTPAREN_swigconstant(_adonthell)
727SDLK_LEFTPAREN = _adonthell.SDLK_LEFTPAREN
728
729_adonthell.SDLK_RIGHTPAREN_swigconstant(_adonthell)
730SDLK_RIGHTPAREN = _adonthell.SDLK_RIGHTPAREN
731
732_adonthell.SDLK_ASTERISK_swigconstant(_adonthell)
733SDLK_ASTERISK = _adonthell.SDLK_ASTERISK
734
735_adonthell.SDLK_PLUS_swigconstant(_adonthell)
736SDLK_PLUS = _adonthell.SDLK_PLUS
737
738_adonthell.SDLK_COMMA_swigconstant(_adonthell)
739SDLK_COMMA = _adonthell.SDLK_COMMA
740
741_adonthell.SDLK_MINUS_swigconstant(_adonthell)
742SDLK_MINUS = _adonthell.SDLK_MINUS
743
744_adonthell.SDLK_PERIOD_swigconstant(_adonthell)
745SDLK_PERIOD = _adonthell.SDLK_PERIOD
746
747_adonthell.SDLK_SLASH_swigconstant(_adonthell)
748SDLK_SLASH = _adonthell.SDLK_SLASH
749
750_adonthell.SDLK_0_swigconstant(_adonthell)
751SDLK_0 = _adonthell.SDLK_0
752
753_adonthell.SDLK_1_swigconstant(_adonthell)
754SDLK_1 = _adonthell.SDLK_1
755
756_adonthell.SDLK_2_swigconstant(_adonthell)
757SDLK_2 = _adonthell.SDLK_2
758
759_adonthell.SDLK_3_swigconstant(_adonthell)
760SDLK_3 = _adonthell.SDLK_3
761
762_adonthell.SDLK_4_swigconstant(_adonthell)
763SDLK_4 = _adonthell.SDLK_4
764
765_adonthell.SDLK_5_swigconstant(_adonthell)
766SDLK_5 = _adonthell.SDLK_5
767
768_adonthell.SDLK_6_swigconstant(_adonthell)
769SDLK_6 = _adonthell.SDLK_6
770
771_adonthell.SDLK_7_swigconstant(_adonthell)
772SDLK_7 = _adonthell.SDLK_7
773
774_adonthell.SDLK_8_swigconstant(_adonthell)
775SDLK_8 = _adonthell.SDLK_8
776
777_adonthell.SDLK_9_swigconstant(_adonthell)
778SDLK_9 = _adonthell.SDLK_9
779
780_adonthell.SDLK_COLON_swigconstant(_adonthell)
781SDLK_COLON = _adonthell.SDLK_COLON
782
783_adonthell.SDLK_SEMICOLON_swigconstant(_adonthell)
784SDLK_SEMICOLON = _adonthell.SDLK_SEMICOLON
785
786_adonthell.SDLK_LESS_swigconstant(_adonthell)
787SDLK_LESS = _adonthell.SDLK_LESS
788
789_adonthell.SDLK_EQUALS_swigconstant(_adonthell)
790SDLK_EQUALS = _adonthell.SDLK_EQUALS
791
792_adonthell.SDLK_GREATER_swigconstant(_adonthell)
793SDLK_GREATER = _adonthell.SDLK_GREATER
794
795_adonthell.SDLK_QUESTION_swigconstant(_adonthell)
796SDLK_QUESTION = _adonthell.SDLK_QUESTION
797
798_adonthell.SDLK_AT_swigconstant(_adonthell)
799SDLK_AT = _adonthell.SDLK_AT
800
801_adonthell.SDLK_LEFTBRACKET_swigconstant(_adonthell)
802SDLK_LEFTBRACKET = _adonthell.SDLK_LEFTBRACKET
803
804_adonthell.SDLK_BACKSLASH_swigconstant(_adonthell)
805SDLK_BACKSLASH = _adonthell.SDLK_BACKSLASH
806
807_adonthell.SDLK_RIGHTBRACKET_swigconstant(_adonthell)
808SDLK_RIGHTBRACKET = _adonthell.SDLK_RIGHTBRACKET
809
810_adonthell.SDLK_CARET_swigconstant(_adonthell)
811SDLK_CARET = _adonthell.SDLK_CARET
812
813_adonthell.SDLK_UNDERSCORE_swigconstant(_adonthell)
814SDLK_UNDERSCORE = _adonthell.SDLK_UNDERSCORE
815
816_adonthell.SDLK_BACKQUOTE_swigconstant(_adonthell)
817SDLK_BACKQUOTE = _adonthell.SDLK_BACKQUOTE
818
819_adonthell.SDLK_a_swigconstant(_adonthell)
820SDLK_a = _adonthell.SDLK_a
821
822_adonthell.SDLK_b_swigconstant(_adonthell)
823SDLK_b = _adonthell.SDLK_b
824
825_adonthell.SDLK_c_swigconstant(_adonthell)
826SDLK_c = _adonthell.SDLK_c
827
828_adonthell.SDLK_d_swigconstant(_adonthell)
829SDLK_d = _adonthell.SDLK_d
830
831_adonthell.SDLK_e_swigconstant(_adonthell)
832SDLK_e = _adonthell.SDLK_e
833
834_adonthell.SDLK_f_swigconstant(_adonthell)
835SDLK_f = _adonthell.SDLK_f
836
837_adonthell.SDLK_g_swigconstant(_adonthell)
838SDLK_g = _adonthell.SDLK_g
839
840_adonthell.SDLK_h_swigconstant(_adonthell)
841SDLK_h = _adonthell.SDLK_h
842
843_adonthell.SDLK_i_swigconstant(_adonthell)
844SDLK_i = _adonthell.SDLK_i
845
846_adonthell.SDLK_j_swigconstant(_adonthell)
847SDLK_j = _adonthell.SDLK_j
848
849_adonthell.SDLK_k_swigconstant(_adonthell)
850SDLK_k = _adonthell.SDLK_k
851
852_adonthell.SDLK_l_swigconstant(_adonthell)
853SDLK_l = _adonthell.SDLK_l
854
855_adonthell.SDLK_m_swigconstant(_adonthell)
856SDLK_m = _adonthell.SDLK_m
857
858_adonthell.SDLK_n_swigconstant(_adonthell)
859SDLK_n = _adonthell.SDLK_n
860
861_adonthell.SDLK_o_swigconstant(_adonthell)
862SDLK_o = _adonthell.SDLK_o
863
864_adonthell.SDLK_p_swigconstant(_adonthell)
865SDLK_p = _adonthell.SDLK_p
866
867_adonthell.SDLK_q_swigconstant(_adonthell)
868SDLK_q = _adonthell.SDLK_q
869
870_adonthell.SDLK_r_swigconstant(_adonthell)
871SDLK_r = _adonthell.SDLK_r
872
873_adonthell.SDLK_s_swigconstant(_adonthell)
874SDLK_s = _adonthell.SDLK_s
875
876_adonthell.SDLK_t_swigconstant(_adonthell)
877SDLK_t = _adonthell.SDLK_t
878
879_adonthell.SDLK_u_swigconstant(_adonthell)
880SDLK_u = _adonthell.SDLK_u
881
882_adonthell.SDLK_v_swigconstant(_adonthell)
883SDLK_v = _adonthell.SDLK_v
884
885_adonthell.SDLK_w_swigconstant(_adonthell)
886SDLK_w = _adonthell.SDLK_w
887
888_adonthell.SDLK_x_swigconstant(_adonthell)
889SDLK_x = _adonthell.SDLK_x
890
891_adonthell.SDLK_y_swigconstant(_adonthell)
892SDLK_y = _adonthell.SDLK_y
893
894_adonthell.SDLK_z_swigconstant(_adonthell)
895SDLK_z = _adonthell.SDLK_z
896
897_adonthell.SDLK_CAPSLOCK_swigconstant(_adonthell)
898SDLK_CAPSLOCK = _adonthell.SDLK_CAPSLOCK
899
900_adonthell.SDLK_F1_swigconstant(_adonthell)
901SDLK_F1 = _adonthell.SDLK_F1
902
903_adonthell.SDLK_F2_swigconstant(_adonthell)
904SDLK_F2 = _adonthell.SDLK_F2
905
906_adonthell.SDLK_F3_swigconstant(_adonthell)
907SDLK_F3 = _adonthell.SDLK_F3
908
909_adonthell.SDLK_F4_swigconstant(_adonthell)
910SDLK_F4 = _adonthell.SDLK_F4
911
912_adonthell.SDLK_F5_swigconstant(_adonthell)
913SDLK_F5 = _adonthell.SDLK_F5
914
915_adonthell.SDLK_F6_swigconstant(_adonthell)
916SDLK_F6 = _adonthell.SDLK_F6
917
918_adonthell.SDLK_F7_swigconstant(_adonthell)
919SDLK_F7 = _adonthell.SDLK_F7
920
921_adonthell.SDLK_F8_swigconstant(_adonthell)
922SDLK_F8 = _adonthell.SDLK_F8
923
924_adonthell.SDLK_F9_swigconstant(_adonthell)
925SDLK_F9 = _adonthell.SDLK_F9
926
927_adonthell.SDLK_F10_swigconstant(_adonthell)
928SDLK_F10 = _adonthell.SDLK_F10
929
930_adonthell.SDLK_F11_swigconstant(_adonthell)
931SDLK_F11 = _adonthell.SDLK_F11
932
933_adonthell.SDLK_F12_swigconstant(_adonthell)
934SDLK_F12 = _adonthell.SDLK_F12
935
936_adonthell.SDLK_PRINTSCREEN_swigconstant(_adonthell)
937SDLK_PRINTSCREEN = _adonthell.SDLK_PRINTSCREEN
938
939_adonthell.SDLK_SCROLLLOCK_swigconstant(_adonthell)
940SDLK_SCROLLLOCK = _adonthell.SDLK_SCROLLLOCK
941
942_adonthell.SDLK_PAUSE_swigconstant(_adonthell)
943SDLK_PAUSE = _adonthell.SDLK_PAUSE
944
945_adonthell.SDLK_INSERT_swigconstant(_adonthell)
946SDLK_INSERT = _adonthell.SDLK_INSERT
947
948_adonthell.SDLK_HOME_swigconstant(_adonthell)
949SDLK_HOME = _adonthell.SDLK_HOME
950
951_adonthell.SDLK_PAGEUP_swigconstant(_adonthell)
952SDLK_PAGEUP = _adonthell.SDLK_PAGEUP
953
954_adonthell.SDLK_DELETE_swigconstant(_adonthell)
955SDLK_DELETE = _adonthell.SDLK_DELETE
956
957_adonthell.SDLK_END_swigconstant(_adonthell)
958SDLK_END = _adonthell.SDLK_END
959
960_adonthell.SDLK_PAGEDOWN_swigconstant(_adonthell)
961SDLK_PAGEDOWN = _adonthell.SDLK_PAGEDOWN
962
963_adonthell.SDLK_RIGHT_swigconstant(_adonthell)
964SDLK_RIGHT = _adonthell.SDLK_RIGHT
965
966_adonthell.SDLK_LEFT_swigconstant(_adonthell)
967SDLK_LEFT = _adonthell.SDLK_LEFT
968
969_adonthell.SDLK_DOWN_swigconstant(_adonthell)
970SDLK_DOWN = _adonthell.SDLK_DOWN
971
972_adonthell.SDLK_UP_swigconstant(_adonthell)
973SDLK_UP = _adonthell.SDLK_UP
974
975_adonthell.SDLK_NUMLOCKCLEAR_swigconstant(_adonthell)
976SDLK_NUMLOCKCLEAR = _adonthell.SDLK_NUMLOCKCLEAR
977
978_adonthell.SDLK_KP_DIVIDE_swigconstant(_adonthell)
979SDLK_KP_DIVIDE = _adonthell.SDLK_KP_DIVIDE
980
981_adonthell.SDLK_KP_MULTIPLY_swigconstant(_adonthell)
982SDLK_KP_MULTIPLY = _adonthell.SDLK_KP_MULTIPLY
983
984_adonthell.SDLK_KP_MINUS_swigconstant(_adonthell)
985SDLK_KP_MINUS = _adonthell.SDLK_KP_MINUS
986
987_adonthell.SDLK_KP_PLUS_swigconstant(_adonthell)
988SDLK_KP_PLUS = _adonthell.SDLK_KP_PLUS
989
990_adonthell.SDLK_KP_ENTER_swigconstant(_adonthell)
991SDLK_KP_ENTER = _adonthell.SDLK_KP_ENTER
992
993_adonthell.SDLK_KP_1_swigconstant(_adonthell)
994SDLK_KP_1 = _adonthell.SDLK_KP_1
995
996_adonthell.SDLK_KP_2_swigconstant(_adonthell)
997SDLK_KP_2 = _adonthell.SDLK_KP_2
998
999_adonthell.SDLK_KP_3_swigconstant(_adonthell)
1000SDLK_KP_3 = _adonthell.SDLK_KP_3
1001
1002_adonthell.SDLK_KP_4_swigconstant(_adonthell)
1003SDLK_KP_4 = _adonthell.SDLK_KP_4
1004
1005_adonthell.SDLK_KP_5_swigconstant(_adonthell)
1006SDLK_KP_5 = _adonthell.SDLK_KP_5
1007
1008_adonthell.SDLK_KP_6_swigconstant(_adonthell)
1009SDLK_KP_6 = _adonthell.SDLK_KP_6
1010
1011_adonthell.SDLK_KP_7_swigconstant(_adonthell)
1012SDLK_KP_7 = _adonthell.SDLK_KP_7
1013
1014_adonthell.SDLK_KP_8_swigconstant(_adonthell)
1015SDLK_KP_8 = _adonthell.SDLK_KP_8
1016
1017_adonthell.SDLK_KP_9_swigconstant(_adonthell)
1018SDLK_KP_9 = _adonthell.SDLK_KP_9
1019
1020_adonthell.SDLK_KP_0_swigconstant(_adonthell)
1021SDLK_KP_0 = _adonthell.SDLK_KP_0
1022
1023_adonthell.SDLK_KP_PERIOD_swigconstant(_adonthell)
1024SDLK_KP_PERIOD = _adonthell.SDLK_KP_PERIOD
1025
1026_adonthell.SDLK_APPLICATION_swigconstant(_adonthell)
1027SDLK_APPLICATION = _adonthell.SDLK_APPLICATION
1028
1029_adonthell.SDLK_POWER_swigconstant(_adonthell)
1030SDLK_POWER = _adonthell.SDLK_POWER
1031
1032_adonthell.SDLK_KP_EQUALS_swigconstant(_adonthell)
1033SDLK_KP_EQUALS = _adonthell.SDLK_KP_EQUALS
1034
1035_adonthell.SDLK_F13_swigconstant(_adonthell)
1036SDLK_F13 = _adonthell.SDLK_F13
1037
1038_adonthell.SDLK_F14_swigconstant(_adonthell)
1039SDLK_F14 = _adonthell.SDLK_F14
1040
1041_adonthell.SDLK_F15_swigconstant(_adonthell)
1042SDLK_F15 = _adonthell.SDLK_F15
1043
1044_adonthell.SDLK_F16_swigconstant(_adonthell)
1045SDLK_F16 = _adonthell.SDLK_F16
1046
1047_adonthell.SDLK_F17_swigconstant(_adonthell)
1048SDLK_F17 = _adonthell.SDLK_F17
1049
1050_adonthell.SDLK_F18_swigconstant(_adonthell)
1051SDLK_F18 = _adonthell.SDLK_F18
1052
1053_adonthell.SDLK_F19_swigconstant(_adonthell)
1054SDLK_F19 = _adonthell.SDLK_F19
1055
1056_adonthell.SDLK_F20_swigconstant(_adonthell)
1057SDLK_F20 = _adonthell.SDLK_F20
1058
1059_adonthell.SDLK_F21_swigconstant(_adonthell)
1060SDLK_F21 = _adonthell.SDLK_F21
1061
1062_adonthell.SDLK_F22_swigconstant(_adonthell)
1063SDLK_F22 = _adonthell.SDLK_F22
1064
1065_adonthell.SDLK_F23_swigconstant(_adonthell)
1066SDLK_F23 = _adonthell.SDLK_F23
1067
1068_adonthell.SDLK_F24_swigconstant(_adonthell)
1069SDLK_F24 = _adonthell.SDLK_F24
1070
1071_adonthell.SDLK_EXECUTE_swigconstant(_adonthell)
1072SDLK_EXECUTE = _adonthell.SDLK_EXECUTE
1073
1074_adonthell.SDLK_HELP_swigconstant(_adonthell)
1075SDLK_HELP = _adonthell.SDLK_HELP
1076
1077_adonthell.SDLK_MENU_swigconstant(_adonthell)
1078SDLK_MENU = _adonthell.SDLK_MENU
1079
1080_adonthell.SDLK_SELECT_swigconstant(_adonthell)
1081SDLK_SELECT = _adonthell.SDLK_SELECT
1082
1083_adonthell.SDLK_STOP_swigconstant(_adonthell)
1084SDLK_STOP = _adonthell.SDLK_STOP
1085
1086_adonthell.SDLK_AGAIN_swigconstant(_adonthell)
1087SDLK_AGAIN = _adonthell.SDLK_AGAIN
1088
1089_adonthell.SDLK_UNDO_swigconstant(_adonthell)
1090SDLK_UNDO = _adonthell.SDLK_UNDO
1091
1092_adonthell.SDLK_CUT_swigconstant(_adonthell)
1093SDLK_CUT = _adonthell.SDLK_CUT
1094
1095_adonthell.SDLK_COPY_swigconstant(_adonthell)
1096SDLK_COPY = _adonthell.SDLK_COPY
1097
1098_adonthell.SDLK_PASTE_swigconstant(_adonthell)
1099SDLK_PASTE = _adonthell.SDLK_PASTE
1100
1101_adonthell.SDLK_FIND_swigconstant(_adonthell)
1102SDLK_FIND = _adonthell.SDLK_FIND
1103
1104_adonthell.SDLK_MUTE_swigconstant(_adonthell)
1105SDLK_MUTE = _adonthell.SDLK_MUTE
1106
1107_adonthell.SDLK_VOLUMEUP_swigconstant(_adonthell)
1108SDLK_VOLUMEUP = _adonthell.SDLK_VOLUMEUP
1109
1110_adonthell.SDLK_VOLUMEDOWN_swigconstant(_adonthell)
1111SDLK_VOLUMEDOWN = _adonthell.SDLK_VOLUMEDOWN
1112
1113_adonthell.SDLK_KP_COMMA_swigconstant(_adonthell)
1114SDLK_KP_COMMA = _adonthell.SDLK_KP_COMMA
1115
1116_adonthell.SDLK_KP_EQUALSAS400_swigconstant(_adonthell)
1117SDLK_KP_EQUALSAS400 = _adonthell.SDLK_KP_EQUALSAS400
1118
1119_adonthell.SDLK_ALTERASE_swigconstant(_adonthell)
1120SDLK_ALTERASE = _adonthell.SDLK_ALTERASE
1121
1122_adonthell.SDLK_SYSREQ_swigconstant(_adonthell)
1123SDLK_SYSREQ = _adonthell.SDLK_SYSREQ
1124
1125_adonthell.SDLK_CANCEL_swigconstant(_adonthell)
1126SDLK_CANCEL = _adonthell.SDLK_CANCEL
1127
1128_adonthell.SDLK_CLEAR_swigconstant(_adonthell)
1129SDLK_CLEAR = _adonthell.SDLK_CLEAR
1130
1131_adonthell.SDLK_PRIOR_swigconstant(_adonthell)
1132SDLK_PRIOR = _adonthell.SDLK_PRIOR
1133
1134_adonthell.SDLK_RETURN2_swigconstant(_adonthell)
1135SDLK_RETURN2 = _adonthell.SDLK_RETURN2
1136
1137_adonthell.SDLK_SEPARATOR_swigconstant(_adonthell)
1138SDLK_SEPARATOR = _adonthell.SDLK_SEPARATOR
1139
1140_adonthell.SDLK_OUT_swigconstant(_adonthell)
1141SDLK_OUT = _adonthell.SDLK_OUT
1142
1143_adonthell.SDLK_OPER_swigconstant(_adonthell)
1144SDLK_OPER = _adonthell.SDLK_OPER
1145
1146_adonthell.SDLK_CLEARAGAIN_swigconstant(_adonthell)
1147SDLK_CLEARAGAIN = _adonthell.SDLK_CLEARAGAIN
1148
1149_adonthell.SDLK_CRSEL_swigconstant(_adonthell)
1150SDLK_CRSEL = _adonthell.SDLK_CRSEL
1151
1152_adonthell.SDLK_EXSEL_swigconstant(_adonthell)
1153SDLK_EXSEL = _adonthell.SDLK_EXSEL
1154
1155_adonthell.SDLK_KP_00_swigconstant(_adonthell)
1156SDLK_KP_00 = _adonthell.SDLK_KP_00
1157
1158_adonthell.SDLK_KP_000_swigconstant(_adonthell)
1159SDLK_KP_000 = _adonthell.SDLK_KP_000
1160
1161_adonthell.SDLK_THOUSANDSSEPARATOR_swigconstant(_adonthell)
1162SDLK_THOUSANDSSEPARATOR = _adonthell.SDLK_THOUSANDSSEPARATOR
1163
1164_adonthell.SDLK_DECIMALSEPARATOR_swigconstant(_adonthell)
1165SDLK_DECIMALSEPARATOR = _adonthell.SDLK_DECIMALSEPARATOR
1166
1167_adonthell.SDLK_CURRENCYUNIT_swigconstant(_adonthell)
1168SDLK_CURRENCYUNIT = _adonthell.SDLK_CURRENCYUNIT
1169
1170_adonthell.SDLK_CURRENCYSUBUNIT_swigconstant(_adonthell)
1171SDLK_CURRENCYSUBUNIT = _adonthell.SDLK_CURRENCYSUBUNIT
1172
1173_adonthell.SDLK_KP_LEFTPAREN_swigconstant(_adonthell)
1174SDLK_KP_LEFTPAREN = _adonthell.SDLK_KP_LEFTPAREN
1175
1176_adonthell.SDLK_KP_RIGHTPAREN_swigconstant(_adonthell)
1177SDLK_KP_RIGHTPAREN = _adonthell.SDLK_KP_RIGHTPAREN
1178
1179_adonthell.SDLK_KP_LEFTBRACE_swigconstant(_adonthell)
1180SDLK_KP_LEFTBRACE = _adonthell.SDLK_KP_LEFTBRACE
1181
1182_adonthell.SDLK_KP_RIGHTBRACE_swigconstant(_adonthell)
1183SDLK_KP_RIGHTBRACE = _adonthell.SDLK_KP_RIGHTBRACE
1184
1185_adonthell.SDLK_KP_TAB_swigconstant(_adonthell)
1186SDLK_KP_TAB = _adonthell.SDLK_KP_TAB
1187
1188_adonthell.SDLK_KP_BACKSPACE_swigconstant(_adonthell)
1189SDLK_KP_BACKSPACE = _adonthell.SDLK_KP_BACKSPACE
1190
1191_adonthell.SDLK_KP_A_swigconstant(_adonthell)
1192SDLK_KP_A = _adonthell.SDLK_KP_A
1193
1194_adonthell.SDLK_KP_B_swigconstant(_adonthell)
1195SDLK_KP_B = _adonthell.SDLK_KP_B
1196
1197_adonthell.SDLK_KP_C_swigconstant(_adonthell)
1198SDLK_KP_C = _adonthell.SDLK_KP_C
1199
1200_adonthell.SDLK_KP_D_swigconstant(_adonthell)
1201SDLK_KP_D = _adonthell.SDLK_KP_D
1202
1203_adonthell.SDLK_KP_E_swigconstant(_adonthell)
1204SDLK_KP_E = _adonthell.SDLK_KP_E
1205
1206_adonthell.SDLK_KP_F_swigconstant(_adonthell)
1207SDLK_KP_F = _adonthell.SDLK_KP_F
1208
1209_adonthell.SDLK_KP_XOR_swigconstant(_adonthell)
1210SDLK_KP_XOR = _adonthell.SDLK_KP_XOR
1211
1212_adonthell.SDLK_KP_POWER_swigconstant(_adonthell)
1213SDLK_KP_POWER = _adonthell.SDLK_KP_POWER
1214
1215_adonthell.SDLK_KP_PERCENT_swigconstant(_adonthell)
1216SDLK_KP_PERCENT = _adonthell.SDLK_KP_PERCENT
1217
1218_adonthell.SDLK_KP_LESS_swigconstant(_adonthell)
1219SDLK_KP_LESS = _adonthell.SDLK_KP_LESS
1220
1221_adonthell.SDLK_KP_GREATER_swigconstant(_adonthell)
1222SDLK_KP_GREATER = _adonthell.SDLK_KP_GREATER
1223
1224_adonthell.SDLK_KP_AMPERSAND_swigconstant(_adonthell)
1225SDLK_KP_AMPERSAND = _adonthell.SDLK_KP_AMPERSAND
1226
1227_adonthell.SDLK_KP_DBLAMPERSAND_swigconstant(_adonthell)
1228SDLK_KP_DBLAMPERSAND = _adonthell.SDLK_KP_DBLAMPERSAND
1229
1230_adonthell.SDLK_KP_VERTICALBAR_swigconstant(_adonthell)
1231SDLK_KP_VERTICALBAR = _adonthell.SDLK_KP_VERTICALBAR
1232
1233_adonthell.SDLK_KP_DBLVERTICALBAR_swigconstant(_adonthell)
1234SDLK_KP_DBLVERTICALBAR = _adonthell.SDLK_KP_DBLVERTICALBAR
1235
1236_adonthell.SDLK_KP_COLON_swigconstant(_adonthell)
1237SDLK_KP_COLON = _adonthell.SDLK_KP_COLON
1238
1239_adonthell.SDLK_KP_HASH_swigconstant(_adonthell)
1240SDLK_KP_HASH = _adonthell.SDLK_KP_HASH
1241
1242_adonthell.SDLK_KP_SPACE_swigconstant(_adonthell)
1243SDLK_KP_SPACE = _adonthell.SDLK_KP_SPACE
1244
1245_adonthell.SDLK_KP_AT_swigconstant(_adonthell)
1246SDLK_KP_AT = _adonthell.SDLK_KP_AT
1247
1248_adonthell.SDLK_KP_EXCLAM_swigconstant(_adonthell)
1249SDLK_KP_EXCLAM = _adonthell.SDLK_KP_EXCLAM
1250
1251_adonthell.SDLK_KP_MEMSTORE_swigconstant(_adonthell)
1252SDLK_KP_MEMSTORE = _adonthell.SDLK_KP_MEMSTORE
1253
1254_adonthell.SDLK_KP_MEMRECALL_swigconstant(_adonthell)
1255SDLK_KP_MEMRECALL = _adonthell.SDLK_KP_MEMRECALL
1256
1257_adonthell.SDLK_KP_MEMCLEAR_swigconstant(_adonthell)
1258SDLK_KP_MEMCLEAR = _adonthell.SDLK_KP_MEMCLEAR
1259
1260_adonthell.SDLK_KP_MEMADD_swigconstant(_adonthell)
1261SDLK_KP_MEMADD = _adonthell.SDLK_KP_MEMADD
1262
1263_adonthell.SDLK_KP_MEMSUBTRACT_swigconstant(_adonthell)
1264SDLK_KP_MEMSUBTRACT = _adonthell.SDLK_KP_MEMSUBTRACT
1265
1266_adonthell.SDLK_KP_MEMMULTIPLY_swigconstant(_adonthell)
1267SDLK_KP_MEMMULTIPLY = _adonthell.SDLK_KP_MEMMULTIPLY
1268
1269_adonthell.SDLK_KP_MEMDIVIDE_swigconstant(_adonthell)
1270SDLK_KP_MEMDIVIDE = _adonthell.SDLK_KP_MEMDIVIDE
1271
1272_adonthell.SDLK_KP_PLUSMINUS_swigconstant(_adonthell)
1273SDLK_KP_PLUSMINUS = _adonthell.SDLK_KP_PLUSMINUS
1274
1275_adonthell.SDLK_KP_CLEAR_swigconstant(_adonthell)
1276SDLK_KP_CLEAR = _adonthell.SDLK_KP_CLEAR
1277
1278_adonthell.SDLK_KP_CLEARENTRY_swigconstant(_adonthell)
1279SDLK_KP_CLEARENTRY = _adonthell.SDLK_KP_CLEARENTRY
1280
1281_adonthell.SDLK_KP_BINARY_swigconstant(_adonthell)
1282SDLK_KP_BINARY = _adonthell.SDLK_KP_BINARY
1283
1284_adonthell.SDLK_KP_OCTAL_swigconstant(_adonthell)
1285SDLK_KP_OCTAL = _adonthell.SDLK_KP_OCTAL
1286
1287_adonthell.SDLK_KP_DECIMAL_swigconstant(_adonthell)
1288SDLK_KP_DECIMAL = _adonthell.SDLK_KP_DECIMAL
1289
1290_adonthell.SDLK_KP_HEXADECIMAL_swigconstant(_adonthell)
1291SDLK_KP_HEXADECIMAL = _adonthell.SDLK_KP_HEXADECIMAL
1292
1293_adonthell.SDLK_LCTRL_swigconstant(_adonthell)
1294SDLK_LCTRL = _adonthell.SDLK_LCTRL
1295
1296_adonthell.SDLK_LSHIFT_swigconstant(_adonthell)
1297SDLK_LSHIFT = _adonthell.SDLK_LSHIFT
1298
1299_adonthell.SDLK_LALT_swigconstant(_adonthell)
1300SDLK_LALT = _adonthell.SDLK_LALT
1301
1302_adonthell.SDLK_LGUI_swigconstant(_adonthell)
1303SDLK_LGUI = _adonthell.SDLK_LGUI
1304
1305_adonthell.SDLK_RCTRL_swigconstant(_adonthell)
1306SDLK_RCTRL = _adonthell.SDLK_RCTRL
1307
1308_adonthell.SDLK_RSHIFT_swigconstant(_adonthell)
1309SDLK_RSHIFT = _adonthell.SDLK_RSHIFT
1310
1311_adonthell.SDLK_RALT_swigconstant(_adonthell)
1312SDLK_RALT = _adonthell.SDLK_RALT
1313
1314_adonthell.SDLK_RGUI_swigconstant(_adonthell)
1315SDLK_RGUI = _adonthell.SDLK_RGUI
1316
1317_adonthell.SDLK_MODE_swigconstant(_adonthell)
1318SDLK_MODE = _adonthell.SDLK_MODE
1319
1320_adonthell.SDLK_AUDIONEXT_swigconstant(_adonthell)
1321SDLK_AUDIONEXT = _adonthell.SDLK_AUDIONEXT
1322
1323_adonthell.SDLK_AUDIOPREV_swigconstant(_adonthell)
1324SDLK_AUDIOPREV = _adonthell.SDLK_AUDIOPREV
1325
1326_adonthell.SDLK_AUDIOSTOP_swigconstant(_adonthell)
1327SDLK_AUDIOSTOP = _adonthell.SDLK_AUDIOSTOP
1328
1329_adonthell.SDLK_AUDIOPLAY_swigconstant(_adonthell)
1330SDLK_AUDIOPLAY = _adonthell.SDLK_AUDIOPLAY
1331
1332_adonthell.SDLK_AUDIOMUTE_swigconstant(_adonthell)
1333SDLK_AUDIOMUTE = _adonthell.SDLK_AUDIOMUTE
1334
1335_adonthell.SDLK_MEDIASELECT_swigconstant(_adonthell)
1336SDLK_MEDIASELECT = _adonthell.SDLK_MEDIASELECT
1337
1338_adonthell.SDLK_WWW_swigconstant(_adonthell)
1339SDLK_WWW = _adonthell.SDLK_WWW
1340
1341_adonthell.SDLK_MAIL_swigconstant(_adonthell)
1342SDLK_MAIL = _adonthell.SDLK_MAIL
1343
1344_adonthell.SDLK_CALCULATOR_swigconstant(_adonthell)
1345SDLK_CALCULATOR = _adonthell.SDLK_CALCULATOR
1346
1347_adonthell.SDLK_COMPUTER_swigconstant(_adonthell)
1348SDLK_COMPUTER = _adonthell.SDLK_COMPUTER
1349
1350_adonthell.SDLK_AC_SEARCH_swigconstant(_adonthell)
1351SDLK_AC_SEARCH = _adonthell.SDLK_AC_SEARCH
1352
1353_adonthell.SDLK_AC_HOME_swigconstant(_adonthell)
1354SDLK_AC_HOME = _adonthell.SDLK_AC_HOME
1355
1356_adonthell.SDLK_AC_BACK_swigconstant(_adonthell)
1357SDLK_AC_BACK = _adonthell.SDLK_AC_BACK
1358
1359_adonthell.SDLK_AC_FORWARD_swigconstant(_adonthell)
1360SDLK_AC_FORWARD = _adonthell.SDLK_AC_FORWARD
1361
1362_adonthell.SDLK_AC_STOP_swigconstant(_adonthell)
1363SDLK_AC_STOP = _adonthell.SDLK_AC_STOP
1364
1365_adonthell.SDLK_AC_REFRESH_swigconstant(_adonthell)
1366SDLK_AC_REFRESH = _adonthell.SDLK_AC_REFRESH
1367
1368_adonthell.SDLK_AC_BOOKMARKS_swigconstant(_adonthell)
1369SDLK_AC_BOOKMARKS = _adonthell.SDLK_AC_BOOKMARKS
1370
1371_adonthell.SDLK_BRIGHTNESSDOWN_swigconstant(_adonthell)
1372SDLK_BRIGHTNESSDOWN = _adonthell.SDLK_BRIGHTNESSDOWN
1373
1374_adonthell.SDLK_BRIGHTNESSUP_swigconstant(_adonthell)
1375SDLK_BRIGHTNESSUP = _adonthell.SDLK_BRIGHTNESSUP
1376
1377_adonthell.SDLK_DISPLAYSWITCH_swigconstant(_adonthell)
1378SDLK_DISPLAYSWITCH = _adonthell.SDLK_DISPLAYSWITCH
1379
1380_adonthell.SDLK_KBDILLUMTOGGLE_swigconstant(_adonthell)
1381SDLK_KBDILLUMTOGGLE = _adonthell.SDLK_KBDILLUMTOGGLE
1382
1383_adonthell.SDLK_KBDILLUMDOWN_swigconstant(_adonthell)
1384SDLK_KBDILLUMDOWN = _adonthell.SDLK_KBDILLUMDOWN
1385
1386_adonthell.SDLK_KBDILLUMUP_swigconstant(_adonthell)
1387SDLK_KBDILLUMUP = _adonthell.SDLK_KBDILLUMUP
1388
1389_adonthell.SDLK_EJECT_swigconstant(_adonthell)
1390SDLK_EJECT = _adonthell.SDLK_EJECT
1391
1392_adonthell.SDLK_SLEEP_swigconstant(_adonthell)
1393SDLK_SLEEP = _adonthell.SDLK_SLEEP
1394
1395_adonthell.SDLK_APP1_swigconstant(_adonthell)
1396SDLK_APP1 = _adonthell.SDLK_APP1
1397
1398_adonthell.SDLK_APP2_swigconstant(_adonthell)
1399SDLK_APP2 = _adonthell.SDLK_APP2
1400
1401_adonthell.SDLK_AUDIOREWIND_swigconstant(_adonthell)
1402SDLK_AUDIOREWIND = _adonthell.SDLK_AUDIOREWIND
1403
1404_adonthell.SDLK_AUDIOFASTFORWARD_swigconstant(_adonthell)
1405SDLK_AUDIOFASTFORWARD = _adonthell.SDLK_AUDIOFASTFORWARD
1406
1407_adonthell.KMOD_NONE_swigconstant(_adonthell)
1408KMOD_NONE = _adonthell.KMOD_NONE
1409
1410_adonthell.KMOD_LSHIFT_swigconstant(_adonthell)
1411KMOD_LSHIFT = _adonthell.KMOD_LSHIFT
1412
1413_adonthell.KMOD_RSHIFT_swigconstant(_adonthell)
1414KMOD_RSHIFT = _adonthell.KMOD_RSHIFT
1415
1416_adonthell.KMOD_LCTRL_swigconstant(_adonthell)
1417KMOD_LCTRL = _adonthell.KMOD_LCTRL
1418
1419_adonthell.KMOD_RCTRL_swigconstant(_adonthell)
1420KMOD_RCTRL = _adonthell.KMOD_RCTRL
1421
1422_adonthell.KMOD_LALT_swigconstant(_adonthell)
1423KMOD_LALT = _adonthell.KMOD_LALT
1424
1425_adonthell.KMOD_RALT_swigconstant(_adonthell)
1426KMOD_RALT = _adonthell.KMOD_RALT
1427
1428_adonthell.KMOD_LGUI_swigconstant(_adonthell)
1429KMOD_LGUI = _adonthell.KMOD_LGUI
1430
1431_adonthell.KMOD_RGUI_swigconstant(_adonthell)
1432KMOD_RGUI = _adonthell.KMOD_RGUI
1433
1434_adonthell.KMOD_NUM_swigconstant(_adonthell)
1435KMOD_NUM = _adonthell.KMOD_NUM
1436
1437_adonthell.KMOD_CAPS_swigconstant(_adonthell)
1438KMOD_CAPS = _adonthell.KMOD_CAPS
1439
1440_adonthell.KMOD_MODE_swigconstant(_adonthell)
1441KMOD_MODE = _adonthell.KMOD_MODE
1442
1443_adonthell.KMOD_RESERVED_swigconstant(_adonthell)
1444KMOD_RESERVED = _adonthell.KMOD_RESERVED
1445class input(object):
1446    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1447    __repr__ = _swig_repr
1448    init = staticmethod(_adonthell.input_init)
1449    shutdown = staticmethod(_adonthell.input_shutdown)
1450    update = staticmethod(_adonthell.input_update)
1451    is_pushed = staticmethod(_adonthell.input_is_pushed)
1452    has_been_pushed = staticmethod(_adonthell.input_has_been_pushed)
1453    get_next_key = staticmethod(_adonthell.input_get_next_key)
1454    get_next_unicode = staticmethod(_adonthell.input_get_next_unicode)
1455    start_text_input = staticmethod(_adonthell.input_start_text_input)
1456    stop_text_input = staticmethod(_adonthell.input_stop_text_input)
1457    is_text_input = staticmethod(_adonthell.input_is_text_input)
1458    clear_keys_queue = staticmethod(_adonthell.input_clear_keys_queue)
1459
1460    def __init__(self, *args):
1461        this = _adonthell.new_input(*args)
1462        try:
1463            self.this.append(this)
1464        except Exception:
1465            self.this = this
1466    __swig_destroy__ = _adonthell.delete_input
1467    __del__ = lambda self: None
1468input_swigregister = _adonthell.input_swigregister
1469input_swigregister(input)
1470
1471def input_init(*args):
1472    return _adonthell.input_init(*args)
1473input_init = _adonthell.input_init
1474
1475def input_shutdown(*args):
1476    return _adonthell.input_shutdown(*args)
1477input_shutdown = _adonthell.input_shutdown
1478
1479def input_update(*args):
1480    return _adonthell.input_update(*args)
1481input_update = _adonthell.input_update
1482
1483def input_is_pushed(*args):
1484    return _adonthell.input_is_pushed(*args)
1485input_is_pushed = _adonthell.input_is_pushed
1486
1487def input_has_been_pushed(*args):
1488    return _adonthell.input_has_been_pushed(*args)
1489input_has_been_pushed = _adonthell.input_has_been_pushed
1490
1491def input_get_next_key(*args):
1492    return _adonthell.input_get_next_key(*args)
1493input_get_next_key = _adonthell.input_get_next_key
1494
1495def input_get_next_unicode(*args):
1496    return _adonthell.input_get_next_unicode(*args)
1497input_get_next_unicode = _adonthell.input_get_next_unicode
1498
1499def input_start_text_input(*args):
1500    return _adonthell.input_start_text_input(*args)
1501input_start_text_input = _adonthell.input_start_text_input
1502
1503def input_stop_text_input(*args):
1504    return _adonthell.input_stop_text_input(*args)
1505input_stop_text_input = _adonthell.input_stop_text_input
1506
1507def input_is_text_input(*args):
1508    return _adonthell.input_is_text_input(*args)
1509input_is_text_input = _adonthell.input_is_text_input
1510
1511def input_clear_keys_queue(*args):
1512    return _adonthell.input_clear_keys_queue(*args)
1513input_clear_keys_queue = _adonthell.input_clear_keys_queue
1514
1515
1516_adonthell.NUM_WAVES_swigconstant(_adonthell)
1517NUM_WAVES = _adonthell.NUM_WAVES
1518
1519_adonthell.NUM_MUSIC_swigconstant(_adonthell)
1520NUM_MUSIC = _adonthell.NUM_MUSIC
1521
1522_adonthell.NUM_CHANNELS_swigconstant(_adonthell)
1523NUM_CHANNELS = _adonthell.NUM_CHANNELS
1524class audio(object):
1525    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1526    __repr__ = _swig_repr
1527    init = staticmethod(_adonthell.audio_init)
1528    cleanup = staticmethod(_adonthell.audio_cleanup)
1529    put_state = staticmethod(_adonthell.audio_put_state)
1530    get_state = staticmethod(_adonthell.audio_get_state)
1531    load_background = staticmethod(_adonthell.audio_load_background)
1532    unload_background = staticmethod(_adonthell.audio_unload_background)
1533    set_background_volume = staticmethod(_adonthell.audio_set_background_volume)
1534    pause_music = staticmethod(_adonthell.audio_pause_music)
1535    unpause_music = staticmethod(_adonthell.audio_unpause_music)
1536    load_wave = staticmethod(_adonthell.audio_load_wave)
1537    unload_wave = staticmethod(_adonthell.audio_unload_wave)
1538    play_wave = staticmethod(_adonthell.audio_play_wave)
1539    play_background = staticmethod(_adonthell.audio_play_background)
1540    fade_in_background = staticmethod(_adonthell.audio_fade_in_background)
1541    fade_out_background = staticmethod(_adonthell.audio_fade_out_background)
1542    change_background = staticmethod(_adonthell.audio_change_background)
1543    is_initialized = staticmethod(_adonthell.audio_is_initialized)
1544    is_schedule_activated = staticmethod(_adonthell.audio_is_schedule_activated)
1545    is_background_finished = staticmethod(_adonthell.audio_is_background_finished)
1546    set_schedule_active = staticmethod(_adonthell.audio_set_schedule_active)
1547    set_schedule = staticmethod(_adonthell.audio_set_schedule)
1548    run_schedule = staticmethod(_adonthell.audio_run_schedule)
1549
1550    def __init__(self, *args):
1551        this = _adonthell.new_audio(*args)
1552        try:
1553            self.this.append(this)
1554        except Exception:
1555            self.this = this
1556    __swig_destroy__ = _adonthell.delete_audio
1557    __del__ = lambda self: None
1558audio_swigregister = _adonthell.audio_swigregister
1559audio_swigregister(audio)
1560
1561def audio_init(*args):
1562    return _adonthell.audio_init(*args)
1563audio_init = _adonthell.audio_init
1564
1565def audio_cleanup(*args):
1566    return _adonthell.audio_cleanup(*args)
1567audio_cleanup = _adonthell.audio_cleanup
1568
1569def audio_put_state(*args):
1570    return _adonthell.audio_put_state(*args)
1571audio_put_state = _adonthell.audio_put_state
1572
1573def audio_get_state(*args):
1574    return _adonthell.audio_get_state(*args)
1575audio_get_state = _adonthell.audio_get_state
1576
1577def audio_load_background(*args):
1578    return _adonthell.audio_load_background(*args)
1579audio_load_background = _adonthell.audio_load_background
1580
1581def audio_unload_background(*args):
1582    return _adonthell.audio_unload_background(*args)
1583audio_unload_background = _adonthell.audio_unload_background
1584
1585def audio_set_background_volume(*args):
1586    return _adonthell.audio_set_background_volume(*args)
1587audio_set_background_volume = _adonthell.audio_set_background_volume
1588
1589def audio_pause_music(*args):
1590    return _adonthell.audio_pause_music(*args)
1591audio_pause_music = _adonthell.audio_pause_music
1592
1593def audio_unpause_music(*args):
1594    return _adonthell.audio_unpause_music(*args)
1595audio_unpause_music = _adonthell.audio_unpause_music
1596
1597def audio_load_wave(*args):
1598    return _adonthell.audio_load_wave(*args)
1599audio_load_wave = _adonthell.audio_load_wave
1600
1601def audio_unload_wave(*args):
1602    return _adonthell.audio_unload_wave(*args)
1603audio_unload_wave = _adonthell.audio_unload_wave
1604
1605def audio_play_wave(*args):
1606    return _adonthell.audio_play_wave(*args)
1607audio_play_wave = _adonthell.audio_play_wave
1608
1609def audio_play_background(*args):
1610    return _adonthell.audio_play_background(*args)
1611audio_play_background = _adonthell.audio_play_background
1612
1613def audio_fade_in_background(*args):
1614    return _adonthell.audio_fade_in_background(*args)
1615audio_fade_in_background = _adonthell.audio_fade_in_background
1616
1617def audio_fade_out_background(*args):
1618    return _adonthell.audio_fade_out_background(*args)
1619audio_fade_out_background = _adonthell.audio_fade_out_background
1620
1621def audio_change_background(*args):
1622    return _adonthell.audio_change_background(*args)
1623audio_change_background = _adonthell.audio_change_background
1624
1625def audio_is_initialized(*args):
1626    return _adonthell.audio_is_initialized(*args)
1627audio_is_initialized = _adonthell.audio_is_initialized
1628
1629def audio_is_schedule_activated(*args):
1630    return _adonthell.audio_is_schedule_activated(*args)
1631audio_is_schedule_activated = _adonthell.audio_is_schedule_activated
1632
1633def audio_is_background_finished(*args):
1634    return _adonthell.audio_is_background_finished(*args)
1635audio_is_background_finished = _adonthell.audio_is_background_finished
1636
1637def audio_set_schedule_active(*args):
1638    return _adonthell.audio_set_schedule_active(*args)
1639audio_set_schedule_active = _adonthell.audio_set_schedule_active
1640
1641def audio_set_schedule(*args):
1642    return _adonthell.audio_set_schedule(*args)
1643audio_set_schedule = _adonthell.audio_set_schedule
1644
1645def audio_run_schedule(*args):
1646    return _adonthell.audio_run_schedule(*args)
1647audio_run_schedule = _adonthell.audio_run_schedule
1648
1649
1650_adonthell.DIALOG_DIR_swigconstant(_adonthell)
1651DIALOG_DIR = _adonthell.DIALOG_DIR
1652
1653_adonthell.DWARF_swigconstant(_adonthell)
1654DWARF = _adonthell.DWARF
1655
1656_adonthell.ELF_swigconstant(_adonthell)
1657ELF = _adonthell.ELF
1658
1659_adonthell.HALFELF_swigconstant(_adonthell)
1660HALFELF = _adonthell.HALFELF
1661
1662_adonthell.HUMAN_swigconstant(_adonthell)
1663HUMAN = _adonthell.HUMAN
1664
1665_adonthell.FEMALE_swigconstant(_adonthell)
1666FEMALE = _adonthell.FEMALE
1667
1668_adonthell.MALE_swigconstant(_adonthell)
1669MALE = _adonthell.MALE
1670
1671_adonthell.NPC_swigconstant(_adonthell)
1672NPC = _adonthell.NPC
1673
1674_adonthell.PLAYER_swigconstant(_adonthell)
1675PLAYER = _adonthell.PLAYER
1676
1677_adonthell.PARTY_swigconstant(_adonthell)
1678PARTY = _adonthell.PARTY
1679class character_base(storage):
1680    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1681    __repr__ = _swig_repr
1682
1683    def __init__(self, *args):
1684        this = _adonthell.new_character_base(*args)
1685        try:
1686            self.this.append(this)
1687        except Exception:
1688            self.this = this
1689    __swig_destroy__ = _adonthell.delete_character_base
1690    __del__ = lambda self: None
1691
1692    def get_name(self, *args):
1693        return _adonthell.character_base_get_name(self, *args)
1694
1695    def get_id(self, *args):
1696        return _adonthell.character_base_get_id(self, *args)
1697
1698    def set_name(self, *args):
1699        return _adonthell.character_base_set_name(self, *args)
1700
1701    def get_color(self, *args):
1702        return _adonthell.character_base_get_color(self, *args)
1703
1704    def set_color(self, *args):
1705        return _adonthell.character_base_set_color(self, *args)
1706
1707    def get_portrait(self, *args):
1708        return _adonthell.character_base_get_portrait(self, *args)
1709
1710    def set_portrait(self, *args):
1711        return _adonthell.character_base_set_portrait(self, *args)
1712
1713    def get_dialogue(self, *args):
1714        return _adonthell.character_base_get_dialogue(self, *args)
1715
1716    def set_dialogue(self, *args):
1717        return _adonthell.character_base_set_dialogue(self, *args)
1718
1719    def get_state(self, *args):
1720        return _adonthell.character_base_get_state(self, *args)
1721
1722    def put_state(self, *args):
1723        return _adonthell.character_base_put_state(self, *args)
1724character_base_swigregister = _adonthell.character_base_swigregister
1725character_base_swigregister(character_base)
1726
1727class py_object(object):
1728    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1729    __repr__ = _swig_repr
1730
1731    def __init__(self, *args):
1732        this = _adonthell.new_py_object(*args)
1733        try:
1734            self.this.append(this)
1735        except Exception:
1736            self.this = this
1737    __swig_destroy__ = _adonthell.delete_py_object
1738    __del__ = lambda self: None
1739
1740    def clear(self, *args):
1741        return _adonthell.py_object_clear(self, *args)
1742
1743    def create_instance(self, *args):
1744        return _adonthell.py_object_create_instance(self, *args)
1745
1746    def reload_instance(self, *args):
1747        return _adonthell.py_object_reload_instance(self, *args)
1748
1749    def call_method_ret(self, *args):
1750        return _adonthell.py_object_call_method_ret(self, *args)
1751
1752    def call_method(self, *args):
1753        return _adonthell.py_object_call_method(self, *args)
1754
1755    def run(self, *args):
1756        return _adonthell.py_object_run(self, *args)
1757
1758    def has_attribute(self, *args):
1759        return _adonthell.py_object_has_attribute(self, *args)
1760
1761    def get_attribute(self, *args):
1762        return _adonthell.py_object_get_attribute(self, *args)
1763
1764    def get_attribute_int(self, *args):
1765        return _adonthell.py_object_get_attribute_int(self, *args)
1766
1767    def get_attribute_string(self, *args):
1768        return _adonthell.py_object_get_attribute_string(self, *args)
1769
1770    def set_attribute(self, *args):
1771        return _adonthell.py_object_set_attribute(self, *args)
1772
1773    def set_attribute_int(self, *args):
1774        return _adonthell.py_object_set_attribute_int(self, *args)
1775
1776    def set_attribute_string(self, *args):
1777        return _adonthell.py_object_set_attribute_string(self, *args)
1778
1779    def get_instance(self, *args):
1780        return _adonthell.py_object_get_instance(self, *args)
1781
1782    def class_name(self, *args):
1783        return _adonthell.py_object_class_name(self, *args)
1784
1785    def file_name(self, *args):
1786        return _adonthell.py_object_file_name(self, *args)
1787py_object_swigregister = _adonthell.py_object_swigregister
1788py_object_swigregister(py_object)
1789
1790class drawing_area(object):
1791    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1792    __repr__ = _swig_repr
1793
1794    def __init__(self, *args):
1795        this = _adonthell.new_drawing_area(*args)
1796        try:
1797            self.this.append(this)
1798        except Exception:
1799            self.this = this
1800
1801    def x(self, *args):
1802        return _adonthell.drawing_area_x(self, *args)
1803
1804    def y(self, *args):
1805        return _adonthell.drawing_area_y(self, *args)
1806
1807    def length(self, *args):
1808        return _adonthell.drawing_area_length(self, *args)
1809
1810    def height(self, *args):
1811        return _adonthell.drawing_area_height(self, *args)
1812
1813    def move(self, *args):
1814        return _adonthell.drawing_area_move(self, *args)
1815
1816    def resize(self, *args):
1817        return _adonthell.drawing_area_resize(self, *args)
1818
1819    def assign_drawing_area(self, *args):
1820        return _adonthell.drawing_area_assign_drawing_area(self, *args)
1821
1822    def assigned_drawing_area(self, *args):
1823        return _adonthell.drawing_area_assigned_drawing_area(self, *args)
1824
1825    def detach_drawing_area(self, *args):
1826        return _adonthell.drawing_area_detach_drawing_area(self, *args)
1827
1828    def setup_rects(self, *args):
1829        return _adonthell.drawing_area_setup_rects(self, *args)
1830    __swig_destroy__ = _adonthell.delete_drawing_area
1831    __del__ = lambda self: None
1832drawing_area_swigregister = _adonthell.drawing_area_swigregister
1833drawing_area_swigregister(drawing_area)
1834
1835class quest(storage):
1836    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1837    __repr__ = _swig_repr
1838
1839    def __init__(self, *args):
1840        this = _adonthell.new_quest(*args)
1841        try:
1842            self.this.append(this)
1843        except Exception:
1844            self.this = this
1845    __swig_destroy__ = _adonthell.delete_quest
1846    __del__ = lambda self: None
1847quest_swigregister = _adonthell.quest_swigregister
1848quest_swigregister(quest)
1849
1850class drawable(object):
1851    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1852
1853    def __init__(self, *args, **kwargs):
1854        raise AttributeError("No constructor defined - class is abstract")
1855    __repr__ = _swig_repr
1856    __swig_destroy__ = _adonthell.delete_drawable
1857    __del__ = lambda self: None
1858
1859    def length(self, *args):
1860        return _adonthell.drawable_length(self, *args)
1861
1862    def height(self, *args):
1863        return _adonthell.drawable_height(self, *args)
1864
1865    def update(self, *args):
1866        return _adonthell.drawable_update(self, *args)
1867
1868    def input_update(self, *args):
1869        return _adonthell.drawable_input_update(self, *args)
1870
1871    def draw(self, *args):
1872        return _adonthell.drawable_draw(self, *args)
1873drawable_swigregister = _adonthell.drawable_swigregister
1874drawable_swigregister(drawable)
1875
1876
1877_adonthell.R_MASK_swigconstant(_adonthell)
1878R_MASK = _adonthell.R_MASK
1879
1880_adonthell.G_MASK_swigconstant(_adonthell)
1881G_MASK = _adonthell.G_MASK
1882
1883_adonthell.B_MASK_swigconstant(_adonthell)
1884B_MASK = _adonthell.B_MASK
1885
1886_adonthell.A_MASK_swigconstant(_adonthell)
1887A_MASK = _adonthell.A_MASK
1888
1889_adonthell.BYTES_PER_PIXEL_swigconstant(_adonthell)
1890BYTES_PER_PIXEL = _adonthell.BYTES_PER_PIXEL
1891class pixel_info(object):
1892    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1893    __repr__ = _swig_repr
1894
1895    def __init__(self, *args):
1896        this = _adonthell.new_pixel_info(*args)
1897        try:
1898            self.this.append(this)
1899        except Exception:
1900            self.this = this
1901    Pixels = _swig_property(_adonthell.pixel_info_Pixels_get, _adonthell.pixel_info_Pixels_set)
1902    Pitch = _swig_property(_adonthell.pixel_info_Pitch_get, _adonthell.pixel_info_Pitch_set)
1903    Format = _swig_property(_adonthell.pixel_info_Format_get, _adonthell.pixel_info_Format_set)
1904    BytesPerPixel = _swig_property(_adonthell.pixel_info_BytesPerPixel_get, _adonthell.pixel_info_BytesPerPixel_set)
1905    __swig_destroy__ = _adonthell.delete_pixel_info
1906    __del__ = lambda self: None
1907pixel_info_swigregister = _adonthell.pixel_info_swigregister
1908pixel_info_swigregister(pixel_info)
1909
1910class surface(drawable):
1911    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1912    __repr__ = _swig_repr
1913
1914    def __init__(self, *args):
1915        this = _adonthell.new_surface(*args)
1916        try:
1917            self.this.append(this)
1918        except Exception:
1919            self.this = this
1920    __swig_destroy__ = _adonthell.delete_surface
1921    __del__ = lambda self: None
1922
1923    def is_masked(self, *args):
1924        return _adonthell.surface_is_masked(self, *args)
1925
1926    def set_mask(self, *args):
1927        return _adonthell.surface_set_mask(self, *args)
1928
1929    def alpha(self, *args):
1930        return _adonthell.surface_alpha(self, *args)
1931
1932    def set_alpha(self, *args):
1933        return _adonthell.surface_set_alpha(self, *args)
1934
1935    def has_alpha_channel(self, *args):
1936        return _adonthell.surface_has_alpha_channel(self, *args)
1937
1938    def scale(self, *args):
1939        return _adonthell.surface_scale(self, *args)
1940
1941    def set_scale(self, *args):
1942        return _adonthell.surface_set_scale(self, *args)
1943
1944    def draw(self, *args):
1945        return _adonthell.surface_draw(self, *args)
1946
1947    def draw_part(self, *args):
1948        return _adonthell.surface_draw_part(self, *args)
1949
1950    def fillrect(self, *args):
1951        return _adonthell.surface_fillrect(self, *args)
1952
1953    def map_color(self, *args):
1954        return _adonthell.surface_map_color(self, *args)
1955
1956    def unmap_color(self, *args):
1957        return _adonthell.surface_unmap_color(self, *args)
1958
1959    def lock(self, *args):
1960        return _adonthell.surface_lock(self, *args)
1961
1962    def unlock(self, *args):
1963        return _adonthell.surface_unlock(self, *args)
1964
1965    def put_pix(self, *args):
1966        return _adonthell.surface_put_pix(self, *args)
1967
1968    def put_pix_rgb(self, *args):
1969        return _adonthell.surface_put_pix_rgb(self, *args)
1970
1971    def get_pix(self, *args):
1972        return _adonthell.surface_get_pix(self, *args)
1973
1974    def get_pix_rgb(self, *args):
1975        return _adonthell.surface_get_pix_rgb(self, *args)
1976
1977    def copy(self, *args):
1978        return _adonthell.surface_copy(self, *args)
1979surface_swigregister = _adonthell.surface_swigregister
1980surface_swigregister(surface)
1981
1982class screen(object):
1983    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1984    __repr__ = _swig_repr
1985    cleanup = staticmethod(_adonthell.screen_cleanup)
1986    get_renderer = staticmethod(_adonthell.screen_get_renderer)
1987    format = staticmethod(_adonthell.screen_format)
1988    display = _swig_property(_adonthell.screen_display_get, _adonthell.screen_display_set)
1989    init = staticmethod(_adonthell.screen_init)
1990    length = staticmethod(_adonthell.screen_length)
1991    height = staticmethod(_adonthell.screen_height)
1992    bytes_per_pixel = staticmethod(_adonthell.screen_bytes_per_pixel)
1993    trans_col = staticmethod(_adonthell.screen_trans_col)
1994    scale = staticmethod(_adonthell.screen_scale)
1995    offset_x = staticmethod(_adonthell.screen_offset_x)
1996    offset_y = staticmethod(_adonthell.screen_offset_y)
1997    clear = staticmethod(_adonthell.screen_clear)
1998    show = staticmethod(_adonthell.screen_show)
1999    mode = staticmethod(_adonthell.screen_mode)
2000    set_fullscreen = staticmethod(_adonthell.screen_set_fullscreen)
2001    info = staticmethod(_adonthell.screen_info)
2002    transition = staticmethod(_adonthell.screen_transition)
2003
2004    def __init__(self, *args):
2005        this = _adonthell.new_screen(*args)
2006        try:
2007            self.this.append(this)
2008        except Exception:
2009            self.this = this
2010    __swig_destroy__ = _adonthell.delete_screen
2011    __del__ = lambda self: None
2012screen_swigregister = _adonthell.screen_swigregister
2013screen_swigregister(screen)
2014
2015def screen_cleanup(*args):
2016    return _adonthell.screen_cleanup(*args)
2017screen_cleanup = _adonthell.screen_cleanup
2018
2019def screen_get_renderer(*args):
2020    return _adonthell.screen_get_renderer(*args)
2021screen_get_renderer = _adonthell.screen_get_renderer
2022
2023def screen_format(*args):
2024    return _adonthell.screen_format(*args)
2025screen_format = _adonthell.screen_format
2026cvar = _adonthell.cvar
2027
2028def screen_init(*args):
2029    return _adonthell.screen_init(*args)
2030screen_init = _adonthell.screen_init
2031
2032def screen_length(*args):
2033    return _adonthell.screen_length(*args)
2034screen_length = _adonthell.screen_length
2035
2036def screen_height(*args):
2037    return _adonthell.screen_height(*args)
2038screen_height = _adonthell.screen_height
2039
2040def screen_bytes_per_pixel(*args):
2041    return _adonthell.screen_bytes_per_pixel(*args)
2042screen_bytes_per_pixel = _adonthell.screen_bytes_per_pixel
2043
2044def screen_trans_col(*args):
2045    return _adonthell.screen_trans_col(*args)
2046screen_trans_col = _adonthell.screen_trans_col
2047
2048def screen_scale(*args):
2049    return _adonthell.screen_scale(*args)
2050screen_scale = _adonthell.screen_scale
2051
2052def screen_offset_x(*args):
2053    return _adonthell.screen_offset_x(*args)
2054screen_offset_x = _adonthell.screen_offset_x
2055
2056def screen_offset_y(*args):
2057    return _adonthell.screen_offset_y(*args)
2058screen_offset_y = _adonthell.screen_offset_y
2059
2060def screen_clear(*args):
2061    return _adonthell.screen_clear(*args)
2062screen_clear = _adonthell.screen_clear
2063
2064def screen_show(*args):
2065    return _adonthell.screen_show(*args)
2066screen_show = _adonthell.screen_show
2067
2068def screen_mode(*args):
2069    return _adonthell.screen_mode(*args)
2070screen_mode = _adonthell.screen_mode
2071
2072def screen_set_fullscreen(*args):
2073    return _adonthell.screen_set_fullscreen(*args)
2074screen_set_fullscreen = _adonthell.screen_set_fullscreen
2075
2076def screen_info(*args):
2077    return _adonthell.screen_info(*args)
2078screen_info = _adonthell.screen_info
2079
2080def screen_transition(*args):
2081    return _adonthell.screen_transition(*args)
2082screen_transition = _adonthell.screen_transition
2083
2084class image(surface):
2085    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2086    __repr__ = _swig_repr
2087
2088    def __init__(self, *args):
2089        this = _adonthell.new_image(*args)
2090        try:
2091            self.this.append(this)
2092        except Exception:
2093            self.this = this
2094    __swig_destroy__ = _adonthell.delete_image
2095    __del__ = lambda self: None
2096
2097    def resize(self, *args):
2098        return _adonthell.image_resize(self, *args)
2099
2100    def clear(self, *args):
2101        return _adonthell.image_clear(self, *args)
2102
2103    def get(self, *args):
2104        return _adonthell.image_get(self, *args)
2105
2106    def load(self, *args):
2107        return _adonthell.image_load(self, *args)
2108
2109    def get_raw(self, *args):
2110        return _adonthell.image_get_raw(self, *args)
2111
2112    def load_raw(self, *args):
2113        return _adonthell.image_load_raw(self, *args)
2114
2115    def get_pnm(self, *args):
2116        return _adonthell.image_get_pnm(self, *args)
2117
2118    def load_pnm(self, *args):
2119        return _adonthell.image_load_pnm(self, *args)
2120
2121    def put(self, *args):
2122        return _adonthell.image_put(self, *args)
2123
2124    def save(self, *args):
2125        return _adonthell.image_save(self, *args)
2126
2127    def put_raw(self, *args):
2128        return _adonthell.image_put_raw(self, *args)
2129
2130    def save_raw(self, *args):
2131        return _adonthell.image_save_raw(self, *args)
2132
2133    def put_pnm(self, *args):
2134        return _adonthell.image_put_pnm(self, *args)
2135
2136    def save_pnm(self, *args):
2137        return _adonthell.image_save_pnm(self, *args)
2138
2139    def zoom(self, *args):
2140        return _adonthell.image_zoom(self, *args)
2141
2142    def zoom_to(self, *args):
2143        return _adonthell.image_zoom_to(self, *args)
2144
2145    def tile(self, *args):
2146        return _adonthell.image_tile(self, *args)
2147
2148    def tile_to(self, *args):
2149        return _adonthell.image_tile_to(self, *args)
2150
2151    def brightness(self, *args):
2152        return _adonthell.image_brightness(self, *args)
2153
2154    def copy(self, *args):
2155        return _adonthell.image_copy(self, *args)
2156image_swigregister = _adonthell.image_swigregister
2157image_swigregister(image)
2158
2159class animationframe(object):
2160    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2161    __repr__ = _swig_repr
2162
2163    def __init__(self, *args):
2164        this = _adonthell.new_animationframe(*args)
2165        try:
2166            self.this.append(this)
2167        except Exception:
2168            self.this = this
2169    __swig_destroy__ = _adonthell.delete_animationframe
2170    __del__ = lambda self: None
2171
2172    def clear(self, *args):
2173        return _adonthell.animationframe_clear(self, *args)
2174
2175    def is_masked(self, *args):
2176        return _adonthell.animationframe_is_masked(self, *args)
2177
2178    def set_mask(self, *args):
2179        return _adonthell.animationframe_set_mask(self, *args)
2180
2181    def alpha(self, *args):
2182        return _adonthell.animationframe_alpha(self, *args)
2183
2184    def set_alpha(self, *args):
2185        return _adonthell.animationframe_set_alpha(self, *args)
2186
2187    def image_nbr(self, *args):
2188        return _adonthell.animationframe_image_nbr(self, *args)
2189
2190    def set_image_nbr(self, *args):
2191        return _adonthell.animationframe_set_image_nbr(self, *args)
2192
2193    def delay(self, *args):
2194        return _adonthell.animationframe_delay(self, *args)
2195
2196    def set_delay(self, *args):
2197        return _adonthell.animationframe_set_delay(self, *args)
2198
2199    def nextframe(self, *args):
2200        return _adonthell.animationframe_nextframe(self, *args)
2201
2202    def set_nextframe(self, *args):
2203        return _adonthell.animationframe_set_nextframe(self, *args)
2204
2205    def offx(self, *args):
2206        return _adonthell.animationframe_offx(self, *args)
2207
2208    def offy(self, *args):
2209        return _adonthell.animationframe_offy(self, *args)
2210
2211    def set_offset(self, *args):
2212        return _adonthell.animationframe_set_offset(self, *args)
2213
2214    def get(self, *args):
2215        return _adonthell.animationframe_get(self, *args)
2216
2217    def put(self, *args):
2218        return _adonthell.animationframe_put(self, *args)
2219animationframe_swigregister = _adonthell.animationframe_swigregister
2220animationframe_swigregister(animationframe)
2221
2222
2223_adonthell.PLAY_swigconstant(_adonthell)
2224PLAY = _adonthell.PLAY
2225
2226_adonthell.STOP_swigconstant(_adonthell)
2227STOP = _adonthell.STOP
2228class animation(drawable):
2229    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2230    __repr__ = _swig_repr
2231
2232    def __init__(self, *args):
2233        this = _adonthell.new_animation(*args)
2234        try:
2235            self.this.append(this)
2236        except Exception:
2237            self.this = this
2238    __swig_destroy__ = _adonthell.delete_animation
2239    __del__ = lambda self: None
2240
2241    def clear(self, *args):
2242        return _adonthell.animation_clear(self, *args)
2243
2244    def play(self, *args):
2245        return _adonthell.animation_play(self, *args)
2246
2247    def stop(self, *args):
2248        return _adonthell.animation_stop(self, *args)
2249
2250    def playstate(self, *args):
2251        return _adonthell.animation_playstate(self, *args)
2252
2253    def rewind(self, *args):
2254        return _adonthell.animation_rewind(self, *args)
2255
2256    def next_frame(self, *args):
2257        return _adonthell.animation_next_frame(self, *args)
2258
2259    def update(self, *args):
2260        return _adonthell.animation_update(self, *args)
2261
2262    def draw(self, *args):
2263        return _adonthell.animation_draw(self, *args)
2264
2265    def get(self, *args):
2266        return _adonthell.animation_get(self, *args)
2267
2268    def load(self, *args):
2269        return _adonthell.animation_load(self, *args)
2270
2271    def put(self, *args):
2272        return _adonthell.animation_put(self, *args)
2273
2274    def save(self, *args):
2275        return _adonthell.animation_save(self, *args)
2276
2277    def nbr_of_frames(self, *args):
2278        return _adonthell.animation_nbr_of_frames(self, *args)
2279
2280    def nbr_of_images(self, *args):
2281        return _adonthell.animation_nbr_of_images(self, *args)
2282
2283    def currentframe(self, *args):
2284        return _adonthell.animation_currentframe(self, *args)
2285
2286    def set_currentframe(self, *args):
2287        return _adonthell.animation_set_currentframe(self, *args)
2288
2289    def xoffset(self, *args):
2290        return _adonthell.animation_xoffset(self, *args)
2291
2292    def yoffset(self, *args):
2293        return _adonthell.animation_yoffset(self, *args)
2294
2295    def set_offset(self, *args):
2296        return _adonthell.animation_set_offset(self, *args)
2297
2298    def get_frame(self, *args):
2299        return _adonthell.animation_get_frame(self, *args)
2300
2301    def get_image(self, *args):
2302        return _adonthell.animation_get_image(self, *args)
2303
2304    def insert_image(self, *args):
2305        return _adonthell.animation_insert_image(self, *args)
2306
2307    def insert_frame(self, *args):
2308        return _adonthell.animation_insert_frame(self, *args)
2309
2310    def delete_image(self, *args):
2311        return _adonthell.animation_delete_image(self, *args)
2312
2313    def delete_frame(self, *args):
2314        return _adonthell.animation_delete_frame(self, *args)
2315
2316    def zoom(self, *args):
2317        return _adonthell.animation_zoom(self, *args)
2318
2319    def copy(self, *args):
2320        return _adonthell.animation_copy(self, *args)
2321animation_swigregister = _adonthell.animation_swigregister
2322animation_swigregister(animation)
2323
2324
2325_adonthell.ALL_WALKABLE_swigconstant(_adonthell)
2326ALL_WALKABLE = _adonthell.ALL_WALKABLE
2327
2328_adonthell.WALKABLE_SOUTH_swigconstant(_adonthell)
2329WALKABLE_SOUTH = _adonthell.WALKABLE_SOUTH
2330
2331_adonthell.WALKABLE_NORTH_swigconstant(_adonthell)
2332WALKABLE_NORTH = _adonthell.WALKABLE_NORTH
2333
2334_adonthell.WALKABLE_EAST_swigconstant(_adonthell)
2335WALKABLE_EAST = _adonthell.WALKABLE_EAST
2336
2337_adonthell.WALKABLE_WEST_swigconstant(_adonthell)
2338WALKABLE_WEST = _adonthell.WALKABLE_WEST
2339
2340_adonthell.NONE_WALKABLE_swigconstant(_adonthell)
2341NONE_WALKABLE = _adonthell.NONE_WALKABLE
2342class mapsquare_walkable(object):
2343    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2344    __repr__ = _swig_repr
2345
2346    def __init__(self, *args):
2347        this = _adonthell.new_mapsquare_walkable(*args)
2348        try:
2349            self.this.append(this)
2350        except Exception:
2351            self.this = this
2352
2353    def get(self, *args):
2354        return _adonthell.mapsquare_walkable_get(self, *args)
2355
2356    def put(self, *args):
2357        return _adonthell.mapsquare_walkable_put(self, *args)
2358
2359    def is_walkable_west(self, *args):
2360        return _adonthell.mapsquare_walkable_is_walkable_west(self, *args)
2361
2362    def is_walkable_east(self, *args):
2363        return _adonthell.mapsquare_walkable_is_walkable_east(self, *args)
2364
2365    def is_walkable_north(self, *args):
2366        return _adonthell.mapsquare_walkable_is_walkable_north(self, *args)
2367
2368    def is_walkable_south(self, *args):
2369        return _adonthell.mapsquare_walkable_is_walkable_south(self, *args)
2370
2371    def set_walkable_west(self, *args):
2372        return _adonthell.mapsquare_walkable_set_walkable_west(self, *args)
2373
2374    def set_walkable_east(self, *args):
2375        return _adonthell.mapsquare_walkable_set_walkable_east(self, *args)
2376
2377    def set_walkable_north(self, *args):
2378        return _adonthell.mapsquare_walkable_set_walkable_north(self, *args)
2379
2380    def set_walkable_south(self, *args):
2381        return _adonthell.mapsquare_walkable_set_walkable_south(self, *args)
2382
2383    def get_walkable(self, *args):
2384        return _adonthell.mapsquare_walkable_get_walkable(self, *args)
2385
2386    def set_walkable(self, *args):
2387        return _adonthell.mapsquare_walkable_set_walkable(self, *args)
2388    __swig_destroy__ = _adonthell.delete_mapsquare_walkable
2389    __del__ = lambda self: None
2390mapsquare_walkable_swigregister = _adonthell.mapsquare_walkable_swigregister
2391mapsquare_walkable_swigregister(mapsquare_walkable)
2392MAPSQUARE_SIZE = cvar.MAPSQUARE_SIZE
2393
2394class mapsquare_walkable_area(drawable):
2395    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2396
2397    def __init__(self, *args, **kwargs):
2398        raise AttributeError("No constructor defined - class is abstract")
2399    __repr__ = _swig_repr
2400    __swig_destroy__ = _adonthell.delete_mapsquare_walkable_area
2401    __del__ = lambda self: None
2402
2403    def clear(self, *args):
2404        return _adonthell.mapsquare_walkable_area_clear(self, *args)
2405
2406    def draw(self, *args):
2407        return _adonthell.mapsquare_walkable_area_draw(self, *args)
2408
2409    def area_length(self, *args):
2410        return _adonthell.mapsquare_walkable_area_area_length(self, *args)
2411
2412    def area_height(self, *args):
2413        return _adonthell.mapsquare_walkable_area_area_height(self, *args)
2414
2415    def get_square(self, *args):
2416        return _adonthell.mapsquare_walkable_area_get_square(self, *args)
2417
2418    def resize_area(self, *args):
2419        return _adonthell.mapsquare_walkable_area_resize_area(self, *args)
2420
2421    def base_x(self, *args):
2422        return _adonthell.mapsquare_walkable_area_base_x(self, *args)
2423
2424    def base_y(self, *args):
2425        return _adonthell.mapsquare_walkable_area_base_y(self, *args)
2426
2427    def set_base(self, *args):
2428        return _adonthell.mapsquare_walkable_area_set_base(self, *args)
2429
2430    def get(self, *args):
2431        return _adonthell.mapsquare_walkable_area_get(self, *args)
2432
2433    def put(self, *args):
2434        return _adonthell.mapsquare_walkable_area_put(self, *args)
2435
2436    def copy(self, *args):
2437        return _adonthell.mapsquare_walkable_area_copy(self, *args)
2438mapsquare_walkable_area_swigregister = _adonthell.mapsquare_walkable_area_swigregister
2439mapsquare_walkable_area_swigregister(mapsquare_walkable_area)
2440
2441class mapsquare_tile(object):
2442    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2443    __repr__ = _swig_repr
2444
2445    def __init__(self, *args):
2446        this = _adonthell.new_mapsquare_tile(*args)
2447        try:
2448            self.this.append(this)
2449        except Exception:
2450            self.this = this
2451    __swig_destroy__ = _adonthell.delete_mapsquare_tile
2452    __del__ = lambda self: None
2453mapsquare_tile_swigregister = _adonthell.mapsquare_tile_swigregister
2454mapsquare_tile_swigregister(mapsquare_tile)
2455
2456class mapsquare_char(object):
2457    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2458    __repr__ = _swig_repr
2459
2460    def __init__(self, *args):
2461        this = _adonthell.new_mapsquare_char(*args)
2462        try:
2463            self.this.append(this)
2464        except Exception:
2465            self.this = this
2466    __swig_destroy__ = _adonthell.delete_mapsquare_char
2467    __del__ = lambda self: None
2468mapsquare_char_swigregister = _adonthell.mapsquare_char_swigregister
2469mapsquare_char_swigregister(mapsquare_char)
2470
2471class mapsquare(mapsquare_walkable):
2472    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2473    __repr__ = _swig_repr
2474
2475    def __init__(self, *args):
2476        this = _adonthell.new_mapsquare(*args)
2477        try:
2478            self.this.append(this)
2479        except Exception:
2480            self.this = this
2481    __swig_destroy__ = _adonthell.delete_mapsquare
2482    __del__ = lambda self: None
2483
2484    def x(self, *args):
2485        return _adonthell.mapsquare_x(self, *args)
2486
2487    def y(self, *args):
2488        return _adonthell.mapsquare_y(self, *args)
2489
2490    def is_free(self, *args):
2491        return _adonthell.mapsquare_is_free(self, *args)
2492
2493    def whoshere(self, *args):
2494        return _adonthell.mapsquare_whoshere(self, *args)
2495    g = _swig_property(_adonthell.mapsquare_g_get, _adonthell.mapsquare_g_set)
2496    h = _swig_property(_adonthell.mapsquare_h_get, _adonthell.mapsquare_h_set)
2497    f = _swig_property(_adonthell.mapsquare_f_get, _adonthell.mapsquare_f_set)
2498    parent = _swig_property(_adonthell.mapsquare_parent_get, _adonthell.mapsquare_parent_set)
2499    can_use_for_pathfinding = _swig_property(_adonthell.mapsquare_can_use_for_pathfinding_get, _adonthell.mapsquare_can_use_for_pathfinding_set)
2500mapsquare_swigregister = _adonthell.mapsquare_swigregister
2501mapsquare_swigregister(mapsquare)
2502
2503class mapsquare_area(object):
2504    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2505    __repr__ = _swig_repr
2506
2507    def __init__(self, *args):
2508        this = _adonthell.new_mapsquare_area(*args)
2509        try:
2510            self.this.append(this)
2511        except Exception:
2512            self.this = this
2513    __swig_destroy__ = _adonthell.delete_mapsquare_area
2514    __del__ = lambda self: None
2515
2516    def clear(self, *args):
2517        return _adonthell.mapsquare_area_clear(self, *args)
2518
2519    def area_length(self, *args):
2520        return _adonthell.mapsquare_area_area_length(self, *args)
2521
2522    def area_height(self, *args):
2523        return _adonthell.mapsquare_area_area_height(self, *args)
2524
2525    def get_square(self, *args):
2526        return _adonthell.mapsquare_area_get_square(self, *args)
2527
2528    def resize_area(self, *args):
2529        return _adonthell.mapsquare_area_resize_area(self, *args)
2530mapsquare_area_swigregister = _adonthell.mapsquare_area_swigregister
2531mapsquare_area_swigregister(mapsquare_area)
2532
2533
2534_adonthell.MAPOBJECTS_DIR_swigconstant(_adonthell)
2535MAPOBJECTS_DIR = _adonthell.MAPOBJECTS_DIR
2536class mapobject(mapsquare_walkable_area):
2537    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2538    __repr__ = _swig_repr
2539
2540    def __init__(self, *args):
2541        this = _adonthell.new_mapobject(*args)
2542        try:
2543            self.this.append(this)
2544        except Exception:
2545            self.this = this
2546    __swig_destroy__ = _adonthell.delete_mapobject
2547    __del__ = lambda self: None
2548
2549    def clear(self, *args):
2550        return _adonthell.mapobject_clear(self, *args)
2551
2552    def update(self, *args):
2553        return _adonthell.mapobject_update(self, *args)
2554
2555    def draw(self, *args):
2556        return _adonthell.mapobject_draw(self, *args)
2557
2558    def draw_from_base(self, *args):
2559        return _adonthell.mapobject_draw_from_base(self, *args)
2560
2561    def get(self, *args):
2562        return _adonthell.mapobject_get(self, *args)
2563
2564    def load(self, *args):
2565        return _adonthell.mapobject_load(self, *args)
2566
2567    def put(self, *args):
2568        return _adonthell.mapobject_put(self, *args)
2569
2570    def save(self, *args):
2571        return _adonthell.mapobject_save(self, *args)
2572
2573    def nbr_of_animations(self, *args):
2574        return _adonthell.mapobject_nbr_of_animations(self, *args)
2575
2576    def get_animation(self, *args):
2577        return _adonthell.mapobject_get_animation(self, *args)
2578
2579    def insert_animation(self, *args):
2580        return _adonthell.mapobject_insert_animation(self, *args)
2581
2582    def delete_animation(self, *args):
2583        return _adonthell.mapobject_delete_animation(self, *args)
2584
2585    def copy(self, *args):
2586        return _adonthell.mapobject_copy(self, *args)
2587mapobject_swigregister = _adonthell.mapobject_swigregister
2588mapobject_swigregister(mapobject)
2589
2590
2591_adonthell.MAPCHAR_DIR_swigconstant(_adonthell)
2592MAPCHAR_DIR = _adonthell.MAPCHAR_DIR
2593
2594_adonthell.STAND_NORTH_swigconstant(_adonthell)
2595STAND_NORTH = _adonthell.STAND_NORTH
2596
2597_adonthell.STAND_SOUTH_swigconstant(_adonthell)
2598STAND_SOUTH = _adonthell.STAND_SOUTH
2599
2600_adonthell.STAND_WEST_swigconstant(_adonthell)
2601STAND_WEST = _adonthell.STAND_WEST
2602
2603_adonthell.STAND_EAST_swigconstant(_adonthell)
2604STAND_EAST = _adonthell.STAND_EAST
2605
2606_adonthell.WALK_NORTH_swigconstant(_adonthell)
2607WALK_NORTH = _adonthell.WALK_NORTH
2608
2609_adonthell.WALK_SOUTH_swigconstant(_adonthell)
2610WALK_SOUTH = _adonthell.WALK_SOUTH
2611
2612_adonthell.WALK_WEST_swigconstant(_adonthell)
2613WALK_WEST = _adonthell.WALK_WEST
2614
2615_adonthell.WALK_EAST_swigconstant(_adonthell)
2616WALK_EAST = _adonthell.WALK_EAST
2617
2618_adonthell.NBR_MOVES_swigconstant(_adonthell)
2619NBR_MOVES = _adonthell.NBR_MOVES
2620
2621_adonthell.NO_MOVE_swigconstant(_adonthell)
2622NO_MOVE = _adonthell.NO_MOVE
2623class mapcharacter(mapsquare_walkable_area, character_base, event_list):
2624    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2625    __repr__ = _swig_repr
2626
2627    def __init__(self, *args):
2628        this = _adonthell.new_mapcharacter(*args)
2629        try:
2630            self.this.append(this)
2631        except Exception:
2632            self.this = this
2633    __swig_destroy__ = _adonthell.delete_mapcharacter
2634    __del__ = lambda self: None
2635
2636    def clear(self, *args):
2637        return _adonthell.mapcharacter_clear(self, *args)
2638
2639    def filename(self, *args):
2640        return _adonthell.mapcharacter_filename(self, *args)
2641
2642    def update(self, *args):
2643        return _adonthell.mapcharacter_update(self, *args)
2644
2645    def draw(self, *args):
2646        return _adonthell.mapcharacter_draw(self, *args)
2647
2648    def draw_bubble(self, *args):
2649        return _adonthell.mapcharacter_draw_bubble(self, *args)
2650
2651    def get(self, *args):
2652        return _adonthell.mapcharacter_get(self, *args)
2653
2654    def load(self, *args):
2655        return _adonthell.mapcharacter_load(self, *args)
2656
2657    def put(self, *args):
2658        return _adonthell.mapcharacter_put(self, *args)
2659
2660    def save(self, *args):
2661        return _adonthell.mapcharacter_save(self, *args)
2662
2663    def get_state(self, *args):
2664        return _adonthell.mapcharacter_get_state(self, *args)
2665
2666    def put_state(self, *args):
2667        return _adonthell.mapcharacter_put_state(self, *args)
2668
2669    def set_map(self, *args):
2670        return _adonthell.mapcharacter_set_map(self, *args)
2671
2672    def remove_from_map(self, *args):
2673        return _adonthell.mapcharacter_remove_from_map(self, *args)
2674
2675    def mymap(self, *args):
2676        return _adonthell.mapcharacter_mymap(self, *args)
2677
2678    def stand_north(self, *args):
2679        return _adonthell.mapcharacter_stand_north(self, *args)
2680
2681    def stand_south(self, *args):
2682        return _adonthell.mapcharacter_stand_south(self, *args)
2683
2684    def stand_east(self, *args):
2685        return _adonthell.mapcharacter_stand_east(self, *args)
2686
2687    def stand_west(self, *args):
2688        return _adonthell.mapcharacter_stand_west(self, *args)
2689
2690    def stand(self, *args):
2691        return _adonthell.mapcharacter_stand(self, *args)
2692
2693    def go_north(self, *args):
2694        return _adonthell.mapcharacter_go_north(self, *args)
2695
2696    def go_south(self, *args):
2697        return _adonthell.mapcharacter_go_south(self, *args)
2698
2699    def go_east(self, *args):
2700        return _adonthell.mapcharacter_go_east(self, *args)
2701
2702    def go_west(self, *args):
2703        return _adonthell.mapcharacter_go_west(self, *args)
2704
2705    def can_go_north(self, *args):
2706        return _adonthell.mapcharacter_can_go_north(self, *args)
2707
2708    def can_go_south(self, *args):
2709        return _adonthell.mapcharacter_can_go_south(self, *args)
2710
2711    def can_go_east(self, *args):
2712        return _adonthell.mapcharacter_can_go_east(self, *args)
2713
2714    def can_go_west(self, *args):
2715        return _adonthell.mapcharacter_can_go_west(self, *args)
2716
2717    def look_invert(self, *args):
2718        return _adonthell.mapcharacter_look_invert(self, *args)
2719
2720    def whosnext(self, *args):
2721        return _adonthell.mapcharacter_whosnext(self, *args)
2722
2723    def speak(self, *args):
2724        return _adonthell.mapcharacter_speak(self, *args)
2725
2726    def is_speaking(self, *args):
2727        return _adonthell.mapcharacter_is_speaking(self, *args)
2728
2729    def get_bubble(self, *args):
2730        return _adonthell.mapcharacter_get_bubble(self, *args)
2731
2732    def set_offset(self, *args):
2733        return _adonthell.mapcharacter_set_offset(self, *args)
2734
2735    def remove_from_pos(self, *args):
2736        return _adonthell.mapcharacter_remove_from_pos(self, *args)
2737
2738    def jump_to(self, *args):
2739        return _adonthell.mapcharacter_jump_to(self, *args)
2740
2741    def submap(self, *args):
2742        return _adonthell.mapcharacter_submap(self, *args)
2743
2744    def posx(self, *args):
2745        return _adonthell.mapcharacter_posx(self, *args)
2746
2747    def posy(self, *args):
2748        return _adonthell.mapcharacter_posy(self, *args)
2749
2750    def offx(self, *args):
2751        return _adonthell.mapcharacter_offx(self, *args)
2752
2753    def offy(self, *args):
2754        return _adonthell.mapcharacter_offy(self, *args)
2755
2756    def currentmove(self, *args):
2757        return _adonthell.mapcharacter_currentmove(self, *args)
2758
2759    def set_goal(self, *args):
2760        return _adonthell.mapcharacter_set_goal(self, *args)
2761
2762    def set_callback(self, *args):
2763        return _adonthell.mapcharacter_set_callback(self, *args)
2764
2765    def follow_path(self, *args):
2766        return _adonthell.mapcharacter_follow_path(self, *args)
2767
2768    def goal_reached(self, *args):
2769        return _adonthell.mapcharacter_goal_reached(self, *args)
2770
2771    def stop_moving(self, *args):
2772        return _adonthell.mapcharacter_stop_moving(self, *args)
2773
2774    def time_callback(self, *args):
2775        return _adonthell.mapcharacter_time_callback(self, *args)
2776
2777    def time_callback_string(self, *args):
2778        return _adonthell.mapcharacter_time_callback_string(self, *args)
2779
2780    def set_schedule(self, *args):
2781        return _adonthell.mapcharacter_set_schedule(self, *args)
2782
2783    def schedule_file(self, *args):
2784        return _adonthell.mapcharacter_schedule_file(self, *args)
2785
2786    def is_schedule_activated(self, *args):
2787        return _adonthell.mapcharacter_is_schedule_activated(self, *args)
2788
2789    def set_schedule_active(self, *args):
2790        return _adonthell.mapcharacter_set_schedule_active(self, *args)
2791
2792    def do_stuff(self, *args):
2793        return _adonthell.mapcharacter_do_stuff(self, *args)
2794
2795    def set_action(self, *args):
2796        return _adonthell.mapcharacter_set_action(self, *args)
2797
2798    def action_file(self, *args):
2799        return _adonthell.mapcharacter_action_file(self, *args)
2800
2801    def is_action_activated(self, *args):
2802        return _adonthell.mapcharacter_is_action_activated(self, *args)
2803
2804    def set_action_active(self, *args):
2805        return _adonthell.mapcharacter_set_action_active(self, *args)
2806
2807    def launch_action(self, *args):
2808        return _adonthell.mapcharacter_launch_action(self, *args)
2809
2810    def get_animation(self, *args):
2811        return _adonthell.mapcharacter_get_animation(self, *args)
2812
2813    def copy(self, *args):
2814        return _adonthell.mapcharacter_copy(self, *args)
2815mapcharacter_swigregister = _adonthell.mapcharacter_swigregister
2816mapcharacter_swigregister(mapcharacter)
2817
2818class path(object):
2819    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2820    __repr__ = _swig_repr
2821
2822    def clear(self, *args):
2823        return _adonthell.path_clear(self, *args)
2824
2825    def calculate(self, *args):
2826        return _adonthell.path_calculate(self, *args)
2827
2828    def nbr_moves(self, *args):
2829        return _adonthell.path_nbr_moves(self, *args)
2830
2831    def get_move(self, *args):
2832        return _adonthell.path_get_move(self, *args)
2833
2834    def get_state(self, *args):
2835        return _adonthell.path_get_state(self, *args)
2836
2837    def put_state(self, *args):
2838        return _adonthell.path_put_state(self, *args)
2839
2840    def __init__(self, *args):
2841        this = _adonthell.new_path(*args)
2842        try:
2843            self.this.append(this)
2844        except Exception:
2845            self.this = this
2846    __swig_destroy__ = _adonthell.delete_path
2847    __del__ = lambda self: None
2848path_swigregister = _adonthell.path_swigregister
2849path_swigregister(path)
2850
2851class character(mapcharacter):
2852    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2853    __repr__ = _swig_repr
2854
2855    def __init__(self, *args):
2856        this = _adonthell.new_character(*args)
2857        try:
2858            self.this.append(this)
2859        except Exception:
2860            self.this = this
2861    __swig_destroy__ = _adonthell.delete_character
2862    __del__ = lambda self: None
2863character_swigregister = _adonthell.character_swigregister
2864character_swigregister(character)
2865
2866
2867_adonthell.MAPS_DIR_swigconstant(_adonthell)
2868MAPS_DIR = _adonthell.MAPS_DIR
2869class landmap(event_list):
2870    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2871    __repr__ = _swig_repr
2872
2873    def __init__(self, *args):
2874        this = _adonthell.new_landmap(*args)
2875        try:
2876            self.this.append(this)
2877        except Exception:
2878            self.this = this
2879    __swig_destroy__ = _adonthell.delete_landmap
2880    __del__ = lambda self: None
2881
2882    def clear(self, *args):
2883        return _adonthell.landmap_clear(self, *args)
2884
2885    def nbr_of_mapobjects(self, *args):
2886        return _adonthell.landmap_nbr_of_mapobjects(self, *args)
2887
2888    def nbr_of_submaps(self, *args):
2889        return _adonthell.landmap_nbr_of_submaps(self, *args)
2890
2891    def nbr_of_mapcharacters(self, *args):
2892        return _adonthell.landmap_nbr_of_mapcharacters(self, *args)
2893
2894    def filename(self, *args):
2895        return _adonthell.landmap_filename(self, *args)
2896
2897    def get_mapcharacter(self, *args):
2898        return _adonthell.landmap_get_mapcharacter(self, *args)
2899
2900    def get_mapobject(self, *args):
2901        return _adonthell.landmap_get_mapobject(self, *args)
2902
2903    def get_submap(self, *args):
2904        return _adonthell.landmap_get_submap(self, *args)
2905
2906    def update(self, *args):
2907        return _adonthell.landmap_update(self, *args)
2908
2909    def get(self, *args):
2910        return _adonthell.landmap_get(self, *args)
2911
2912    def load(self, *args):
2913        return _adonthell.landmap_load(self, *args)
2914
2915    def put(self, *args):
2916        return _adonthell.landmap_put(self, *args)
2917
2918    def save(self, *args):
2919        return _adonthell.landmap_save(self, *args)
2920
2921    def get_state(self, *args):
2922        return _adonthell.landmap_get_state(self, *args)
2923
2924    def put_state(self, *args):
2925        return _adonthell.landmap_put_state(self, *args)
2926
2927    def put_mapobject(self, *args):
2928        return _adonthell.landmap_put_mapobject(self, *args)
2929
2930    def remove_mapobject(self, *args):
2931        return _adonthell.landmap_remove_mapobject(self, *args)
2932
2933    def insert_submap(self, *args):
2934        return _adonthell.landmap_insert_submap(self, *args)
2935
2936    def delete_submap(self, *args):
2937        return _adonthell.landmap_delete_submap(self, *args)
2938
2939    def insert_mapobject(self, *args):
2940        return _adonthell.landmap_insert_mapobject(self, *args)
2941
2942    def delete_mapobject(self, *args):
2943        return _adonthell.landmap_delete_mapobject(self, *args)
2944landmap_swigregister = _adonthell.landmap_swigregister
2945landmap_swigregister(landmap)
2946
2947class mapview(drawable):
2948    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2949    __repr__ = _swig_repr
2950
2951    def __init__(self, *args):
2952        this = _adonthell.new_mapview(*args)
2953        try:
2954            self.this.append(this)
2955        except Exception:
2956            self.this = this
2957    __swig_destroy__ = _adonthell.delete_mapview
2958    __del__ = lambda self: None
2959
2960    def attach_map(self, *args):
2961        return _adonthell.mapview_attach_map(self, *args)
2962
2963    def detach_map(self, *args):
2964        return _adonthell.mapview_detach_map(self, *args)
2965
2966    def set_pos(self, *args):
2967        return _adonthell.mapview_set_pos(self, *args)
2968
2969    def center_on(self, *args):
2970        return _adonthell.mapview_center_on(self, *args)
2971
2972    def currentsubmap(self, *args):
2973        return _adonthell.mapview_currentsubmap(self, *args)
2974
2975    def posx(self, *args):
2976        return _adonthell.mapview_posx(self, *args)
2977
2978    def posy(self, *args):
2979        return _adonthell.mapview_posy(self, *args)
2980
2981    def offx(self, *args):
2982        return _adonthell.mapview_offx(self, *args)
2983
2984    def offy(self, *args):
2985        return _adonthell.mapview_offy(self, *args)
2986
2987    def can_scroll_right(self, *args):
2988        return _adonthell.mapview_can_scroll_right(self, *args)
2989
2990    def can_scroll_left(self, *args):
2991        return _adonthell.mapview_can_scroll_left(self, *args)
2992
2993    def can_scroll_up(self, *args):
2994        return _adonthell.mapview_can_scroll_up(self, *args)
2995
2996    def can_scroll_down(self, *args):
2997        return _adonthell.mapview_can_scroll_down(self, *args)
2998
2999    def scroll_right(self, *args):
3000        return _adonthell.mapview_scroll_right(self, *args)
3001
3002    def scroll_left(self, *args):
3003        return _adonthell.mapview_scroll_left(self, *args)
3004
3005    def scroll_down(self, *args):
3006        return _adonthell.mapview_scroll_down(self, *args)
3007
3008    def scroll_up(self, *args):
3009        return _adonthell.mapview_scroll_up(self, *args)
3010
3011    def get_state(self, *args):
3012        return _adonthell.mapview_get_state(self, *args)
3013
3014    def put_state(self, *args):
3015        return _adonthell.mapview_put_state(self, *args)
3016
3017    def resize(self, *args):
3018        return _adonthell.mapview_resize(self, *args)
3019
3020    def set_schedule(self, *args):
3021        return _adonthell.mapview_set_schedule(self, *args)
3022
3023    def schedule_file(self, *args):
3024        return _adonthell.mapview_schedule_file(self, *args)
3025
3026    def update(self, *args):
3027        return _adonthell.mapview_update(self, *args)
3028
3029    def draw(self, *args):
3030        return _adonthell.mapview_draw(self, *args)
3031mapview_swigregister = _adonthell.mapview_swigregister
3032mapview_swigregister(mapview)
3033
3034class adonthell(object):
3035    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3036    __repr__ = _swig_repr
3037
3038    def __init__(self, *args):
3039        this = _adonthell.new_adonthell(*args)
3040        try:
3041            self.this.append(this)
3042        except Exception:
3043            self.this = this
3044
3045    def main(self, *args):
3046        return _adonthell.adonthell_main(self, *args)
3047
3048    def main_loop(self, *args):
3049        return _adonthell.adonthell_main_loop(self, *args)
3050
3051    def main_quit(self, *args):
3052        return _adonthell.adonthell_main_quit(self, *args)
3053
3054    def fade_out(self, *args):
3055        return _adonthell.adonthell_fade_out(self, *args)
3056
3057    def fade_in(self, *args):
3058        return _adonthell.adonthell_fade_in(self, *args)
3059
3060    def get_state(self, *args):
3061        return _adonthell.adonthell_get_state(self, *args)
3062
3063    def put_state(self, *args):
3064        return _adonthell.adonthell_put_state(self, *args)
3065
3066    def control_active(self, *args):
3067        return _adonthell.adonthell_control_active(self, *args)
3068
3069    def set_control_active(self, *args):
3070        return _adonthell.adonthell_set_control_active(self, *args)
3071
3072    def get_landmap(self, *args):
3073        return _adonthell.adonthell_get_landmap(self, *args)
3074
3075    def update_map(self, *args):
3076        return _adonthell.adonthell_update_map(self, *args)
3077
3078    def set_update_map(self, *args):
3079        return _adonthell.adonthell_set_update_map(self, *args)
3080
3081    def get_mapview(self, *args):
3082        return _adonthell.adonthell_get_mapview(self, *args)
3083
3084    def draw(self, *args):
3085        return _adonthell.adonthell_draw(self, *args)
3086
3087    def set_mapview_schedule(self, *args):
3088        return _adonthell.adonthell_set_mapview_schedule(self, *args)
3089
3090    def mapview_start(self, *args):
3091        return _adonthell.adonthell_mapview_start(self, *args)
3092
3093    def mapview_stop(self, *args):
3094        return _adonthell.adonthell_mapview_stop(self, *args)
3095    __swig_destroy__ = _adonthell.delete_adonthell
3096    __del__ = lambda self: None
3097adonthell_swigregister = _adonthell.adonthell_swigregister
3098adonthell_swigregister(adonthell)
3099
3100
3101_adonthell.WIN_NB_TABLE_CHAR_swigconstant(_adonthell)
3102WIN_NB_TABLE_CHAR = _adonthell.WIN_NB_TABLE_CHAR
3103
3104_adonthell.WIN_TEXT_MAX_LENGTH_swigconstant(_adonthell)
3105WIN_TEXT_MAX_LENGTH = _adonthell.WIN_TEXT_MAX_LENGTH
3106
3107_adonthell.WIN_FONT_HEIGHT_swigconstant(_adonthell)
3108WIN_FONT_HEIGHT = _adonthell.WIN_FONT_HEIGHT
3109
3110_adonthell.WIN_FONT_LENGHT_swigconstant(_adonthell)
3111WIN_FONT_LENGHT = _adonthell.WIN_FONT_LENGHT
3112
3113_adonthell.WIN_SPACE_LENGHT_swigconstant(_adonthell)
3114WIN_SPACE_LENGHT = _adonthell.WIN_SPACE_LENGHT
3115
3116_adonthell.WIN_DIRECTORY_swigconstant(_adonthell)
3117WIN_DIRECTORY = _adonthell.WIN_DIRECTORY
3118
3119_adonthell.WIN_FONT_DIRECTORY_swigconstant(_adonthell)
3120WIN_FONT_DIRECTORY = _adonthell.WIN_FONT_DIRECTORY
3121
3122_adonthell.WIN_BORDER_DIRECTORY_swigconstant(_adonthell)
3123WIN_BORDER_DIRECTORY = _adonthell.WIN_BORDER_DIRECTORY
3124
3125_adonthell.WIN_BACKGROUND_DIRECTORY_swigconstant(_adonthell)
3126WIN_BACKGROUND_DIRECTORY = _adonthell.WIN_BACKGROUND_DIRECTORY
3127
3128_adonthell.WIN_SCROLLBAR_DIRECTORY_swigconstant(_adonthell)
3129WIN_SCROLLBAR_DIRECTORY = _adonthell.WIN_SCROLLBAR_DIRECTORY
3130
3131_adonthell.WIN_CURSOR_DIRECTORY_swigconstant(_adonthell)
3132WIN_CURSOR_DIRECTORY = _adonthell.WIN_CURSOR_DIRECTORY
3133
3134_adonthell.WIN_FONT_FILE_IDX_swigconstant(_adonthell)
3135WIN_FONT_FILE_IDX = _adonthell.WIN_FONT_FILE_IDX
3136
3137_adonthell.WIN_FONT_FILE_PIC_swigconstant(_adonthell)
3138WIN_FONT_FILE_PIC = _adonthell.WIN_FONT_FILE_PIC
3139
3140_adonthell.WIN_FONT_FILE_swigconstant(_adonthell)
3141WIN_FONT_FILE = _adonthell.WIN_FONT_FILE
3142
3143_adonthell.WIN_V_BORDER_TEMPLATE_FILE_swigconstant(_adonthell)
3144WIN_V_BORDER_TEMPLATE_FILE = _adonthell.WIN_V_BORDER_TEMPLATE_FILE
3145
3146_adonthell.WIN_H_BORDER_TEMPLATE_FILE_swigconstant(_adonthell)
3147WIN_H_BORDER_TEMPLATE_FILE = _adonthell.WIN_H_BORDER_TEMPLATE_FILE
3148
3149_adonthell.WIN_CORNER_TOP_LEFT_FILE_swigconstant(_adonthell)
3150WIN_CORNER_TOP_LEFT_FILE = _adonthell.WIN_CORNER_TOP_LEFT_FILE
3151
3152_adonthell.WIN_CORNER_TOP_RIGHT_FILE_swigconstant(_adonthell)
3153WIN_CORNER_TOP_RIGHT_FILE = _adonthell.WIN_CORNER_TOP_RIGHT_FILE
3154
3155_adonthell.WIN_CORNER_BOTTOM_LEFT_FILE_swigconstant(_adonthell)
3156WIN_CORNER_BOTTOM_LEFT_FILE = _adonthell.WIN_CORNER_BOTTOM_LEFT_FILE
3157
3158_adonthell.WIN_CORNER_BOTTOM_RIGHT_FILE_swigconstant(_adonthell)
3159WIN_CORNER_BOTTOM_RIGHT_FILE = _adonthell.WIN_CORNER_BOTTOM_RIGHT_FILE
3160
3161_adonthell.WIN_BACKGROUND_FILE_swigconstant(_adonthell)
3162WIN_BACKGROUND_FILE = _adonthell.WIN_BACKGROUND_FILE
3163
3164_adonthell.WIN_SCROLLBAR_BAR_TOP_swigconstant(_adonthell)
3165WIN_SCROLLBAR_BAR_TOP = _adonthell.WIN_SCROLLBAR_BAR_TOP
3166
3167_adonthell.WIN_SCROLLBAR_BAR_MID_swigconstant(_adonthell)
3168WIN_SCROLLBAR_BAR_MID = _adonthell.WIN_SCROLLBAR_BAR_MID
3169
3170_adonthell.WIN_SCROLLBAR_BAR_BOT_swigconstant(_adonthell)
3171WIN_SCROLLBAR_BAR_BOT = _adonthell.WIN_SCROLLBAR_BAR_BOT
3172
3173_adonthell.WIN_SCROLLBAR_BAR_FLEX_swigconstant(_adonthell)
3174WIN_SCROLLBAR_BAR_FLEX = _adonthell.WIN_SCROLLBAR_BAR_FLEX
3175
3176_adonthell.WIN_SCROLLBAR_BACK_TOP_swigconstant(_adonthell)
3177WIN_SCROLLBAR_BACK_TOP = _adonthell.WIN_SCROLLBAR_BACK_TOP
3178
3179_adonthell.WIN_SCROLLBAR_BACK_MID_swigconstant(_adonthell)
3180WIN_SCROLLBAR_BACK_MID = _adonthell.WIN_SCROLLBAR_BACK_MID
3181
3182_adonthell.WIN_SCROLLBAR_BACK_BOT_swigconstant(_adonthell)
3183WIN_SCROLLBAR_BACK_BOT = _adonthell.WIN_SCROLLBAR_BACK_BOT
3184
3185_adonthell.WIN_CURSOR_FILE_swigconstant(_adonthell)
3186WIN_CURSOR_FILE = _adonthell.WIN_CURSOR_FILE
3187
3188_adonthell.WIN_BORDER_NORMAL_SIZE_swigconstant(_adonthell)
3189WIN_BORDER_NORMAL_SIZE = _adonthell.WIN_BORDER_NORMAL_SIZE
3190
3191_adonthell.WIN_BORDER_MINI_SIZE_swigconstant(_adonthell)
3192WIN_BORDER_MINI_SIZE = _adonthell.WIN_BORDER_MINI_SIZE
3193
3194_adonthell.WIN_BRIGHTNESS_LEVEL_swigconstant(_adonthell)
3195WIN_BRIGHTNESS_LEVEL = _adonthell.WIN_BRIGHTNESS_LEVEL
3196class win_manager(object):
3197    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3198    __repr__ = _swig_repr
3199
3200    def __init__(self, *args):
3201        this = _adonthell.new_win_manager(*args)
3202        try:
3203            self.this.append(this)
3204        except Exception:
3205            self.this = this
3206    __swig_destroy__ = _adonthell.delete_win_manager
3207    __del__ = lambda self: None
3208
3209    def add(self, *args):
3210        return _adonthell.win_manager_add(self, *args)
3211
3212    def remove(self, *args):
3213        return _adonthell.win_manager_remove(self, *args)
3214
3215    def update(self, *args):
3216        return _adonthell.win_manager_update(self, *args)
3217
3218    def input_update(self, *args):
3219        return _adonthell.win_manager_input_update(self, *args)
3220
3221    def draw(self, *args):
3222        return _adonthell.win_manager_draw(self, *args)
3223
3224    def set_focus(self, *args):
3225        return _adonthell.win_manager_set_focus(self, *args)
3226
3227    def destroy(self, *args):
3228        return _adonthell.win_manager_destroy(self, *args)
3229    get_active = staticmethod(_adonthell.win_manager_get_active)
3230    init = staticmethod(_adonthell.win_manager_init)
3231    cleanup = staticmethod(_adonthell.win_manager_cleanup)
3232    add_theme = staticmethod(_adonthell.win_manager_add_theme)
3233    remove_theme = staticmethod(_adonthell.win_manager_remove_theme)
3234    get_theme = staticmethod(_adonthell.win_manager_get_theme)
3235    add_font = staticmethod(_adonthell.win_manager_add_font)
3236    remove_font = staticmethod(_adonthell.win_manager_remove_font)
3237    get_font = staticmethod(_adonthell.win_manager_get_font)
3238win_manager_swigregister = _adonthell.win_manager_swigregister
3239win_manager_swigregister(win_manager)
3240
3241def win_manager_get_active(*args):
3242    return _adonthell.win_manager_get_active(*args)
3243win_manager_get_active = _adonthell.win_manager_get_active
3244
3245def win_manager_init(*args):
3246    return _adonthell.win_manager_init(*args)
3247win_manager_init = _adonthell.win_manager_init
3248
3249def win_manager_cleanup(*args):
3250    return _adonthell.win_manager_cleanup(*args)
3251win_manager_cleanup = _adonthell.win_manager_cleanup
3252
3253def win_manager_add_theme(*args):
3254    return _adonthell.win_manager_add_theme(*args)
3255win_manager_add_theme = _adonthell.win_manager_add_theme
3256
3257def win_manager_remove_theme(*args):
3258    return _adonthell.win_manager_remove_theme(*args)
3259win_manager_remove_theme = _adonthell.win_manager_remove_theme
3260
3261def win_manager_get_theme(*args):
3262    return _adonthell.win_manager_get_theme(*args)
3263win_manager_get_theme = _adonthell.win_manager_get_theme
3264
3265def win_manager_add_font(*args):
3266    return _adonthell.win_manager_add_font(*args)
3267win_manager_add_font = _adonthell.win_manager_add_font
3268
3269def win_manager_remove_font(*args):
3270    return _adonthell.win_manager_remove_font(*args)
3271win_manager_remove_font = _adonthell.win_manager_remove_font
3272
3273def win_manager_get_font(*args):
3274    return _adonthell.win_manager_get_font(*args)
3275win_manager_get_font = _adonthell.win_manager_get_font
3276
3277class win_font(object):
3278    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3279    __repr__ = _swig_repr
3280
3281    def __init__(self, *args):
3282        this = _adonthell.new_win_font(*args)
3283        try:
3284            self.this.append(this)
3285        except Exception:
3286            self.this = this
3287    __swig_destroy__ = _adonthell.delete_win_font
3288    __del__ = lambda self: None
3289
3290    def load(self, *args):
3291        return _adonthell.win_font_load(self, *args)
3292
3293    def in_table(self, *args):
3294        return _adonthell.win_font_in_table(self, *args)
3295
3296    def height(self, *args):
3297        return _adonthell.win_font_height(self, *args)
3298
3299    def length(self, *args):
3300        return _adonthell.win_font_length(self, *args)
3301    cursor = _swig_property(_adonthell.win_font_cursor_get, _adonthell.win_font_cursor_set)
3302win_font_swigregister = _adonthell.win_font_swigregister
3303win_font_swigregister(win_font)
3304
3305
3306_adonthell.win_event_ACTIVATE_swigconstant(_adonthell)
3307win_event_ACTIVATE = _adonthell.win_event_ACTIVATE
3308
3309_adonthell.win_event_UNACTIVATE_swigconstant(_adonthell)
3310win_event_UNACTIVATE = _adonthell.win_event_UNACTIVATE
3311
3312_adonthell.win_event_UPDATE_swigconstant(_adonthell)
3313win_event_UPDATE = _adonthell.win_event_UPDATE
3314
3315_adonthell.win_event_DRAW_swigconstant(_adonthell)
3316win_event_DRAW = _adonthell.win_event_DRAW
3317
3318_adonthell.win_event_DRAW_ON_VISIBLE_swigconstant(_adonthell)
3319win_event_DRAW_ON_VISIBLE = _adonthell.win_event_DRAW_ON_VISIBLE
3320
3321_adonthell.win_event_ACTIVATE_KEY_swigconstant(_adonthell)
3322win_event_ACTIVATE_KEY = _adonthell.win_event_ACTIVATE_KEY
3323
3324_adonthell.win_event_SELECT_swigconstant(_adonthell)
3325win_event_SELECT = _adonthell.win_event_SELECT
3326
3327_adonthell.win_event_UNSELECT_swigconstant(_adonthell)
3328win_event_UNSELECT = _adonthell.win_event_UNSELECT
3329
3330_adonthell.win_event_KEYBOARD_swigconstant(_adonthell)
3331win_event_KEYBOARD = _adonthell.win_event_KEYBOARD
3332
3333_adonthell.win_event_SCROLL_UP_swigconstant(_adonthell)
3334win_event_SCROLL_UP = _adonthell.win_event_SCROLL_UP
3335
3336_adonthell.win_event_SCROLL_DOWN_swigconstant(_adonthell)
3337win_event_SCROLL_DOWN = _adonthell.win_event_SCROLL_DOWN
3338
3339_adonthell.win_event_NEXT_swigconstant(_adonthell)
3340win_event_NEXT = _adonthell.win_event_NEXT
3341
3342_adonthell.win_event_PREVIOUS_swigconstant(_adonthell)
3343win_event_PREVIOUS = _adonthell.win_event_PREVIOUS
3344
3345_adonthell.win_event_CLOSE_swigconstant(_adonthell)
3346win_event_CLOSE = _adonthell.win_event_CLOSE
3347
3348_adonthell.win_event_DESTROY_swigconstant(_adonthell)
3349win_event_DESTROY = _adonthell.win_event_DESTROY
3350class win_event(object):
3351    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3352    __repr__ = _swig_repr
3353
3354    def __init__(self, *args):
3355        this = _adonthell.new_win_event(*args)
3356        try:
3357            self.this.append(this)
3358        except Exception:
3359            self.this = this
3360
3361    def set_return_code(self, *args):
3362        return _adonthell.win_event_set_return_code(self, *args)
3363
3364    def update(self, *args):
3365        return _adonthell.win_event_update(self, *args)
3366
3367    def py_signal_connect(self, *args):
3368        return _adonthell.win_event_py_signal_connect(self, *args)
3369    __swig_destroy__ = _adonthell.delete_win_event
3370    __del__ = lambda self: None
3371win_event_swigregister = _adonthell.win_event_swigregister
3372win_event_swigregister(win_event)
3373
3374
3375_adonthell.win_border_MINI_swigconstant(_adonthell)
3376win_border_MINI = _adonthell.win_border_MINI
3377
3378_adonthell.win_border_NORMAL_swigconstant(_adonthell)
3379win_border_NORMAL = _adonthell.win_border_NORMAL
3380class win_border(object):
3381    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3382    __repr__ = _swig_repr
3383
3384    def __init__(self, *args):
3385        this = _adonthell.new_win_border(*args)
3386        try:
3387            self.this.append(this)
3388        except Exception:
3389            self.this = this
3390    __swig_destroy__ = _adonthell.delete_win_border
3391    __del__ = lambda self: None
3392
3393    def load(self, *args):
3394        return _adonthell.win_border_load(self, *args)
3395
3396    def update(self, *args):
3397        return _adonthell.win_border_update(self, *args)
3398
3399    def destroy(self, *args):
3400        return _adonthell.win_border_destroy(self, *args)
3401
3402    def draw(self, *args):
3403        return _adonthell.win_border_draw(self, *args)
3404
3405    def set_visible_border(self, *args):
3406        return _adonthell.win_border_set_visible_border(self, *args)
3407
3408    def set_brightness_border(self, *args):
3409        return _adonthell.win_border_set_brightness_border(self, *args)
3410
3411    def set_border(self, *args):
3412        return _adonthell.win_border_set_border(self, *args)
3413
3414    def set_trans_border(self, *args):
3415        return _adonthell.win_border_set_trans_border(self, *args)
3416
3417    def length_border(self, *args):
3418        return _adonthell.win_border_length_border(self, *args)
3419
3420    def height_border(self, *args):
3421        return _adonthell.win_border_height_border(self, *args)
3422win_border_swigregister = _adonthell.win_border_swigregister
3423win_border_swigregister(win_border)
3424
3425class win_background(object):
3426    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3427    __repr__ = _swig_repr
3428
3429    def __init__(self, *args):
3430        this = _adonthell.new_win_background(*args)
3431        try:
3432            self.this.append(this)
3433        except Exception:
3434            self.this = this
3435    __swig_destroy__ = _adonthell.delete_win_background
3436    __del__ = lambda self: None
3437
3438    def load(self, *args):
3439        return _adonthell.win_background_load(self, *args)
3440
3441    def update(self, *args):
3442        return _adonthell.win_background_update(self, *args)
3443
3444    def destroy(self, *args):
3445        return _adonthell.win_background_destroy(self, *args)
3446
3447    def draw(self, *args):
3448        return _adonthell.win_background_draw(self, *args)
3449
3450    def set_visible_background(self, *args):
3451        return _adonthell.win_background_set_visible_background(self, *args)
3452
3453    def set_background(self, *args):
3454        return _adonthell.win_background_set_background(self, *args)
3455
3456    def set_brightness_background(self, *args):
3457        return _adonthell.win_background_set_brightness_background(self, *args)
3458
3459    def set_trans_background(self, *args):
3460        return _adonthell.win_background_set_trans_background(self, *args)
3461win_background_swigregister = _adonthell.win_background_swigregister
3462win_background_swigregister(win_background)
3463
3464
3465_adonthell.win_base_ALIGN_NONE_swigconstant(_adonthell)
3466win_base_ALIGN_NONE = _adonthell.win_base_ALIGN_NONE
3467
3468_adonthell.win_base_ALIGN_LEFT_swigconstant(_adonthell)
3469win_base_ALIGN_LEFT = _adonthell.win_base_ALIGN_LEFT
3470
3471_adonthell.win_base_ALIGN_CENTER_swigconstant(_adonthell)
3472win_base_ALIGN_CENTER = _adonthell.win_base_ALIGN_CENTER
3473
3474_adonthell.win_base_ALIGN_RIGHT_swigconstant(_adonthell)
3475win_base_ALIGN_RIGHT = _adonthell.win_base_ALIGN_RIGHT
3476class win_base(win_event, win_border, drawing_area, win_background):
3477    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3478    __repr__ = _swig_repr
3479
3480    def __init__(self, *args):
3481        this = _adonthell.new_win_base(*args)
3482        try:
3483            self.this.append(this)
3484        except Exception:
3485            self.this = this
3486
3487    def x(self, *args):
3488        return _adonthell.win_base_x(self, *args)
3489
3490    def y(self, *args):
3491        return _adonthell.win_base_y(self, *args)
3492
3493    def pad_x(self, *args):
3494        return _adonthell.win_base_pad_x(self, *args)
3495
3496    def pad_y(self, *args):
3497        return _adonthell.win_base_pad_y(self, *args)
3498
3499    def real_x(self, *args):
3500        return _adonthell.win_base_real_x(self, *args)
3501
3502    def real_y(self, *args):
3503        return _adonthell.win_base_real_y(self, *args)
3504
3505    def move(self, *args):
3506        return _adonthell.win_base_move(self, *args)
3507
3508    def resize(self, *args):
3509        return _adonthell.win_base_resize(self, *args)
3510
3511    def is_visible(self, *args):
3512        return _adonthell.win_base_is_visible(self, *args)
3513
3514    def set_visible(self, *args):
3515        return _adonthell.win_base_set_visible(self, *args)
3516
3517    def is_activate(self, *args):
3518        return _adonthell.win_base_is_activate(self, *args)
3519
3520    def set_activate(self, *args):
3521        return _adonthell.win_base_set_activate(self, *args)
3522
3523    def is_focus(self, *args):
3524        return _adonthell.win_base_is_focus(self, *args)
3525
3526    def set_focus(self, *args):
3527        return _adonthell.win_base_set_focus(self, *args)
3528
3529    def is_trans(self, *args):
3530        return _adonthell.win_base_is_trans(self, *args)
3531
3532    def set_trans(self, *args):
3533        return _adonthell.win_base_set_trans(self, *args)
3534
3535    def is_brightness(self, *args):
3536        return _adonthell.win_base_is_brightness(self, *args)
3537
3538    def set_brightness(self, *args):
3539        return _adonthell.win_base_set_brightness(self, *args)
3540
3541    def set_align(self, *args):
3542        return _adonthell.win_base_set_align(self, *args)
3543
3544    def align(self, *args):
3545        return _adonthell.win_base_align(self, *args)
3546
3547    def is_can_be_selected(self, *args):
3548        return _adonthell.win_base_is_can_be_selected(self, *args)
3549
3550    def set_can_be_selected(self, *args):
3551        return _adonthell.win_base_set_can_be_selected(self, *args)
3552
3553    def update(self, *args):
3554        return _adonthell.win_base_update(self, *args)
3555
3556    def draw(self, *args):
3557        return _adonthell.win_base_draw(self, *args)
3558
3559    def input_update(self, *args):
3560        return _adonthell.win_base_input_update(self, *args)
3561    __swig_destroy__ = _adonthell.delete_win_base
3562    __del__ = lambda self: None
3563win_base_swigregister = _adonthell.win_base_swigregister
3564win_base_swigregister(win_base)
3565
3566
3567_adonthell.win_container_SPACE_WITH_BORDER_swigconstant(_adonthell)
3568win_container_SPACE_WITH_BORDER = _adonthell.win_container_SPACE_WITH_BORDER
3569
3570_adonthell.win_container_SPACE_WITH_OBJECT_swigconstant(_adonthell)
3571win_container_SPACE_WITH_OBJECT = _adonthell.win_container_SPACE_WITH_OBJECT
3572
3573_adonthell.win_container_LIST_LAYOUT_swigconstant(_adonthell)
3574win_container_LIST_LAYOUT = _adonthell.win_container_LIST_LAYOUT
3575
3576_adonthell.win_container_NO_LAYOUT_swigconstant(_adonthell)
3577win_container_NO_LAYOUT = _adonthell.win_container_NO_LAYOUT
3578class win_container(win_base):
3579    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3580    __repr__ = _swig_repr
3581
3582    def __init__(self, *args):
3583        this = _adonthell.new_win_container(*args)
3584        try:
3585            self.this.append(this)
3586        except Exception:
3587            self.this = this
3588
3589    def move(self, *args):
3590        return _adonthell.win_container_move(self, *args)
3591
3592    def resize(self, *args):
3593        return _adonthell.win_container_resize(self, *args)
3594
3595    def add(self, *args):
3596        return _adonthell.win_container_add(self, *args)
3597
3598    def remove(self, *args):
3599        return _adonthell.win_container_remove(self, *args)
3600
3601    def remove_all(self, *args):
3602        return _adonthell.win_container_remove_all(self, *args)
3603
3604    def destroy(self, *args):
3605        return _adonthell.win_container_destroy(self, *args)
3606    __swig_destroy__ = _adonthell.delete_win_container
3607    __del__ = lambda self: None
3608
3609    def update(self, *args):
3610        return _adonthell.win_container_update(self, *args)
3611
3612    def input_update(self, *args):
3613        return _adonthell.win_container_input_update(self, *args)
3614
3615    def draw(self, *args):
3616        return _adonthell.win_container_draw(self, *args)
3617
3618    def set_visible_all(self, *args):
3619        return _adonthell.win_container_set_visible_all(self, *args)
3620
3621    def set_brightness(self, *args):
3622        return _adonthell.win_container_set_brightness(self, *args)
3623
3624    def set_trans(self, *args):
3625        return _adonthell.win_container_set_trans(self, *args)
3626
3627    def set_space_with_border(self, *args):
3628        return _adonthell.win_container_set_space_with_border(self, *args)
3629
3630    def set_space_with_object(self, *args):
3631        return _adonthell.win_container_set_space_with_object(self, *args)
3632
3633    def space_with_border(self, *args):
3634        return _adonthell.win_container_space_with_border(self, *args)
3635
3636    def space_with_object(self, *args):
3637        return _adonthell.win_container_space_with_object(self, *args)
3638
3639    def set_layout(self, *args):
3640        return _adonthell.win_container_set_layout(self, *args)
3641
3642    def set_focus_object(self, *args):
3643        return _adonthell.win_container_set_focus_object(self, *args)
3644
3645    def focus_object(self, *args):
3646        return _adonthell.win_container_focus_object(self, *args)
3647win_container_swigregister = _adonthell.win_container_swigregister
3648win_container_swigregister(win_container)
3649
3650class win_image(image, win_base):
3651    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3652    __repr__ = _swig_repr
3653    __swig_destroy__ = _adonthell.delete_win_image
3654    __del__ = lambda self: None
3655
3656    def draw(self, *args):
3657        return _adonthell.win_image_draw(self, *args)
3658
3659    def update(self, *args):
3660        return _adonthell.win_image_update(self, *args)
3661
3662    def input_update(self, *args):
3663        return _adonthell.win_image_input_update(self, *args)
3664
3665    def set_brightness(self, *args):
3666        return _adonthell.win_image_set_brightness(self, *args)
3667
3668    def set_trans(self, *args):
3669        return _adonthell.win_image_set_trans(self, *args)
3670
3671    def pack(self, *args):
3672        return _adonthell.win_image_pack(self, *args)
3673
3674    def set_auto_refresh(self, *args):
3675        return _adonthell.win_image_set_auto_refresh(self, *args)
3676
3677    def __init__(self, *args):
3678        this = _adonthell.new_win_image(*args)
3679        try:
3680            self.this.append(this)
3681        except Exception:
3682            self.this = this
3683win_image_swigregister = _adonthell.win_image_swigregister
3684win_image_swigregister(win_image)
3685
3686
3687_adonthell.label_NOTHING_swigconstant(_adonthell)
3688label_NOTHING = _adonthell.label_NOTHING
3689
3690_adonthell.label_AUTO_HEIGHT_swigconstant(_adonthell)
3691label_AUTO_HEIGHT = _adonthell.label_AUTO_HEIGHT
3692
3693_adonthell.label_AUTO_SIZE_swigconstant(_adonthell)
3694label_AUTO_SIZE = _adonthell.label_AUTO_SIZE
3695class label(image):
3696    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3697    __repr__ = _swig_repr
3698
3699    def __init__(self, *args):
3700        this = _adonthell.new_label(*args)
3701        try:
3702            self.this.append(this)
3703        except Exception:
3704            self.this = this
3705
3706    def text_string(self, *args):
3707        return _adonthell.label_text_string(self, *args)
3708
3709    def text_char(self, *args):
3710        return _adonthell.label_text_char(self, *args)
3711
3712    def set_text(self, *args):
3713        return _adonthell.label_set_text(self, *args)
3714
3715    def add_text(self, *args):
3716        return _adonthell.label_add_text(self, *args)
3717
3718    def set_font(self, *args):
3719        return _adonthell.label_set_font(self, *args)
3720
3721    def set_form(self, *args):
3722        return _adonthell.label_set_form(self, *args)
3723
3724    def set_cursor_visible(self, *args):
3725        return _adonthell.label_set_cursor_visible(self, *args)
3726
3727    def set_cursor_moveable(self, *args):
3728        return _adonthell.label_set_cursor_moveable(self, *args)
3729
3730    def resize(self, *args):
3731        return _adonthell.label_resize(self, *args)
3732
3733    def update(self, *args):
3734        return _adonthell.label_update(self, *args)
3735
3736    def input_update(self, *args):
3737        return _adonthell.label_input_update(self, *args)
3738    __swig_destroy__ = _adonthell.delete_label
3739    __del__ = lambda self: None
3740label_swigregister = _adonthell.label_swigregister
3741label_swigregister(label)
3742
3743class win_label(label, win_base):
3744    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3745    __repr__ = _swig_repr
3746
3747    def __init__(self, *args):
3748        this = _adonthell.new_win_label(*args)
3749        try:
3750            self.this.append(this)
3751        except Exception:
3752            self.this = this
3753    __swig_destroy__ = _adonthell.delete_win_label
3754    __del__ = lambda self: None
3755
3756    def draw(self, *args):
3757        return _adonthell.win_label_draw(self, *args)
3758
3759    def update(self, *args):
3760        return _adonthell.win_label_update(self, *args)
3761
3762    def input_update(self, *args):
3763        return _adonthell.win_label_input_update(self, *args)
3764
3765    def set_brightness(self, *args):
3766        return _adonthell.win_label_set_brightness(self, *args)
3767
3768    def set_trans(self, *args):
3769        return _adonthell.win_label_set_trans(self, *args)
3770
3771    def pack(self, *args):
3772        return _adonthell.win_label_pack(self, *args)
3773
3774    def set_auto_refresh(self, *args):
3775        return _adonthell.win_label_set_auto_refresh(self, *args)
3776win_label_swigregister = _adonthell.win_label_swigregister
3777win_label_swigregister(win_label)
3778
3779class label_input(label):
3780    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3781    __repr__ = _swig_repr
3782
3783    def input_update(self, *args):
3784        return _adonthell.label_input_input_update(self, *args)
3785
3786    def __init__(self, *args):
3787        this = _adonthell.new_label_input(*args)
3788        try:
3789            self.this.append(this)
3790        except Exception:
3791            self.this = this
3792    __swig_destroy__ = _adonthell.delete_label_input
3793    __del__ = lambda self: None
3794label_input_swigregister = _adonthell.label_input_swigregister
3795label_input_swigregister(label_input)
3796
3797class win_write(label_input, win_base):
3798    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3799    __repr__ = _swig_repr
3800
3801    def __init__(self, *args):
3802        this = _adonthell.new_win_write(*args)
3803        try:
3804            self.this.append(this)
3805        except Exception:
3806            self.this = this
3807    __swig_destroy__ = _adonthell.delete_win_write
3808    __del__ = lambda self: None
3809
3810    def draw(self, *args):
3811        return _adonthell.win_write_draw(self, *args)
3812
3813    def update(self, *args):
3814        return _adonthell.win_write_update(self, *args)
3815
3816    def input_update(self, *args):
3817        return _adonthell.win_write_input_update(self, *args)
3818
3819    def set_brightness(self, *args):
3820        return _adonthell.win_write_set_brightness(self, *args)
3821
3822    def set_trans(self, *args):
3823        return _adonthell.win_write_set_trans(self, *args)
3824
3825    def pack(self, *args):
3826        return _adonthell.win_write_pack(self, *args)
3827
3828    def set_auto_refresh(self, *args):
3829        return _adonthell.win_write_set_auto_refresh(self, *args)
3830win_write_swigregister = _adonthell.win_write_swigregister
3831win_write_swigregister(win_write)
3832
3833class win_mapview(mapview, win_base):
3834    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3835    __repr__ = _swig_repr
3836
3837    def __init__(self, *args):
3838        this = _adonthell.new_win_mapview(*args)
3839        try:
3840            self.this.append(this)
3841        except Exception:
3842            self.this = this
3843    __swig_destroy__ = _adonthell.delete_win_mapview
3844    __del__ = lambda self: None
3845
3846    def draw(self, *args):
3847        return _adonthell.win_mapview_draw(self, *args)
3848
3849    def update(self, *args):
3850        return _adonthell.win_mapview_update(self, *args)
3851
3852    def input_update(self, *args):
3853        return _adonthell.win_mapview_input_update(self, *args)
3854
3855    def set_brightness(self, *args):
3856        return _adonthell.win_mapview_set_brightness(self, *args)
3857
3858    def set_trans(self, *args):
3859        return _adonthell.win_mapview_set_trans(self, *args)
3860
3861    def pack(self, *args):
3862        return _adonthell.win_mapview_pack(self, *args)
3863
3864    def set_auto_refresh(self, *args):
3865        return _adonthell.win_mapview_set_auto_refresh(self, *args)
3866win_mapview_swigregister = _adonthell.win_mapview_swigregister
3867win_mapview_swigregister(win_mapview)
3868
3869class win_scrollbar(object):
3870    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3871    __repr__ = _swig_repr
3872
3873    def __init__(self, *args):
3874        this = _adonthell.new_win_scrollbar(*args)
3875        try:
3876            self.this.append(this)
3877        except Exception:
3878            self.this = this
3879    __swig_destroy__ = _adonthell.delete_win_scrollbar
3880    __del__ = lambda self: None
3881
3882    def update_bar(self, *args):
3883        return _adonthell.win_scrollbar_update_bar(self, *args)
3884
3885    def load(self, *args):
3886        return _adonthell.win_scrollbar_load(self, *args)
3887
3888    def update_back(self, *args):
3889        return _adonthell.win_scrollbar_update_back(self, *args)
3890
3891    def destroy(self, *args):
3892        return _adonthell.win_scrollbar_destroy(self, *args)
3893
3894    def set_scrollbar(self, *args):
3895        return _adonthell.win_scrollbar_set_scrollbar(self, *args)
3896
3897    def set_visible_scrollbar(self, *args):
3898        return _adonthell.win_scrollbar_set_visible_scrollbar(self, *args)
3899
3900    def set_trans_scrollbar(self, *args):
3901        return _adonthell.win_scrollbar_set_trans_scrollbar(self, *args)
3902
3903    def set_brightness_scrollbar(self, *args):
3904        return _adonthell.win_scrollbar_set_brightness_scrollbar(self, *args)
3905
3906    def draw(self, *args):
3907        return _adonthell.win_scrollbar_draw(self, *args)
3908
3909    def height_bar(self, *args):
3910        return _adonthell.win_scrollbar_height_bar(self, *args)
3911win_scrollbar_swigregister = _adonthell.win_scrollbar_swigregister
3912win_scrollbar_swigregister(win_scrollbar)
3913
3914
3915_adonthell.win_scroll_PAD_DEFAULT_swigconstant(_adonthell)
3916win_scroll_PAD_DEFAULT = _adonthell.win_scroll_PAD_DEFAULT
3917class win_scroll(win_container, win_scrollbar):
3918    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3919    __repr__ = _swig_repr
3920
3921    def __init__(self, *args):
3922        this = _adonthell.new_win_scroll(*args)
3923        try:
3924            self.this.append(this)
3925        except Exception:
3926            self.this = this
3927
3928    def amplitude(self, *args):
3929        return _adonthell.win_scroll_amplitude(self, *args)
3930
3931    def add(self, *args):
3932        return _adonthell.win_scroll_add(self, *args)
3933
3934    def remove(self, *args):
3935        return _adonthell.win_scroll_remove(self, *args)
3936
3937    def remove_all(self, *args):
3938        return _adonthell.win_scroll_remove_all(self, *args)
3939
3940    def resize(self, *args):
3941        return _adonthell.win_scroll_resize(self, *args)
3942
3943    def destroy(self, *args):
3944        return _adonthell.win_scroll_destroy(self, *args)
3945
3946    def draw(self, *args):
3947        return _adonthell.win_scroll_draw(self, *args)
3948
3949    def update(self, *args):
3950        return _adonthell.win_scroll_update(self, *args)
3951
3952    def input_update(self, *args):
3953        return _adonthell.win_scroll_input_update(self, *args)
3954
3955    def set_space_between_border(self, *args):
3956        return _adonthell.win_scroll_set_space_between_border(self, *args)
3957
3958    def set_space_between_object(self, *args):
3959        return _adonthell.win_scroll_set_space_between_object(self, *args)
3960
3961    def cursor_y(self, *args):
3962        return _adonthell.win_scroll_cursor_y(self, *args)
3963
3964    def set_auto_scrollbar(self, *args):
3965        return _adonthell.win_scroll_set_auto_scrollbar(self, *args)
3966
3967    def set_auto_refresh(self, *args):
3968        return _adonthell.win_scroll_set_auto_refresh(self, *args)
3969
3970    def set_brightness(self, *args):
3971        return _adonthell.win_scroll_set_brightness(self, *args)
3972
3973    def set_trans(self, *args):
3974        return _adonthell.win_scroll_set_trans(self, *args)
3975    __swig_destroy__ = _adonthell.delete_win_scroll
3976    __del__ = lambda self: None
3977win_scroll_swigregister = _adonthell.win_scroll_swigregister
3978win_scroll_swigregister(win_scroll)
3979
3980
3981_adonthell.win_select_MODE_BORDER_swigconstant(_adonthell)
3982win_select_MODE_BORDER = _adonthell.win_select_MODE_BORDER
3983
3984_adonthell.win_select_MODE_BRIGHTNESS_swigconstant(_adonthell)
3985win_select_MODE_BRIGHTNESS = _adonthell.win_select_MODE_BRIGHTNESS
3986class win_select(win_scroll):
3987    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3988    __repr__ = _swig_repr
3989
3990    def __init__(self, *args):
3991        this = _adonthell.new_win_select(*args)
3992        try:
3993            self.this.append(this)
3994        except Exception:
3995            self.this = this
3996
3997    def input_update(self, *args):
3998        return _adonthell.win_select_input_update(self, *args)
3999
4000    def add(self, *args):
4001        return _adonthell.win_select_add(self, *args)
4002
4003    def remove(self, *args):
4004        return _adonthell.win_select_remove(self, *args)
4005
4006    def remove_all(self, *args):
4007        return _adonthell.win_select_remove_all(self, *args)
4008
4009    def set_mode(self, *args):
4010        return _adonthell.win_select_set_mode(self, *args)
4011
4012    def set_border_select(self, *args):
4013        return _adonthell.win_select_set_border_select(self, *args)
4014
4015    def set_circle(self, *args):
4016        return _adonthell.win_select_set_circle(self, *args)
4017
4018    def is_circle(self, *args):
4019        return _adonthell.win_select_is_circle(self, *args)
4020
4021    def set_default(self, *args):
4022        return _adonthell.win_select_set_default(self, *args)
4023
4024    def set_default_object(self, *args):
4025        return _adonthell.win_select_set_default_object(self, *args)
4026
4027    def set_default_position(self, *args):
4028        return _adonthell.win_select_set_default_position(self, *args)
4029
4030    def get_selected_object(self, *args):
4031        return _adonthell.win_select_get_selected_object(self, *args)
4032
4033    def get_selected_position(self, *args):
4034        return _adonthell.win_select_get_selected_position(self, *args)
4035    __swig_destroy__ = _adonthell.delete_win_select
4036    __del__ = lambda self: None
4037win_select_swigregister = _adonthell.win_select_swigregister
4038win_select_swigregister(win_select)
4039
4040class win_theme(object):
4041    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4042    __repr__ = _swig_repr
4043
4044    def __init__(self, *args):
4045        this = _adonthell.new_win_theme(*args)
4046        try:
4047            self.this.append(this)
4048        except Exception:
4049            self.this = this
4050    __swig_destroy__ = _adonthell.delete_win_theme
4051    __del__ = lambda self: None
4052
4053    def destroy(self, *args):
4054        return _adonthell.win_theme_destroy(self, *args)
4055win_theme_swigregister = _adonthell.win_theme_swigregister
4056win_theme_swigregister(win_theme)
4057
4058class text_bubble(win_label):
4059    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4060    __repr__ = _swig_repr
4061
4062    def __init__(self, *args):
4063        this = _adonthell.new_text_bubble(*args)
4064        try:
4065            self.this.append(this)
4066        except Exception:
4067            self.this = this
4068    __swig_destroy__ = _adonthell.delete_text_bubble
4069    __del__ = lambda self: None
4070
4071    def update(self, *args):
4072        return _adonthell.text_bubble_update(self, *args)
4073
4074    def remaining(self, *args):
4075        return _adonthell.text_bubble_remaining(self, *args)
4076text_bubble_swigregister = _adonthell.text_bubble_swigregister
4077text_bubble_swigregister(text_bubble)
4078
4079
4080_adonthell.MAX_COLOR_swigconstant(_adonthell)
4081MAX_COLOR = _adonthell.MAX_COLOR
4082class dialog_screen(win_container):
4083    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4084    __repr__ = _swig_repr
4085
4086    def __init__(self, *args):
4087        this = _adonthell.new_dialog_screen(*args)
4088        try:
4089            self.this.append(this)
4090        except Exception:
4091            self.this = this
4092    __swig_destroy__ = _adonthell.delete_dialog_screen
4093    __del__ = lambda self: None
4094
4095    def init(self, *args):
4096        return _adonthell.dialog_screen_init(self, *args)
4097
4098    def set_portrait(self, *args):
4099        return _adonthell.dialog_screen_set_portrait(self, *args)
4100
4101    def set_name(self, *args):
4102        return _adonthell.dialog_screen_set_name(self, *args)
4103
4104    def set_npc(self, *args):
4105        return _adonthell.dialog_screen_set_npc(self, *args)
4106
4107    def update(self, *args):
4108        return _adonthell.dialog_screen_update(self, *args)
4109
4110    def run(self, *args):
4111        return _adonthell.dialog_screen_run(self, *args)
4112dialog_screen_swigregister = _adonthell.dialog_screen_swigregister
4113dialog_screen_swigregister(dialog_screen)
4114
4115
4116_adonthell.LOAD_SCREEN_swigconstant(_adonthell)
4117LOAD_SCREEN = _adonthell.LOAD_SCREEN
4118
4119_adonthell.SAVE_SCREEN_swigconstant(_adonthell)
4120SAVE_SCREEN = _adonthell.SAVE_SCREEN
4121class data_screen(win_container):
4122    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4123    __repr__ = _swig_repr
4124
4125    def __init__(self, *args):
4126        this = _adonthell.new_data_screen(*args)
4127        try:
4128            self.this.append(this)
4129        except Exception:
4130            self.this = this
4131    __swig_destroy__ = _adonthell.delete_data_screen
4132    __del__ = lambda self: None
4133
4134    def update(self, *args):
4135        return _adonthell.data_screen_update(self, *args)
4136
4137    def get_result(self, *args):
4138        return _adonthell.data_screen_get_result(self, *args)
4139data_screen_swigregister = _adonthell.data_screen_swigregister
4140data_screen_swigregister(data_screen)
4141
4142class gamedata(object):
4143    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4144    __repr__ = _swig_repr
4145
4146    def __init__(self, *args):
4147        this = _adonthell.new_gamedata(*args)
4148        try:
4149            self.this.append(this)
4150        except Exception:
4151            self.this = this
4152    __swig_destroy__ = _adonthell.delete_gamedata
4153    __del__ = lambda self: None
4154
4155    def put(self, *args):
4156        return _adonthell.gamedata_put(self, *args)
4157
4158    def get(self, *args):
4159        return _adonthell.gamedata_get(self, *args)
4160
4161    def directory(self, *args):
4162        return _adonthell.gamedata_directory(self, *args)
4163
4164    def description(self, *args):
4165        return _adonthell.gamedata_description(self, *args)
4166
4167    def location(self, *args):
4168        return _adonthell.gamedata_location(self, *args)
4169
4170    def gametime(self, *args):
4171        return _adonthell.gamedata_gametime(self, *args)
4172
4173    def timestamp(self, *args):
4174        return _adonthell.gamedata_timestamp(self, *args)
4175
4176    def set_description(self, *args):
4177        return _adonthell.gamedata_set_description(self, *args)
4178
4179    def set_directory(self, *args):
4180        return _adonthell.gamedata_set_directory(self, *args)
4181
4182    def set_gametime(self, *args):
4183        return _adonthell.gamedata_set_gametime(self, *args)
4184    init = staticmethod(_adonthell.gamedata_init)
4185    cleanup = staticmethod(_adonthell.gamedata_cleanup)
4186    load_characters = staticmethod(_adonthell.gamedata_load_characters)
4187    load_quests = staticmethod(_adonthell.gamedata_load_quests)
4188    load_mapengine = staticmethod(_adonthell.gamedata_load_mapengine)
4189    load_audio = staticmethod(_adonthell.gamedata_load_audio)
4190    load_achievements = staticmethod(_adonthell.gamedata_load_achievements)
4191    load = staticmethod(_adonthell.gamedata_load)
4192    load_newest = staticmethod(_adonthell.gamedata_load_newest)
4193    save = staticmethod(_adonthell.gamedata_save)
4194    unload = staticmethod(_adonthell.gamedata_unload)
4195    next_save = staticmethod(_adonthell.gamedata_next_save)
4196    user_data_dir = staticmethod(_adonthell.gamedata_user_data_dir)
4197    game_data_dir = staticmethod(_adonthell.gamedata_game_data_dir)
4198    get_saved_game = staticmethod(_adonthell.gamedata_get_saved_game)
4199    quests = staticmethod(_adonthell.gamedata_quests)
4200    player = staticmethod(_adonthell.gamedata_player)
4201    get_character = staticmethod(_adonthell.gamedata_get_character)
4202    get_quest = staticmethod(_adonthell.gamedata_get_quest)
4203    characters = staticmethod(_adonthell.gamedata_characters)
4204    engine = staticmethod(_adonthell.gamedata_engine)
4205gamedata_swigregister = _adonthell.gamedata_swigregister
4206gamedata_swigregister(gamedata)
4207
4208def gamedata_init(*args):
4209    return _adonthell.gamedata_init(*args)
4210gamedata_init = _adonthell.gamedata_init
4211
4212def gamedata_cleanup(*args):
4213    return _adonthell.gamedata_cleanup(*args)
4214gamedata_cleanup = _adonthell.gamedata_cleanup
4215
4216def gamedata_load_characters(*args):
4217    return _adonthell.gamedata_load_characters(*args)
4218gamedata_load_characters = _adonthell.gamedata_load_characters
4219
4220def gamedata_load_quests(*args):
4221    return _adonthell.gamedata_load_quests(*args)
4222gamedata_load_quests = _adonthell.gamedata_load_quests
4223
4224def gamedata_load_mapengine(*args):
4225    return _adonthell.gamedata_load_mapengine(*args)
4226gamedata_load_mapengine = _adonthell.gamedata_load_mapengine
4227
4228def gamedata_load_audio(*args):
4229    return _adonthell.gamedata_load_audio(*args)
4230gamedata_load_audio = _adonthell.gamedata_load_audio
4231
4232def gamedata_load_achievements(*args):
4233    return _adonthell.gamedata_load_achievements(*args)
4234gamedata_load_achievements = _adonthell.gamedata_load_achievements
4235
4236def gamedata_load(*args):
4237    return _adonthell.gamedata_load(*args)
4238gamedata_load = _adonthell.gamedata_load
4239
4240def gamedata_load_newest(*args):
4241    return _adonthell.gamedata_load_newest(*args)
4242gamedata_load_newest = _adonthell.gamedata_load_newest
4243
4244def gamedata_save(*args):
4245    return _adonthell.gamedata_save(*args)
4246gamedata_save = _adonthell.gamedata_save
4247
4248def gamedata_unload(*args):
4249    return _adonthell.gamedata_unload(*args)
4250gamedata_unload = _adonthell.gamedata_unload
4251
4252def gamedata_next_save(*args):
4253    return _adonthell.gamedata_next_save(*args)
4254gamedata_next_save = _adonthell.gamedata_next_save
4255
4256def gamedata_user_data_dir(*args):
4257    return _adonthell.gamedata_user_data_dir(*args)
4258gamedata_user_data_dir = _adonthell.gamedata_user_data_dir
4259
4260def gamedata_game_data_dir(*args):
4261    return _adonthell.gamedata_game_data_dir(*args)
4262gamedata_game_data_dir = _adonthell.gamedata_game_data_dir
4263
4264def gamedata_get_saved_game(*args):
4265    return _adonthell.gamedata_get_saved_game(*args)
4266gamedata_get_saved_game = _adonthell.gamedata_get_saved_game
4267
4268def gamedata_quests(*args):
4269    return _adonthell.gamedata_quests(*args)
4270gamedata_quests = _adonthell.gamedata_quests
4271
4272def gamedata_player(*args):
4273    return _adonthell.gamedata_player(*args)
4274gamedata_player = _adonthell.gamedata_player
4275
4276def gamedata_get_character(*args):
4277    return _adonthell.gamedata_get_character(*args)
4278gamedata_get_character = _adonthell.gamedata_get_character
4279
4280def gamedata_get_quest(*args):
4281    return _adonthell.gamedata_get_quest(*args)
4282gamedata_get_quest = _adonthell.gamedata_get_quest
4283
4284def gamedata_characters(*args):
4285    return _adonthell.gamedata_characters(*args)
4286gamedata_characters = _adonthell.gamedata_characters
4287
4288def gamedata_engine(*args):
4289    return _adonthell.gamedata_engine(*args)
4290gamedata_engine = _adonthell.gamedata_engine
4291
4292
4293_adonthell.CONFIG_swigconstant(_adonthell)
4294CONFIG = _adonthell.CONFIG
4295
4296_adonthell.USER_DATA_swigconstant(_adonthell)
4297USER_DATA = _adonthell.USER_DATA
4298class game(object):
4299    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4300    __repr__ = _swig_repr
4301    User_data_dir = _swig_property(_adonthell.game_User_data_dir_get, _adonthell.game_User_data_dir_set)
4302    Global_data_dir = _swig_property(_adonthell.game_Global_data_dir_get, _adonthell.game_Global_data_dir_set)
4303    Game_data_dir = _swig_property(_adonthell.game_Game_data_dir_get, _adonthell.game_Game_data_dir_set)
4304    init = staticmethod(_adonthell.game_init)
4305    set_game_data_dir = staticmethod(_adonthell.game_set_game_data_dir)
4306    user_data_dir = staticmethod(_adonthell.game_user_data_dir)
4307    global_data_dir = staticmethod(_adonthell.game_global_data_dir)
4308    game_data_dir = staticmethod(_adonthell.game_game_data_dir)
4309    find_file = staticmethod(_adonthell.game_find_file)
4310    find_directory = staticmethod(_adonthell.game_find_directory)
4311
4312    def __init__(self, *args):
4313        this = _adonthell.new_game(*args)
4314        try:
4315            self.this.append(this)
4316        except Exception:
4317            self.this = this
4318    __swig_destroy__ = _adonthell.delete_game
4319    __del__ = lambda self: None
4320game_swigregister = _adonthell.game_swigregister
4321game_swigregister(game)
4322
4323def game_init(*args):
4324    return _adonthell.game_init(*args)
4325game_init = _adonthell.game_init
4326
4327def game_set_game_data_dir(*args):
4328    return _adonthell.game_set_game_data_dir(*args)
4329game_set_game_data_dir = _adonthell.game_set_game_data_dir
4330
4331def game_user_data_dir(*args):
4332    return _adonthell.game_user_data_dir(*args)
4333game_user_data_dir = _adonthell.game_user_data_dir
4334
4335def game_global_data_dir(*args):
4336    return _adonthell.game_global_data_dir(*args)
4337game_global_data_dir = _adonthell.game_global_data_dir
4338
4339def game_game_data_dir(*args):
4340    return _adonthell.game_game_data_dir(*args)
4341game_game_data_dir = _adonthell.game_game_data_dir
4342
4343def game_find_file(*args):
4344    return _adonthell.game_find_file(*args)
4345game_find_file = _adonthell.game_find_file
4346
4347def game_find_directory(*args):
4348    return _adonthell.game_find_directory(*args)
4349game_find_directory = _adonthell.game_find_directory
4350
4351class nls(object):
4352    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4353    __repr__ = _swig_repr
4354    init = staticmethod(_adonthell.nls_init)
4355    set_language = staticmethod(_adonthell.nls_set_language)
4356    translate = staticmethod(_adonthell.nls_translate)
4357
4358    def __init__(self, *args):
4359        this = _adonthell.new_nls(*args)
4360        try:
4361            self.this.append(this)
4362        except Exception:
4363            self.this = this
4364    __swig_destroy__ = _adonthell.delete_nls
4365    __del__ = lambda self: None
4366nls_swigregister = _adonthell.nls_swigregister
4367nls_swigregister(nls)
4368
4369def nls_init(*args):
4370    return _adonthell.nls_init(*args)
4371nls_init = _adonthell.nls_init
4372
4373def nls_set_language(*args):
4374    return _adonthell.nls_set_language(*args)
4375nls_set_language = _adonthell.nls_set_language
4376
4377def nls_translate(*args):
4378    return _adonthell.nls_translate(*args)
4379nls_translate = _adonthell.nls_translate
4380
4381class config(object):
4382    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4383    __repr__ = _swig_repr
4384
4385    def __init__(self, *args):
4386        this = _adonthell.new_config(*args)
4387        try:
4388            self.this.append(this)
4389        except Exception:
4390            self.this = this
4391
4392    def parse_arguments(self, *args):
4393        return _adonthell.config_parse_arguments(self, *args)
4394
4395    def write_adonthellrc(self, *args):
4396        return _adonthell.config_write_adonthellrc(self, *args)
4397
4398    def read_adonthellrc(self, *args):
4399        return _adonthell.config_read_adonthellrc(self, *args)
4400
4401    def get_adonthellrc(self, *args):
4402        return _adonthell.config_get_adonthellrc(self, *args)
4403    language = _swig_property(_adonthell.config_language_get, _adonthell.config_language_set)
4404    font = _swig_property(_adonthell.config_font_get, _adonthell.config_font_set)
4405    game_name = _swig_property(_adonthell.config_game_name_get, _adonthell.config_game_name_set)
4406    gamedir = _swig_property(_adonthell.config_gamedir_get, _adonthell.config_gamedir_set)
4407    screen_mode = _swig_property(_adonthell.config_screen_mode_get, _adonthell.config_screen_mode_set)
4408    display = _swig_property(_adonthell.config_display_get, _adonthell.config_display_set)
4409    quick_load = _swig_property(_adonthell.config_quick_load_get, _adonthell.config_quick_load_set)
4410    audio_channels = _swig_property(_adonthell.config_audio_channels_get, _adonthell.config_audio_channels_set)
4411    audio_resolution = _swig_property(_adonthell.config_audio_resolution_get, _adonthell.config_audio_resolution_set)
4412    audio_sample_rate = _swig_property(_adonthell.config_audio_sample_rate_get, _adonthell.config_audio_sample_rate_set)
4413    audio_volume = _swig_property(_adonthell.config_audio_volume_get, _adonthell.config_audio_volume_set)
4414    __swig_destroy__ = _adonthell.delete_config
4415    __del__ = lambda self: None
4416config_swigregister = _adonthell.config_swigregister
4417config_swigregister(config)
4418
4419class achievements(object):
4420    thisown = _swig_property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4421
4422    def __init__(self, *args, **kwargs):
4423        raise AttributeError("No constructor defined")
4424    __repr__ = _swig_repr
4425    create = staticmethod(_adonthell.achievements_create)
4426    update = staticmethod(_adonthell.achievements_update)
4427    num_achievements = staticmethod(_adonthell.achievements_num_achievements)
4428    num_unlocked = staticmethod(_adonthell.achievements_num_unlocked)
4429    is_unlocked = staticmethod(_adonthell.achievements_is_unlocked)
4430    achievement_id = staticmethod(_adonthell.achievements_achievement_id)
4431    py_signal_connect = staticmethod(_adonthell.achievements_py_signal_connect)
4432achievements_swigregister = _adonthell.achievements_swigregister
4433achievements_swigregister(achievements)
4434
4435def achievements_create(*args):
4436    return _adonthell.achievements_create(*args)
4437achievements_create = _adonthell.achievements_create
4438
4439def achievements_update(*args):
4440    return _adonthell.achievements_update(*args)
4441achievements_update = _adonthell.achievements_update
4442
4443def achievements_num_achievements(*args):
4444    return _adonthell.achievements_num_achievements(*args)
4445achievements_num_achievements = _adonthell.achievements_num_achievements
4446
4447def achievements_num_unlocked(*args):
4448    return _adonthell.achievements_num_unlocked(*args)
4449achievements_num_unlocked = _adonthell.achievements_num_unlocked
4450
4451def achievements_is_unlocked(*args):
4452    return _adonthell.achievements_is_unlocked(*args)
4453achievements_is_unlocked = _adonthell.achievements_is_unlocked
4454
4455def achievements_achievement_id(*args):
4456    return _adonthell.achievements_achievement_id(*args)
4457achievements_achievement_id = _adonthell.achievements_achievement_id
4458
4459def achievements_py_signal_connect(*args):
4460    return _adonthell.achievements_py_signal_connect(*args)
4461achievements_py_signal_connect = _adonthell.achievements_py_signal_connect
4462
4463
4464
4465