summaryrefslogtreecommitdiff
path: root/IntroductionToBLR.md
blob: 77acbb8dd4a5e4009a51df78ec3350da9fe52969 (plain) (blame)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Introduction #

This is a _very simple_ game, just move around and avoid collisions.

# Requirements #
  * CPU: 1GHz.
  * RAM: 256MiB.
  * GPU&VRAM: With DirectX 9+/OpenGL 1.2+ support.
  * OS: Windows XP+ & DirectX 9 / Linux kernel 2.6+ & OpenGL 1.2+
  * Recommended environment:
  * CPU: Lots of cores.
  * GPU&VRAM: Very fast graphic rendering.
  * Sound: Ability to run OpenAL software version.

## More Recommends... ##
  * SERIOUSLY, NO Trypophobia!
  * Cheat Engine(skip levels, obtain more Clear Range's, and more...)
  * Some editors or compilers(If you find this impossible and want to make it easier)
  * (Additionally for the last one)Ability to read non human-readable code.
  * ~~Achromatopsia~~

# Build and Run #

**If you're using Windows, it's recommended to download the pre-compiled**
**binary(which is built with mingw-w64) shown at the project home.**

However, that build might not be the latest revision. So some part of this text may be unavailable in the version above.

Additionally, all optimizations have been disabled for the mingw-w64 build due to bugs in mingw-w64 (or BLR).

## If you want to build from source ##
  1. checkout from svn.
  1. Get required sdks.
  1. Use Visual Studio(Windows) or Code::Blocks(Linux), create a project, or write a Makefile yourself. This project doesn't come with a Makefile yet.
  1. Hit build!
  1. If it failed, check step 2, then repeat step 4...

**Important!!:** If you managed to build a Windows version, you still have to use
the two `*`.dtp files in the official released version. They are too big to be uploaded
to this repo.

## Running BLR ##

Minimum required directory struct:
  * The executable
  * BLRData.dtp & BLRMusic.dtp(Windows)...
  * ...or the whole "Resource" folder from the source distribution(Linux).

If everything is okay, just run the executable to start BLR.

For command line options, see [IntroductionToBLR#Command\_Line\_Options](IntroductionToBLR#Command_Line_Options.md).

# Controls #

Use arrow keys to navigate in the menus. Z for selecting/changing values.

In the options menu and the player preference menu, you can also use left key and right key for changing values.

However the square can only be controlled with keyboard,
joystick and mouse are not supported yet. (And may not be supported in the future)

Arrow keys: Move.

Shift: Slow the square down.

Z or X (Modify it in Options): Hit to call Clear Range directly, hold
to charge for CLR.

Changing other key bindings is not supported yet.

# Menus #
## Main Menu ##
|Start                 | Select a mode and start the game.            |
|:---------------------|:---------------------------------------------|
|Highscores            | View highscores(Currently out of maintenance)|
|Options               | Settings and Options                         |
|About                 | A dull credits list.                         |
|Exit                  | Parents are coming!!                         |

## Game Modes ##
  * Classic
> Classic Mode. The game ends instantly if you get a collision.

> However you can choose to continue...

  * Assessment Mode
> You are the frog being boiled (instead of being frozen).

> Every levels get harder as time goes.

> You'll be brought to the next part if you had a collision.

  * Free Play Mode
> Free play. You'll never die!

> Believe it or not, this mode will waste less time...
## Options ##
  * Fullscreen
> Change if the game should be run in fullscreen mode.
> The change will take effect after restarting the game.

> P.S.: You can modify this without restarting the game by pressing
> alt+enter. However this won't be written to config.

  * VSync
> Use VSync or not.

> This game should run at ~60FPS. If your screen refresh rate is not 60,
> set this to off.

  * Clear Range Key
> Change the key for Clear Range.

  * Resolution
> Choose a resolution that BLR uses.

> The changes will take effect after restarting BLR.

> The game was designed to run under 800x600, which is its native resolution,
> however it also look well under other provided resolutions.

> If fullscreen is on, this option should use with causion. Some graphic cards/monitors
> don't support 960x720 in fullscreen mode...

  * Player Profile
> Modify the player's attribute. Available options are:
    * Moving Speed: player's moving speed
    * Precise Moving Speed: player's moving speed while shift is pressed
    * Clear Range Bonus: Get more Clear Range's.
    * Clear Range Mode: Change Clear Range's mode.
> Use left/right arrow keys to edit the value.

> Your settings will be limited by something called "Ability Point", which
> is shown below. Changing Clear Range Mode doesn't affect Ability Point.

# Gameplay #
> As mentioned above, you just move around and avoid collisions.

> However it might be harder than it looks...

> If you've never played BLR, go through the built-in help first(assessible
> in the main menu).

> If you're not sure, try the Free Play Mode first.

# Score System #
> The score system is also very "simple".
  * You'll get a few points if you survived a frame.
  * When a new bullet is generated, you'll get some points.
  * If you get a collision, you'll lose _lots of_ points. In contrast, if you get a semi-collision, you'll get a few points.
  * The "score bullets" give you extra points. They are usually generated when a Clear Range is used or a bullet is removed.
  * There's a multiplier system in this game. All your newly-gained score will be multiplied by the multiplier before adding into the score.
  * The multiplier may increase itself if there are no collisions in 30 seconds. The increment will also increase if there are combos.
  * The multiplier will be divided by 2 if there's a collision.
  * A semi-collision or a green score bullet will increase the multiplier.
  * If there're no semi-collisions in a second and the multiplier is greater than 1, the multiplier will start decreasing.
  * The minimum multiplier is 0.1.
# Command Line Options #
You can get the full help text by running BLR with "--help".

Here is a list of available command line options.

|--help           |Print command line usage and exit.                                         |
|:----------------|:--------------------------------------------------------------------------|
|--version        |Print version and exit.                                                    |
|--start=x,y      |Start free play mode directly from level x part y. The part must be valid. |
|--nosound        |Forcibly use no sound.                                                     |
|--fullscreen=1/0 |Forcibly use fullscreen/windowed. This will override your configuration.   |
|--vidmode=0~4    |Forcibly use specific video mode instead the one in the configuration.     |
|--firststartup   |Forcibly run first start up. The score file will be preserved if exist.    |
|--fast           |Fast mode. All levels are two times shorter.                               |
|--logfile=...    |Use an alternate log file name instead of the default "BLRLOG.txt".        |
|--nohideconsole  |Do not hide console (Windows version only).                                |