]> git.jsancho.org Git - lugaru.git/log
lugaru.git
7 years agoAdded hasClaws property for PersonType
Côme Chilliet [Fri, 21 Apr 2017 07:34:48 +0000 (09:34 +0200)]
Added hasClaws property for PersonType

7 years agoCI: Rework .gitlab-ci.yml to support a CentOS 7 build
Neal Gompa [Thu, 13 Apr 2017 13:07:02 +0000 (09:07 -0400)]
CI: Rework .gitlab-ci.yml to support a CentOS 7 build

Quite a bit of the .gitlab-ci.yml file needed to be reworked so
that the commonalities between Fedora and CentOS could be leveraged
while allowing us to swap out the differences dynamically.

Thus, we can now test commits against the GCC version we use for
release builds while continuing to use latest GCC for development
builds.

As a nice side effect, there are now much fewer invocations of DNF
to install all the needed things, so CI builds should be faster!

7 years agoMoved tempanimation init to Person constructor
Côme Chilliet [Thu, 23 Mar 2017 14:48:07 +0000 (15:48 +0100)]
Moved tempanimation init to Person constructor

7 years agoBuilding default player after PersonTypes are loaded to avoid segfault
Côme Chilliet [Mon, 20 Mar 2017 10:54:20 +0000 (11:54 +0100)]
Building default player after PersonTypes are loaded to avoid segfault

7 years agoDist: Linux: Add content ratings to AppStream appdata/metainfo file
Neal Gompa [Thu, 9 Mar 2017 13:04:51 +0000 (08:04 -0500)]
Dist: Linux: Add content ratings to AppStream appdata/metainfo file

Content ratings uses the Open Age Rating System, v1.0.

This can be tweaked using the generator: https://odrs.gnome.org/oars

7 years agoFix mismatched usage length, build fail on g++
Martin Erik Werner [Wed, 8 Mar 2017 21:51:16 +0000 (22:51 +0100)]
Fix mismatched usage length, build fail on g++

The length of const option::Descriptor usage[] is intended to be
inferred based on the initialisation in Source/main.cpp, however, the
extern declaration in Source/Game.hpp hard-codes it to 13.

Remove the hard-coded 13 in the extern declaration, in favour of the
inferred length.

This also fixes the follwoing build failure with g++ (Debian 4.9.2-10)
4.9.2:
(...)/Source/main.cpp:602:5: error: uninitialized const member ‘option::Descriptor::index’
     };
     ^
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::index’ [-Wmissing-field-initializers]
(...)/Source/main.cpp:602:5: error: uninitialized const member ‘option::Descriptor::type’
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::type’ [-Wmissing-field-initializers]
(...)/Source/main.cpp:602:5: error: uninitialized const member ‘option::Descriptor::shortopt’
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::shortopt’ [-Wmissing-field-initializers]
(...)/Source/main.cpp:602:5: error: uninitialized const member ‘option::Descriptor::longopt’
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::longopt’ [-Wmissing-field-initializers]
(...)/Source/main.cpp:602:5: error: uninitialized const member ‘option::Descriptor::check_arg’
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::check_arg’ [-Wmissing-field-initializers]
(...)/Source/main.cpp:602:5: warning: missing initializer for member ‘option::Descriptor::help’ [-Wmissing-field-initializers]
CMakeFiles/lugaru.dir/build.make:54: recipe for target 'CMakeFiles/lugaru.dir/Source/main.cpp.o' failed

Signed-off-by: Martin Erik Werner <martinerikwerner@gmail.com>
7 years agoMoved default scale and default damage tolerance to PersonType.
Côme Chilliet [Fri, 3 Mar 2017 14:27:00 +0000 (15:27 +0100)]
Moved default scale and default damage tolerance to PersonType.

Added a method for type changing in Person.

7 years agoMoved creature power to PersonType
Côme Chilliet [Sat, 25 Feb 2017 01:09:41 +0000 (02:09 +0100)]
Moved creature power to PersonType

7 years agoSet forgotten rabbit talk anim
Côme Chilliet [Sat, 25 Feb 2017 00:37:01 +0000 (01:37 +0100)]
Set forgotten rabbit talk anim

7 years agoImageIO: fix invalid conversion
Romain Naour [Sun, 12 Feb 2017 20:17:44 +0000 (21:17 +0100)]
ImageIO: fix invalid conversion

Fixes:
Source/Utils/ImageIO.cpp:125:27: error: invalid conversion from 'int' to 'boolean' [-fpermissive]
     cinfo.quantize_colors = 0;
                           ^

quantize_colors type is bool, so it must be initialized to TRUE or FALSE.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
7 years agoUsing currentFrame as much as possible
Côme Chilliet [Sun, 12 Feb 2017 19:59:06 +0000 (20:59 +0100)]
Using currentFrame as much as possible

7 years agoCMake: Define build type before configuring version header
Rémi Verschelde [Sat, 11 Feb 2017 19:34:07 +0000 (20:34 +0100)]
CMake: Define build type before configuring version header

Otherwise with no manual CMAKE_BUILD_TYPE, we end up with an
empty string.

7 years agoBump version to 1.3-dev
Rémi Verschelde [Sat, 11 Feb 2017 19:19:31 +0000 (20:19 +0100)]
Bump version to 1.3-dev

7 years agoBump version to 1.2 (stable)
Rémi Verschelde [Sat, 11 Feb 2017 19:06:30 +0000 (20:06 +0100)]
Bump version to 1.2 (stable)

7 years agoAdd release notes for version 1.2
Rémi Verschelde [Sat, 11 Feb 2017 19:04:37 +0000 (20:04 +0100)]
Add release notes for version 1.2

7 years agoclang-format: Apply to all headers
Rémi Verschelde [Sat, 11 Feb 2017 18:30:36 +0000 (19:30 +0100)]
clang-format: Apply to all headers

Apparently it had only been applied to .cpp files until now.
Also added `AccessModifierOffset: -4` in the configuration.

7 years agoDevtools: Remove obsolete skin cmds, fix docs
Rémi Verschelde [Sat, 11 Feb 2017 18:20:04 +0000 (19:20 +0100)]
Devtools: Remove obsolete skin cmds, fix docs

7 years agoDevtools: Fix toggling console out of devtools mode
Rémi Verschelde [Sat, 11 Feb 2017 17:58:06 +0000 (18:58 +0100)]
Devtools: Fix toggling console out of devtools mode

7 years agoMaps: Fix hardcoded usage of FurBW.jpg
Rémi Verschelde [Sat, 11 Feb 2017 17:52:34 +0000 (18:52 +0100)]
Maps: Fix hardcoded usage of FurBW.jpg

Part of #91.

7 years agoDevtools: Improve fixtype cmd and document it
Rémi Verschelde [Sat, 11 Feb 2017 17:50:30 +0000 (18:50 +0100)]
Devtools: Improve fixtype cmd and document it

7 years agoDevtools: Enhance ddialog command
Rémi Verschelde [Sat, 11 Feb 2017 17:04:57 +0000 (18:04 +0100)]
Devtools: Enhance ddialog command

It can now be used to delete a given dialog index, and not only
the last one. Also renamed "dialogue" to "dialog" as used in most
places.

Added some documentation about dialog devtools.

7 years agoDevtools: Fix saving player proportions
Rémi Verschelde [Sat, 11 Feb 2017 16:01:47 +0000 (17:01 +0100)]
Devtools: Fix saving player proportions

Fixes #92.

7 years agoDevtools: Add clotheslist cmd and fix devkeys in console
Rémi Verschelde [Sat, 11 Feb 2017 14:28:38 +0000 (15:28 +0100)]
Devtools: Add clotheslist cmd and fix devkeys in console

The `clotheslist` and `clotheslistnear` can be used to list the
clothes (and their tint) of a player in the terminal.
The other fix prevents text input in the console from activating
devtools hotkeys (e.g. "p" placing a player).

7 years agoRename fur textures for clarity
Rémi Verschelde [Sat, 11 Feb 2017 14:26:30 +0000 (15:26 +0100)]
Rename fur textures for clarity

For now keeping FurBW2.jpg, Fur2.png and Fur.jpg which are
hardcoded into several maps. I will eventually get rid of them
as part of #91.

7 years agoImprove end texts for existing campaigns
Rémi Verschelde [Sat, 11 Feb 2017 12:35:46 +0000 (13:35 +0100)]
Improve end texts for existing campaigns

Made the end text left-aligned since the current system
does not allow proper centering of variable length lines.

Completes and closes #60.

7 years agoFixed Wolves damage tolerance which was broken by f38eb24f446b94d592d97b24b315bb44bed...
Côme Chilliet [Sun, 5 Feb 2017 21:48:49 +0000 (22:48 +0100)]
Fixed Wolves damage tolerance which was broken by f38eb24f446b94d592d97b24b315bb44bed7b12c

7 years agoMoved PersonType class to its own file
Côme Chilliet [Sun, 5 Feb 2017 21:31:01 +0000 (22:31 +0100)]
Moved PersonType class to its own file

7 years agoMoved more animation info to PersonType
Côme Chilliet [Sun, 5 Feb 2017 21:24:11 +0000 (22:24 +0100)]
Moved more animation info to PersonType

7 years agoMoved bloodText to PersonType
Côme Chilliet [Sun, 5 Feb 2017 21:10:29 +0000 (22:10 +0100)]
Moved bloodText to PersonType

7 years agoMoved creatures skins to PersonType class
Côme Chilliet [Sun, 5 Feb 2017 20:57:18 +0000 (21:57 +0100)]
Moved creatures skins to PersonType class

7 years agoMoved models paths to PersonType
Côme Chilliet [Sun, 5 Feb 2017 17:53:30 +0000 (18:53 +0100)]
Moved models paths to PersonType

7 years agoPut some sounds and animations information in creature types
Côme Chilliet [Sun, 5 Feb 2017 17:37:22 +0000 (18:37 +0100)]
Put some sounds and animations information in creature types

7 years agoFixed default command so that it does not make you giant
Côme Chilliet [Sat, 4 Feb 2017 00:01:35 +0000 (01:01 +0100)]
Fixed default command so that it does not make you giant

7 years agoMerge branch 'master' of gitlab.com:osslugaru/lugaru
Côme Chilliet [Fri, 3 Feb 2017 23:58:10 +0000 (00:58 +0100)]
Merge branch 'master' of gitlab.com:osslugaru/lugaru

7 years agoMoved proportions system in a PersonType class
Côme Chilliet [Fri, 3 Feb 2017 16:58:13 +0000 (17:58 +0100)]
Moved proportions system in a PersonType class

Still buggy

7 years agoDevtools: Fix scaling issue with creature type change
Rémi Verschelde [Wed, 1 Feb 2017 21:46:11 +0000 (22:46 +0100)]
Devtools: Fix scaling issue with creature type change

Now the `wolfie` command and the [Ctrl+]Alt+Shift+T command behave similarly
by making wolves 15% bigger than rabbits. The duplicate `wolfieisgod` command
was dropped, and the logic for the hotkey was simplified (it was bogus).

7 years agoFixes #88 Fixed joints and muscles loading for an existing skeleton object
Côme Chilliet [Wed, 1 Feb 2017 18:39:13 +0000 (19:39 +0100)]
Fixes #88 Fixed joints and muscles loading for an existing skeleton object

7 years agoEnhancements to devtools input processing code
Rémi Verschelde [Mon, 30 Jan 2017 07:28:56 +0000 (08:28 +0100)]
Enhancements to devtools input processing code

Changed key to modify player skin and type: [Shift+]Alt+T instead of
[Shift+]Alt+O which conflicted placing objects.

Changed key to restart challenge to Alt+K from Super+Z.

Apply fire to nearby player by default (Alt+F), to self with Shift mod.

Various code quality improvements.

7 years agoGameTick: Move input processing to a dedicated method
Rémi Verschelde [Sun, 29 Jan 2017 14:08:42 +0000 (15:08 +0100)]
GameTick: Move input processing to a dedicated method

Gameplay-related input is still in the main Tick() though as it is
tightly coupled to the game logic.

7 years agoThis should fix the segfault from #89
Côme Chilliet [Mon, 30 Jan 2017 18:13:08 +0000 (19:13 +0100)]
This should fix the segfault from #89

7 years agoFixed bindings or documentation to make sure both are consistent with each other
Côme Chilliet [Mon, 30 Jan 2017 17:52:37 +0000 (18:52 +0100)]
Fixed bindings or documentation to make sure both are consistent with each other

7 years agoFix feedback on prev commits from MCMic
Rémi Verschelde [Sun, 29 Jan 2017 22:47:50 +0000 (23:47 +0100)]
Fix feedback on prev commits from MCMic

7 years agoUpdate copyright year to 2017
Rémi Verschelde [Sat, 28 Jan 2017 21:18:27 +0000 (22:18 +0100)]
Update copyright year to 2017

7 years agoFix a few GCC5 and GCC6 warnings
Rémi Verschelde [Sat, 28 Jan 2017 21:14:01 +0000 (22:14 +0100)]
Fix a few GCC5 and GCC6 warnings

7 years agoSplit distribution stuff per platform
Rémi Verschelde [Sat, 28 Jan 2017 17:11:06 +0000 (18:11 +0100)]
Split distribution stuff per platform

7 years agoUnify platform-specific definitions and clean .rc file
Rémi Verschelde [Sat, 28 Jan 2017 16:20:52 +0000 (17:20 +0100)]
Unify platform-specific definitions and clean .rc file

7 years agoAI: Prevent division by 0 when enemy has no velocity
Rémi Verschelde [Sat, 28 Jan 2017 14:26:00 +0000 (15:26 +0100)]
AI: Prevent division by 0 when enemy has no velocity

Fixes #45.

7 years agoDialogs: Fix long lines overflowing the box
Rémi Verschelde [Sat, 28 Jan 2017 12:12:21 +0000 (13:12 +0100)]
Dialogs: Fix long lines overflowing the box

I just reduced their scale factor from 1.5 to 1.4, which seems to work fine.
Also took the opportunity to cleanup the string management while I was trying
to understand what the code does.

Fixes #86.

7 years agoEmpire: Restore Ash's black fur as intended by the author
Rémi Verschelde [Wed, 25 Jan 2017 20:56:11 +0000 (21:56 +0100)]
Empire: Restore Ash's black fur as intended by the author

Fixes #84.

7 years agoOutput version info to stdout and show in menu
Rémi Verschelde [Tue, 24 Jan 2017 18:47:12 +0000 (19:47 +0100)]
Output version info to stdout and show in menu

Fixes #82.

7 years agoCMake: Add version logic and make it generate Version.hpp
Rémi Verschelde [Tue, 24 Jan 2017 18:34:09 +0000 (19:34 +0100)]
CMake: Add version logic and make it generate Version.hpp

Part of #82.

7 years agoRemove bogus clothes paths from task15 and task18
Rémi Verschelde [Tue, 24 Jan 2017 07:56:02 +0000 (08:56 +0100)]
Remove bogus clothes paths from task15 and task18

7 years agoRemove occurences of All.png used as clothes
Rémi Verschelde [Mon, 23 Jan 2017 22:53:45 +0000 (23:53 +0100)]
Remove occurences of All.png used as clothes

Fixes #54.

7 years agoDevtools: Prevent clothes from saving invalid path
Rémi Verschelde [Mon, 23 Jan 2017 17:38:57 +0000 (18:38 +0100)]
Devtools: Prevent clothes from saving invalid path

Fixes #59.

7 years agoFixed invalid participant focus in svengrotto map (Fixes #79)
Côme Chilliet [Mon, 23 Jan 2017 17:24:09 +0000 (18:24 +0100)]
Fixed invalid participant focus in svengrotto map (Fixes #79)

7 years agoWorkaround GCC issue with mvt keys in tutorial
Rémi Verschelde [Mon, 23 Jan 2017 17:13:50 +0000 (18:13 +0100)]
Workaround GCC issue with mvt keys in tutorial

Fixes #64.

7 years agoReading the campaign end text from campaign file (see #60)
Côme Chilliet [Mon, 23 Jan 2017 17:11:13 +0000 (18:11 +0100)]
Reading the campaign end text from campaign file (see #60)

7 years agoFixes #40 Scores are now integers
Côme Chilliet [Mon, 23 Jan 2017 16:28:46 +0000 (17:28 +0100)]
Fixes #40 Scores are now integers

They are still stored as floats in save file to be backward compatible

7 years agoFixed search for closest ally or weapon
Côme Chilliet [Mon, 23 Jan 2017 16:18:33 +0000 (17:18 +0100)]
Fixed search for closest ally or weapon

7 years agoAdded braces to all statements with clang-tidy and ran clang-format again
Côme Chilliet [Mon, 9 Jan 2017 23:52:57 +0000 (00:52 +0100)]
Added braces to all statements with clang-tidy and ran clang-format again

7 years agoApplied clang-format on all files
Côme Chilliet [Mon, 9 Jan 2017 23:50:38 +0000 (00:50 +0100)]
Applied clang-format on all files

7 years agoAdded .clang-format file
Côme Chilliet [Mon, 9 Jan 2017 23:49:48 +0000 (00:49 +0100)]
Added .clang-format file

7 years agoFixed a few parentheses
Côme Chilliet [Mon, 9 Jan 2017 23:48:44 +0000 (00:48 +0100)]
Fixed a few parentheses

7 years agoReplaced patchobjects arrays by vectors, cleaned code a bit
Côme Chilliet [Sun, 8 Jan 2017 17:43:28 +0000 (18:43 +0100)]
Replaced patchobjects arrays by vectors, cleaned code a bit

7 years agoCleaned up Terrain::AddObject
Côme Chilliet [Sun, 8 Jan 2017 17:14:29 +0000 (18:14 +0100)]
Cleaned up Terrain::AddObject

7 years agoFix levels numbering in main.txt
Rémi Verschelde [Sun, 8 Jan 2017 14:54:17 +0000 (15:54 +0100)]
Fix levels numbering in main.txt

The numbers were offset by one due to the raidercamp between
Level 7 and Level 8, which had caused a bogus decrement of numlevels
causing crashes.

Fixes regression from 4343a4e3ad10d520d65dc537012440fc7077eeb0.

7 years agoAdded a helper for getting model triangle vertexes, mostly used in Decal for now.
Côme Chilliet [Sun, 8 Jan 2017 14:44:11 +0000 (15:44 +0100)]
Added a helper for getting model triangle vertexes, mostly used in Decal for now.

7 years agoFixes #74 Shadow glitch (was using decal.vertex instead of model.vertex)
Côme Chilliet [Sun, 8 Jan 2017 14:11:26 +0000 (15:11 +0100)]
Fixes #74 Shadow glitch (was using decal.vertex instead of model.vertex)

7 years agoFixed participantfocus value in a dialogue in sventemple to avoid crash
Côme Chilliet [Fri, 6 Jan 2017 14:06:42 +0000 (15:06 +0100)]
Fixed participantfocus value in a dialogue in sventemple to avoid crash

7 years agoCreating map saving folder if needed
Côme Chilliet [Fri, 6 Jan 2017 13:46:01 +0000 (14:46 +0100)]
Creating map saving folder if needed

7 years agoAdded .at usage to have clearer crash when dialogue contains invalid participant
Côme Chilliet [Fri, 6 Jan 2017 13:44:44 +0000 (14:44 +0100)]
Added .at usage to have clearer crash when dialogue contains invalid participant

7 years agoConsole: Return gracefully when loading missing level
Rémi Verschelde [Wed, 4 Jan 2017 17:28:04 +0000 (18:28 +0100)]
Console: Return gracefully when loading missing level

For this, implemented Folders::file_exists to check for the existence
of a given file, so that we can exit gracefully before raising a FileNotFound
exception which then closes the game.

The console and stderr both display an error message.
Part of #23.

7 years agoRemoved unused defines, changed method names case
Côme Chilliet [Wed, 4 Jan 2017 17:34:32 +0000 (18:34 +0100)]
Removed unused defines, changed method names case

7 years agoChanged Weapon models and textures to be private
Côme Chilliet [Wed, 4 Jan 2017 14:02:01 +0000 (15:02 +0100)]
Changed Weapon models and textures to be private

7 years agoMoved Weapon model and texture loading in Weapon class
Côme Chilliet [Wed, 4 Jan 2017 14:00:53 +0000 (15:00 +0100)]
Moved Weapon model and texture loading in Weapon class

7 years agoUsing an enum for model type
Côme Chilliet [Wed, 4 Jan 2017 14:00:42 +0000 (15:00 +0100)]
Using an enum for model type

7 years agoRemoved unused members in Model class
Côme Chilliet [Wed, 4 Jan 2017 13:28:57 +0000 (14:28 +0100)]
Removed unused members in Model class

7 years agoRemoved unused method from Model class
Côme Chilliet [Wed, 4 Jan 2017 13:23:42 +0000 (14:23 +0100)]
Removed unused method from Model class

7 years agoUse a mono font for the console text
Rémi Verschelde [Tue, 3 Jan 2017 22:18:58 +0000 (23:18 +0100)]
Use a mono font for the console text

This makes the console text more readable, as its case is quite important
and the original font uses small capital letters for lower case, which are
hard to read.

The font used is Libration Mono with height 32 and some antialiasing.
Bitmap font generated with CBFG. Liberation Mono is under the SIL Open
Font License version 1.1.

Part of #23.

7 years agoFixed bushes appearing above ground on first level loaded
Côme Chilliet [Tue, 3 Jan 2017 00:48:18 +0000 (01:48 +0100)]
Fixed bushes appearing above ground on first level loaded

This was because Setenvironment was done after objects loading,
 and this is were terrain heightmap is built.
This might be related to the appearing inside a rock bug, not sure.

7 years agoAttempt at fixing LoadStuff calling logic
Côme Chilliet [Mon, 2 Jan 2017 23:56:55 +0000 (00:56 +0100)]
Attempt at fixing LoadStuff calling logic

I failed to have the inside rock bug after these changes but it might be luck

7 years agoFixed crashes due to trianglesNum having wrong type
Côme Chilliet [Mon, 2 Jan 2017 23:40:07 +0000 (00:40 +0100)]
Fixed crashes due to trianglesNum having wrong type

7 years agoReplaced a strcpy by strncpy
Côme Chilliet [Mon, 2 Jan 2017 16:25:18 +0000 (17:25 +0100)]
Replaced a strcpy by strncpy

7 years agoRemoved lots of unused code from Math folder, renamed Quaternion file to XYZ
Côme Chilliet [Mon, 2 Jan 2017 16:15:26 +0000 (17:15 +0100)]
Removed lots of unused code from Math folder, renamed Quaternion file to XYZ

7 years agoRefactored ugly ifs
Côme Chilliet [Mon, 2 Jan 2017 12:22:49 +0000 (13:22 +0100)]
Refactored ugly ifs

7 years agoReplaced Model::possible with a vector
Côme Chilliet [Mon, 2 Jan 2017 12:06:01 +0000 (13:06 +0100)]
Replaced Model::possible with a vector

7 years agoUsing initialization list in Muscle constructor
Côme Chilliet [Sun, 1 Jan 2017 23:40:39 +0000 (00:40 +0100)]
Using initialization list in Muscle constructor

7 years agoCleans up in Object class, factor duplicated code
Côme Chilliet [Sun, 1 Jan 2017 23:16:52 +0000 (00:16 +0100)]
Cleans up in Object class, factor duplicated code

7 years agoFixed warnings
Côme Chilliet [Sun, 1 Jan 2017 14:57:43 +0000 (15:57 +0100)]
Fixed warnings

7 years agoCI: Bump expiration limit to keep builds 14 days
Rémi Verschelde [Sat, 31 Dec 2016 20:09:33 +0000 (21:09 +0100)]
CI: Bump expiration limit to keep builds 14 days

7 years agoUsing a vector for Model triangles, moved facenormal inside triangles
Côme Chilliet [Fri, 23 Dec 2016 01:46:01 +0000 (02:46 +0100)]
Using a vector for Model triangles, moved facenormal inside triangles

7 years agoUsing the Decal class in Model as well
Côme Chilliet [Fri, 23 Dec 2016 01:13:19 +0000 (02:13 +0100)]
Using the Decal class in Model as well

7 years agoAdded an enum for decal type
Côme Chilliet [Fri, 23 Dec 2016 00:22:15 +0000 (01:22 +0100)]
Added an enum for decal type

7 years agoCleaned Terrain Decal handling
Côme Chilliet [Thu, 22 Dec 2016 23:44:28 +0000 (00:44 +0100)]
Cleaned Terrain Decal handling

7 years agoWindows: Remove disabled warnings unknown to MinGW
Rémi Verschelde [Thu, 22 Dec 2016 22:14:08 +0000 (23:14 +0100)]
Windows: Remove disabled warnings unknown to MinGW

7 years agoCampaigns: Fix number of levels in seventasks and main
Rémi Verschelde [Thu, 22 Dec 2016 21:34:39 +0000 (22:34 +0100)]
Campaigns: Fix number of levels in seventasks and main

The wrong number of levels announced for Seven Tasks caused a crash on
Win32. Fixes #70.
Also fixed the spelling for "NextLevel", though it did not seem to have
an influence on parsing.

7 years agoSmall cleanups
Côme Chilliet [Thu, 22 Dec 2016 20:32:21 +0000 (21:32 +0100)]
Small cleanups

7 years agoFixed double set of velocity var
Côme Chilliet [Thu, 22 Dec 2016 20:15:45 +0000 (21:15 +0100)]
Fixed double set of velocity var

7 years agoAdded parenthesis to expression
Côme Chilliet [Thu, 22 Dec 2016 20:06:04 +0000 (21:06 +0100)]
Added parenthesis to expression

7 years agoFixed warnings, removed unused attributes, broken audio output setting, and so on
Côme Chilliet [Thu, 22 Dec 2016 20:04:26 +0000 (21:04 +0100)]
Fixed warnings, removed unused attributes, broken audio output setting, and so on