Commit Graph

112 Commits

Author SHA1 Message Date
Matthias Mailänder
a91d43d7ce update SDL2-CS 2015-07-09 10:03:39 +02:00
Oliver Brakmann
e5f89c2339 Merge pull request #8428 from moviuro/silent-get-function
thirdparty/fetch-thirdparty-deps.sh: silence the nuget check
2015-06-08 21:22:26 +02:00
Moviuro
1f0c884654 thirdparty/fetch-thirdparty-deps.sh: silence the nuget check 2015-06-07 17:08:36 +02:00
Moviuro
0525bebc80 thirdparty/*.sh: add comments on POSIX-compliant scripts 2015-06-07 16:32:46 +02:00
Matthias Mailänder
c460e4ac4d avoid word splitting 2015-06-06 19:20:54 +02:00
Matthias Mailänder
363e84157f add BSD detection to the Makefile 2015-06-06 18:36:40 +02:00
Moviuro
992d8396c6 thirdparty/configure-linux-native-deps.sh: == is not POSIX
Replaced it with =
2015-06-06 16:56:39 +02:00
Moviuro
753f268593 thirdparty/configure-linux-native-deps.sh: POSIX compliant
Also works on FreeBSD
I didn't fix the MakeFile, though
2015-06-06 16:25:52 +02:00
Moviuro
fbf0cb676f *.sh: POSIX compliance when needed 2015-06-06 16:16:30 +02:00
Matthias Mailänder
fbef65bae9 copy it in the make dependencies step 2015-05-24 17:28:47 +02:00
Matthias Mailänder
f2124f7ebe fix file name 2015-05-24 16:17:43 +02:00
Pavel Penev
902cd124ba Merge pull request #8149 from Mailaender/fetch-geoip-db
Automatized GeoIP database download
2015-05-24 16:43:22 +03:00
Matthias Mailänder
b2fc8585e0 unify the spelling towards the official one 2015-05-24 10:24:47 +02:00
Matthias Mailänder
dd19d9127b add a fallback if nuget is not available on the system 2015-05-24 10:24:19 +02:00
Matthias Mailänder
a2c553478d fetch GeoLite2-Country.mmdb.gz after 30 days of file age 2015-05-23 22:45:31 +02:00
Oliver Brakmann
f251813f89 Keep downloaded files in a separate directory
As a side effect, this re-enables building the Windows installer on Linux hosts.
2015-05-08 20:59:24 +02:00
Paul Chote
2682dc4228 Move native deps script into thirdparty to avoid confusion. 2015-05-03 07:47:17 +02:00
Matthias Mailänder
34cd717349 Merge pull request #8071 from pchote/remove-trait-test-plumbing
Remove plumbing for trait unit tests.
2015-05-02 11:34:54 +02:00
Matthias Mailänder
a43d303eb7 use curl everywhere to run out of the box on Mac 2015-05-01 21:49:11 +02:00
Matthias Mailänder
8a514ee143 remove outdated documentation 2015-05-01 11:45:12 +02:00
Matthias Mailänder
78588753e8 fetch Eluant from GitHub 2015-05-01 11:45:12 +02:00
Matthias Mailänder
adddf1245b fetch SDL2-CS from GitHub 2015-05-01 11:45:12 +02:00
Paul Chote
b1e285f243 Remove Moq dependency. 2015-05-01 16:29:31 +12:00
Robert Rouhani
5d4ca1d52f Fixed bug where the SDL2 directory wouldn't be deleted 2015-04-25 10:33:20 -04:00
Robert Rouhani
7ccd5521e0 Removed zlib dependency and chose a specific version of SharpFont.Dependencies. 2015-04-25 10:30:00 -04:00
Robert Rouhani
4987a6b24c Updated SharpFont to 3.0.0, adjusted font rendering code for new fixed-point types. 2015-04-25 10:26:41 -04:00
Matthias Mailänder
14777e46c4 Merge pull request #7933 from pchote/new-osx-launcher
New OSX launcher
2015-04-25 12:41:28 +02:00
Robin Neatherway
2dba45ebac Remove version information from NuGet folder names
This makes the names consistent and prevents changes in versions of
dependencies from breaking the build.
2015-04-13 15:41:17 +01:00
Paul Chote
03572ecb3a Remove binaries from thirdparty/osx dir. 2015-04-12 21:22:26 +01:00
Oliver Brakmann
b6f015641e Fix path to freetype library in SharpFont's .dll mapping for OS X 2015-04-11 00:11:52 +02:00
Matthias Mailänder
ac5a1b2569 fetch FuzzyLogicLibrary from NuGet 2015-03-08 10:22:37 +01:00
Pavel Penev
5ad1424c87 Merge pull request #7579 from Mailaender/lua51-msvc110
Avoid MSVC120 runtime dependency for Lua Windows DLLs
2015-03-08 02:29:55 +02:00
Matthias Mailänder
b7255761e3 downgrade to MSVC8 runtime dependency 2015-03-07 17:54:42 +01:00
Matthias Mailänder
0f309c31be downgrade FreeType2 version to old msvcrt.dll dependency
also downgrade ZLib dependency to old VC runtime versions
2015-03-07 14:04:36 +01:00
David Jiménez
54ae572303 - Introduced Unit Testing capabilities to the PathFinder trait and algorithm.
Introduced also a small Unit test project to prove it.

- Separated caching capabilities from PathFinder class to increase cohesion and maintainability.
Refactored the pathfinding algorithm by extracting methods based on responsibilities like
calculating costs and reordering functions. These changes should provide a in average a small increase in
pathfinding performance and maintainability.

- Optimized the pathfinder algorithm to reuse calculations like the
MovementCost and heuristics.

- Introduced base classes, IPathSearch and IPriorityQueue interfaces,
and restructured code to ease readability and testability

- Renamed the PathFinder related classes to more appropriate names. Made the
traits rely on the interface IPathfinder instead of concrete PathFinder
implementation.

- Massive performance improvements

- Solved error with harvesters' Heuristic

- Updated the heuristic to ease redability and adjustability. D can be
adjusted to offer best paths by decreasing and more performance by
increasing it

- Refactored the CellLayer<CellInfo> creation in its own Singleton class

- Extracted the graph abstraction onto an IGraph interface, making the
Pathfinder agnostic to the definition of world and terrain. This
abstraction can help in the future to be able to cache graphs for similar
classes and their costs, speeding up the pathfinder and being able to feed
the A* algorithm with different types of graphs like Hierarchical graphs
2015-03-03 20:11:11 +01:00
Matthias Mailänder
6626df468c fetch OpenAL Soft from Nuget on Windows 2015-02-15 11:33:05 +01:00
Taryn Hill
a0130f105e Unset executable bit from some thirdparty objects. 2015-02-04 12:37:04 -06:00
Matthias Mailänder
93c4be6f7a add support for StyleCop+ 2015-01-25 18:40:44 +01:00
Matthias Mailänder
8e4674520e create a thirdparty/windows directory if it does not exit 2015-01-18 08:33:59 +01:00
Matthias Mailänder
b25184adca fetch Zlib from nuget 2015-01-18 07:35:54 +01:00
Matthias Mailänder
9cae84d29d fetch Lua 5.1 from nuget.org 2015-01-18 07:35:41 +01:00
Matthias Mailänder
23380c6df6 don't fetch native Windows binaries on Unix 2015-01-18 07:35:40 +01:00
Matthias Mailänder
2791ac7491 fail the whole script when nuget fails 2014-12-31 11:04:24 +01:00
Matthias Mailänder
a18512cd57 Merge pull request #7212 from reaperrr/stable-sharp-dep
Revert to stable SharpFont version 2.5.0.1
2014-12-28 16:12:39 +01:00
reaperrr
d5f5aeee0f Revert to SharpFont 2.5.0.1 for Linux and OSX, too 2014-12-27 21:24:12 +01:00
reaperrr
be7830e118 Revert to stable SharpFont version 2.5.0.1 2014-12-27 21:12:20 +01:00
ScottNZ
8725ee9de3 Make fetch-thirdparty-deps.ps1 work on more Windows platforms. 2014-12-27 22:05:54 +13:00
Matthias Mailänder
962d8fe74f fetch Mono.Nat from nuget 2014-12-26 15:40:06 +01:00
Matthias Mailänder
51d081f93f fetch SDL2 (native Windows DLL) from nuget 2014-12-26 15:40:06 +01:00
Matthias Mailänder
02e1a8d5d2 fetch NUnit 2 from nuget 2014-12-26 15:40:06 +01:00