1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
=encoding utf8
=head1 NAME
colobot - educational programming strategy game
=head1 SYNOPSIS
B<colobot>
=head1 DESCRIPTION
Colobot (Colonize with Bots) is an educational game aiming to teach
programming through entertainment. You are playing as an astronaut on a
journey with robot helpers to find a planet for colonization. It features 3D
real-time graphics and a C++ and Java-like, object-oriented language, CBOT,
which can be used to program the robots available in the game.
=head1 OPTIONS
=over 8
=item B<-help>
Display a short help text
=item B<-resolution> I<WxH>
Set runtime screen resolution
=item B<-graphics> I<default>|I<auto>|I<opengl>|I<gl14>|I<gl21>|I<gl33>
Changes graphics device
=item B<-glversion> I<default>|I<#.#>
Sets OpenGL context version to use.
=item B<-glprofile> I<default>|I<core>|I<compatibility>|I<opengles>
Sets OpenGL context profile to use.
=back
=head1 RUNTIME PATH OVERRIDES
=over 8
=item B<-langdir> F</path/to/lang/>
Set custom language directory path
=item B<-datadir> F</path/to/data/>
Set custom data directory path
=item B<-savedir> F</path/to/save/>
Set custom save directory path (must be writable)
=item B<-mod> F</path/to/mods/>
Set datadir mod path
=back
=head1 DEBUG OPTIONS
=over 8
=item B<-loglevel> I<trace>|I<debug>|I<info>|I<warn>|I<error>|I<none>.
Set log level.
=item B<-debug> I<all>|I<event>|I<models>|...
Enable debug mode (more info printed in logs). Possible values are as follows, as well as any comma-separated combination
=over 10
=item sys_events
System events
=item update_events
Update events
=item app_events
Application events
=item events
All above events
=item models
Models-related debugging
=item all
All above debugging statements
=back
=item B<-headless>
Run in headless mode - disables graphics, sound and user interaction
=item B<-runscene> I<scenecodename>
Run given scene on start (skip menus)
=item B<-scenetest>
Win every mission right after it's loaded
=back
=head1 ENVIRONMENT
=over 6
=item LC_MESSAGES
Used to determine the runtime language.
=back
=head1 AUTHOR
This manpage was written by Didier Raboud <S<odyx@debian.org>>.
|