Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/Warzone2100/warzone2100

Command the forces of The Project in a battle to rebuild the world after mankind has been nearly destroyed by nuclear missiles. A 100% free and open source real-time strategy game for Windows, macOS, Linux, BSD+
https://github.com/Warzone2100/warzone2100

* insert a hack into droid.c to circumvent ambiguity of the word "Green" (which is being used as a rank name as well as the color)

* `make -C po update-po`

PS The most feasible solution other than the above mentioned hack seem...

c31f807b9418c3e11132b6c1fabb86eddc96e053 authored almost 18 years ago
* add the gettext no-op macro N_(string)

* use it in src/droid.c
* throw some hardcoded strings (in a switch statement) in an array of s...

c3914a6ab2b69fa25ce900d0b6435893e7a05851 authored almost 18 years ago
Fixed scorpion body having no VTOL and Wheeled propultions assigned in MP games.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1413 4a71c877-e1ca-e34f-864e-861f7616d084

e8e196f98e866ee6c8591b9cb115c3079f85be60 authored almost 18 years ago
* Remove PIEPIXEL and change all of its instances to Vector3f (definition is exactly the same where types are concerned, only member vars were named different)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1412 4a71c877-e1ca-e34f-864e-861f7616d084

365c37812d690d327cf9e67fb09d8c53ada42b1c authored almost 18 years ago
Also fix the campaign version of templates.txt

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1411 4a71c877-e1ca-e34f-864e-861f7616d084

153cb45fa6c257c8cfb134051bed28c3530b4e5a authored almost 18 years ago
Fixed a VTOL template having no sensor.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1410 4a71c877-e1ca-e34f-864e-861f7616d084

459c66975ea1bcfb800af9d2af7129b695d87532 authored almost 18 years ago
* remove internal forward declarations of functions already declared in the header

* use proper constness:
* make some functions take arguments of `const char*` rather than just...

cc17299668dfbd78e65162cbbad782257ee657f6 authored almost 18 years ago
Make strict the default debug mode.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1408 4a71c877-e1ca-e34f-864e-861f7616d084

b3e17f6064be80560a4b0470bd756411098a2060 authored almost 18 years ago
* remove unused priority parameter from script function audio_module::audio (audio_track)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1407 4a71c877-e1ca-e34f-864e-861f7616d084

fc701e9595d681c4a4a0a8b7d9f36a2caec7ab08 authored almost 18 years ago
* add -Werror-implicit-function-declaration to CFLAGS

* Fix a spelling error in a string in src/droid.c
* `make -C po update-po`

git-svn-id: svn+ssh...

ee27f41be7f8c235dc2e16fa741f7f1b7888b237 authored almost 18 years ago
- Add -Wextra to debug=yes, as it doesn't generate so many new warnings

- Add -Wno-nonnull to debug=strict to make it compile (Remove it from AM_CFLAGS)
- Remove -Wno-un...

8952155c7aaf72cf5aa3a2fa63932c5b19f88355 authored almost 18 years ago
* merge 1364:1404 from trunk into branches/sound

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1404 4a71c877-e1ca-e34f-864e-861f7616d084

80c250fd277fc0164b63169f081eb94792e343ea authored almost 18 years ago
* remove sound_CheckSample: only contained asserts, makes debugging difficult if you don't know where the assert really came from

* moved asserts to only two callees of sound_CheckSample

git-svn-id: svn+ssh://svn.gna.org/svn/...

092afb2a017be0f9681b0936a9331d9bd1d67b99 authored almost 18 years ago
* Fix C89 compatibility

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1402 4a71c877-e1ca-e34f-864e-861f7616d084

d42a6ba8a4209d08e5d925008deb11a6dc754a32 authored almost 18 years ago
* remove the (unused) ability to decode tracks from memory buffers

* move construction (allocation and initialization) of struct TRACK to openal_track.c where it i...

3c874190c70b6561d01817bd178d9e27f1698b28 authored almost 18 years ago
* audp_parser can now only parse from a PHYSFS_file, it won't parse directly from a memory buffer anymore

* resource types ANI and ANIMCFG are now read directly from file

git-svn-id: svn+ssh://svn.gna....

011d7187e2705f476083dcded73a4eb834a5ae93 authored almost 18 years ago
Removed unused "cluster" functions from the sound code. I suppose

clusters are groups of close units.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1399 4a...

28fe84976ee66dace55fdbaf225567b40632a5ed authored almost 18 years ago
* set filename from GetLastResourceFilename() in sound_ConstructTrack (this filename can at some point be read back into scripts, so it does matter how this filename is formatted, since loading from buffer originally used that function, we now use it for both file loading and buffer loading)

* change audp_parser/lexer to be able to read directly from a file (through PHYSFS)
* change da...

e95423ac684f2337e67e26721b58f3356e4d4490 authored almost 18 years ago
* remove some dead code (resource preload callback stuff)

* turn a one-statement function into an inline (resDoResLoadCallback)
* revive resource loading...

99153c743c41e844ac9241c4fa3d5335b5e0afbe authored almost 18 years ago
* Fix a missing semi-colon r1395

* Change some calls to FREE(TRACK*) to free(TRACK*), because TRACK is always allocated using mal...

61975a7936d5b37f88faaa51abace594095728e4 authored almost 18 years ago
* modify construction functions of TRACK to return pointers instead of BOOLs (and if we return a NULL pointer we first free the original memory, previous code would leak if errors would occur during construction)

* remove wrapping function audio_LoadTrackFromFile from lib/sound/audio.c
* move similar code i...

dfa8d64f278d0800a27922d6660d1b8021c900a0 authored almost 18 years ago
* remove unused function pointer fileLoad from struct RES_TYPE in lib/framework/frameresource.h (there is code that sets this member, but none that uses it)

* remove function resAddFileLoad from lib/framework/frameresource.[ch] which was used to set RES...

10964ceca2d2d6c7a993a4f98291dc98cb3aef2f authored almost 18 years ago
* remove some linked list wrapping macro (to increase code readability)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1393 4a71c877-e1ca-e34f-864e-861f7616d084

0af269415c99124d0f7df18ffde50640bc37e397 authored almost 18 years ago
* Add some info about revision info (last author, commit date and revision) through svn keywords

* This way updates to this file will automatically modify the above automatically

git-svn-id: s...

645c5852c890062fabed4eea7be7b9530392b1ff authored almost 18 years ago
Scripting Language:

-simple data types are lowercase on default
-casts using uppercase still allowed for compatibilit...

0faf85229b25a6bb8a172c42a5e27ee99ad21ee0 authored almost 18 years ago
1. Removed the terrible memory leaks from the resource system. 2. Fixed the memory leaks for the terrain tiles. 3. Fixed a lot of uninitialised

variables. 4. Commented out some unused sound code.
I just love Valgrind :)

git-svn-id: svn+ssh...

6671fa934e7a6970fbcd5345e27c4adee9d52f9f authored almost 18 years ago
Due to popular request: Standardinstallation

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1386 4a71c877-e1ca-e34f-864e-861f7616d084

4003b2dc95c63ae0574511298a1a6b1969bbf5ef authored almost 18 years ago
* add gettext generation support to raw makefiles (is far from nice, but works)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1385 4a71c877-e1ca-e34f-864e-861f7616d084

e1a839ced56aaeb16c035d3e30df0604350cd72b authored almost 18 years ago
"do we really need all files listed twice there?"

- No we don't
- Another update-po just to be sure

git-svn-id: svn+ssh://svn.gna.org/svn/warzone...

0924497ba5c6767f0ec17f3bd8058655320f8212 authored almost 18 years ago
some additional translations for NL

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1383 4a71c877-e1ca-e34f-864e-861f7616d084

99adbf501011dc7ec8c864f26e2c849db7bac77b authored almost 18 years ago
* Update POTFILES.in to the deletion of pqueue in r1378 (btw, do we really need all files listed twice there?)

* Add Dutch translation

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1382 4a71c877-e1ca-...

b8cac46766bece35dbc976b3603c011001dddba7 authored almost 18 years ago
Add the missing file without autoconf won't succeed. Problem reported by Giel.

If you find a different fix other than adding this file here: Feel free to revert.

git-svn-id: ...

c01ef9e12a976843c102a260aae1e0cb16872606 authored almost 18 years ago
* fix a compile error caused by a curly brace to many

* (probably caused because I was editing this file when r1377 was committed which probably was ...

a3ac39aa7de568861ee9d8b24223fc3bed8bfa8b authored almost 18 years ago
* get rid of unused priority queue implementation (lib/gamelib/queue.[ch])

* remove an unused variable from lib/ivis_opengl/piemode.c
* some code refactoring to increase ...

de5510938e38d6d73907f0700f02baeffd92cfb8 authored almost 18 years ago
Sound code: Some code cleanup and removal of unused code. Also fix an assert

that was broken in several ways.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1377 4a71c...

640e7be2a9f1b4e61baebda5d3b0f4af3ac7b228 authored almost 18 years ago
- Purged English strings from Norwegian translation (Sorry if something is missing, I removed everything that looked english).

- Tiny update to german translation
- make -C po update-po

git-svn-id: svn+ssh://svn.gna.org/sv...

e8de4b99272d693a635b74ead8dd084fac4b936e authored almost 18 years ago
Danish translation by Karmazilla (Christian Vest Hansen).

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1375 4a71c877-e1ca-e34f-864e-861f7616d084

6d0ddd3cdde9312a91f356bb7f8def87608422c1 authored almost 18 years ago
* remove some else branches to inrease code readability (code itself should function exactly the same)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1374 4a71c877-e1ca-e34f-864e-861f7616d084

a72ecb62fdfbdced3c90f1e90c1e3c740b366c50 authored almost 18 years ago
Kills->Abschüsse (by Thomas Rast)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1373 4a71c877-e1ca-e34f-864e-861f7616d084

2650c696a5d32be6674f8787baa1684b47d84992 authored almost 18 years ago
* document audio_SetTrackVals (doxygen)

* remove some unnecessary else branches in audio_SetTrackVals (the if respective if branches rea...

c80d5dba3cd2d4bd5e1332513f4c82cb615fcd48 authored almost 18 years ago
Update Debian ruleset, patch by Jocke

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1371 4a71c877-e1ca-e34f-864e-861f7616d084

e499051623742da7786a7d508ff33259336dc23c authored almost 18 years ago
Move scriptlang.htm to where it can be found.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1370 4a71c877-e1ca-e34f-864e-861f7616d084

4261c7e0aefbc09773d9a97de7a26f65aa182e7a authored almost 18 years ago
Small change to match branches/2.0

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1369 4a71c877-e1ca-e34f-864e-861f7616d084

6f332421c6e24d2fe1ff88c12d02fd5a6e122d59 authored almost 18 years ago
- Fix a typo in german Windows installer descriptions

- Fix DATADIR

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1367 4a71c877-e1ca-e34f-864e-...

e718c24567cf37a0f37830808ecb5fe6d9326ce6 authored almost 18 years ago
Remove the heap system from message.c and fix an assert about a message that could not be found.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1366 4a71c877-e1ca-e34f-864e-861f7616d084

a90d28305b1a0722ea66ef92f4507e1424db43b7 authored almost 18 years ago
1. Now only transparent objects are rendered by the bucket sort. 2. Added some asserts to check if droids stay on the map.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1365 4a71c877-e1ca-e34f-864e-861f7616d084

f887de8c8fd734f3c5e86b05beddf8e22fc97448 authored almost 18 years ago
Fix some problems introduced in r1286: 1. flickering water edges 2. transparent water was not correctly drawn

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1363 4a71c877-e1ca-e34f-864e-861f7616d084

7d6382905d119e106b06c541e3f1a56e761010a3 authored almost 18 years ago
1. Fix an assert when winning or losing a skirmish game. 2. Remove some debug messages 3. Now display the mission result screen on the end of a

skirmish/multiplayer game.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1359 4a71c877-e1...

b8c4065e154b48643b57261223e4d8bd6dda3ffe authored almost 18 years ago
Add gettext.m4 for users who might now have it installed for some reason.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1358 4a71c877-e1ca-e34f-864e-861f7616d084

d19a616013ec0abe3fbe1a8494171d3db1ce8592 authored almost 18 years ago
Remove the font.h header file (which had no implementation)

Remove all callers (which all were commented out)
The 'real' font implementation used lives in iv...

8c517891ea9efd4d5f5e390df7d69ad49a00b24b authored almost 18 years ago
Remove some unused function prototypes.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1356 4a71c877-e1ca-e34f-864e-861f7616d084

7c9f1d19af4352873a6e1b937873ebc4ba36b37d authored almost 18 years ago
Convert some more strresGetString calls to using the

new gettext style. As per Mailinglist post
'Gettext - part2'

git-svn-id: svn+ssh://svn.gna.or...

fef987633f05ea40beac701487fe4f74d8a1c0aa authored almost 18 years ago
* change inlines of r1353 into static functions according to advice from Per and Stefan on the dev mailing list

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1354 4a71c877-e1ca-e34f-864e-861f7616d084

b42cbb0b948bb2fc57fc8c89ea509c99a6ba3ce8 authored almost 18 years ago
* turn some macrofunctions into inlines

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1353 4a71c877-e1ca-e34f-864e-861f7616d084

84bfec1742311234b5316882982ccd457279671b authored almost 18 years ago
Remove a some "temporary" checks from defenseLocation that were causing asserts. The AI doesn't seem to care, and happily builds defenses.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1352 4a71c877-e1ca-e34f-864e-861f7616d084

39b4a1da37f3370a395d96851d718106aa4a7332 authored almost 18 years ago
The function asciiKeyCodeToTable from keymap.c was returning invalid table indices.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1351 4a71c877-e1ca-e34f-864e-861f7616d084

aadc39945300fda0ccd9a5fe9448217ea554475e authored almost 18 years ago
Autopoint removal by Per.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1350 4a71c877-e1ca-e34f-864e-861f7616d084

b2ca1a6825bf9f001cdb659b28cdb53d701eacb9 authored almost 18 years ago
Remove a debug statement that I left behind.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1349 4a71c877-e1ca-e34f-864e-861f7616d084

7f73a0b73040ee03f838d2f65811fccb8275cae1 authored almost 18 years ago
* remove macro PTRVALID

* replace all instances of PTRVALID(ptr,size) by (ptr != NULL)
* remove asserts of style ASSERT...

26f2672bfd38a04953e939f1713049721921988c authored almost 18 years ago
Fix the E3 demo, which crashed by selecting a negative player number to follow a droid for.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1347 4a71c877-e1ca-e34f-864e-861f7616d084

021b489038220fdfcc63aa697dd307d932eef0f1 authored almost 18 years ago
fix the build.

Remove the block.c and mem.c lines from POTFILEs.in as
well, as these files where removed complet...

0e396d1f6a2027c7ccc39f6cdf3e12b80ba51f1a authored almost 18 years ago
* enable libvorbisfile to seek into a file opened with PhysicsFS

* also allow this to be disabled on a per file basis (this code is basically taken from the sou...

13c85370b93be99e08d7fb6da9aaf11781409f8e authored almost 18 years ago
Fixes an assert when loading a map preview. (gateways were being calculated without the terrain types correctly set up)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1344 4a71c877-e1ca-e34f-864e-861f7616d084

50effcd21294780a863d4251baa99831bcddd926 authored almost 18 years ago
Per's removal of the memory heap system. Now MALLOC is just malloc, and not some wrapper around a wrapper that will allocate it from a specific pool.

The MSVC poject will need to be updated I guess, as some files were deleted.

git-svn-id: svn+ss...

42ed587327f923e2852a9f8a80e76ca8f7db2f60 authored almost 18 years ago
* apply patch found in bug #6953 by David Brettle

NOTE: this does not fix the issue of the close button not flashing, it does however make this sc...

fe90b5374aee8cd74c197f84d9d3e8c80fc8ee4f authored almost 18 years ago
* set mime-types on data:

*.ogg -> application/ogg
*.jpg -> image/jpeg
*.png -> image/png
*.svg -> text/xml

git-sv...

a61dcf5a500a850dc65e50af65608ff0cebb82dd authored almost 18 years ago
* allow viewing in any browser directly from the svn-http url ( http://svn.gna.org/svn/warzone/trunk/data/multiplay/skirmish/scriptlang.htm )

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1340 4a71c877-e1ca-e34f-864e-861f7616d084

2465969014ebaf65104e21fc467121ce0fa921cb authored almost 18 years ago
Sensor targeting fix by Thomas Rast

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1339 4a71c877-e1ca-e34f-864e-861f7616d084

07f6c04ecd495d863e6660697e58067bb26af3d0 authored almost 18 years ago
fix raw makefiles

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1338 4a71c877-e1ca-e34f-864e-861f7616d084

0730665b1ea6e963acf04d7741f5a6b1e6cbabf1 authored almost 18 years ago
A little bit more strings.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1337 4a71c877-e1ca-e34f-864e-861f7616d084

ea74165cecf32d537104d45ad98a0c2fd01b2030 authored almost 18 years ago
Very basic german translation.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1336 4a71c877-e1ca-e34f-864e-861f7616d084

3867e71196caf7c11967840f5384e32ce4d83264 authored almost 18 years ago
Check separately for gettext, and give hopefully informative message when

only autopoint is missing. Also run autopoint with --force option to avoid
stupid errors.

git-s...

2f6baa8b8acc05d4e808392d91796722f09c2f5c authored almost 18 years ago
- Remove unnecessary files in m4

- Fix autopoint detection in autogen.sh
- Require only gettext 0.14 in configure.ac

git-svn-id:...

f2eb836b61a58ec010665b42bef13dd1c1d20c0c authored almost 18 years ago
Add autopoint, autoconf and automake checks back in...

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1333 4a71c877-e1ca-e34f-864e-861f7616d084

874f421a25800c38812611d70645c0ede125a7e3 authored almost 18 years ago
- Remove unneeded gettext files and instead create them via autopoint

- Remove unneeded checks from autogen.sh (all of them are also checked in configure.ac)
- Move AM...

3b09a756df6e1798e11376725b613951635583ec authored almost 18 years ago
Bugfix: Can now properly save the game when sound is disabled. (this caused an assert)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1331 4a71c877-e1ca-e34f-864e-861f7616d084

71b4cb283b589f64a5508da11f2088416cdd17aa authored almost 18 years ago
Makevars had double content

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1330 4a71c877-e1ca-e34f-864e-861f7616d084

bd9eda5a695bac3ca17212dabac43308479642c4 authored almost 18 years ago
Make NSIS uninstaller delete ChangeLog and Authors files

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1329 4a71c877-e1ca-e34f-864e-861f7616d084

f2b9e42484cde82730549be973bdd26ce349d077 authored almost 18 years ago
Comply with the gettext manual and move path fallbacks to the common location

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1328 4a71c877-e1ca-e34f-864e-861f7616d084

0aa7cd1b8c3b7365c93312b7ed9fec9da087e6cd authored almost 18 years ago
Start removing unused droid program component code.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1327 4a71c877-e1ca-e34f-864e-861f7616d084

6f32003a020aaf2984ad72ff5f66f9123b2c4d0b authored almost 18 years ago
Add partial Norwegian translation. To test, make sure you do a "make install"

and use "export LANG=nb_NO" before running Warzone.

git-svn-id: svn+ssh://svn.gna.org/svn/warzo...

f87e320bca4f4cf1f3988279c0bdb2c821d63d66 authored almost 18 years ago
Copy strings back into the C code, and make them translatable by gettext.

Thanks to Huehner for writing the script that transformed calls to strres
back into C strings.

...

c2326411199078df5bb3176283f1b49676442959 authored almost 18 years ago
Fix warning

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1324 4a71c877-e1ca-e34f-864e-861f7616d084

0de1ff112468f817539a29e2a801ebe5e7ab148d authored almost 18 years ago
Add autogen.sh checks for gettext, and assign the _() macro to gettext.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1323 4a71c877-e1ca-e34f-864e-861f7616d084

69dd9fbdc52ba21d246745a09eafb36f5d407f37 authored almost 18 years ago
Fixed naming inconsistency.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1322 4a71c877-e1ca-e34f-864e-861f7616d084

8e0c0f397cc31032411f4883b0f4d8ca59a2a0db authored almost 18 years ago
scrBitSet -> scrGetBit

The name was confusing

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1321 4a71c877-e1ca-e...

7aa777d056b10dda3ddc674ef67558316feac5f6 authored almost 18 years ago
Prune some dead code

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1320 4a71c877-e1ca-e34f-864e-861f7616d084

a1d02fec76df0f7ff2e7c1b511deaad506b9301a authored almost 18 years ago
Skirmish AI:

-AI chat messages are now visible to all allies, not only to the player messages are addressed to...

3123e32370df47471806bc52d23abeb69f051a59 authored almost 18 years ago
Scripting Engine:

-fixed local string variables now being cleared between function calls
-implemented a setBit() sc...

89f67fc187b590af0669931c8216757294ac961d authored almost 18 years ago
Port of r1315 (HKLM and updater)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1316 4a71c877-e1ca-e34f-864e-861f7616d084

dcd8aa2eed54b242a6c5c427135d05de8855c37b authored almost 18 years ago
- Make make visit intl/

- Update dbghelp.h to Wine 0.9.34
- Sync with branches/2.0

git-svn-id: svn+ssh://svn.gna.org/sv...

6180aab09d8707484c3807035d5acc17b2288059 authored almost 18 years ago
Enabled recursive function calls for scripts.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1311 4a71c877-e1ca-e34f-864e-861f7616d084

1c2ec5e07db8bc0563044f9d6fd7ee3205e58a14 authored almost 18 years ago
Gettext support (0.16.1 included)

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1310 4a71c877-e1ca-e34f-864e-861f7616d084

c5e611767b3f0fb093420f8169373c4aa5492550 authored almost 18 years ago
Forgot in my last commit - ChangeLog again.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1309 4a71c877-e1ca-e34f-864e-861f7616d084

fbb361f5a7cbae90d8080403fdb630b074f1cea8 authored almost 18 years ago
Updated ChangeLog.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1307 4a71c877-e1ca-e34f-864e-861f7616d084

7c7079c469c8052713fcfadc8f3771849d30855c authored almost 18 years ago
r1302 caused smoke to be nontransparent when viewed in front of the sky or fogbox. This is fixed by first drawing the sky and fogboxes and then

the terrain and other objects. (it was the other way around)

git-svn-id: svn+ssh://svn.gna.org/...

d775cc89629cfa38068d4e15608bcf1933d74521 authored almost 18 years ago
Fix a bug introduced in r1302: Unit selection boxes were not shown or periodically disappeared.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1303 4a71c877-e1ca-e34f-864e-861f7616d084

bbd1fc594fa13412e39034f2c7eedd18c5ef0740 authored almost 18 years ago
A speed up for people who are fillrate limited: 1. The stencil buffer is no longer cleared each frame when shadows are disabled. 2. The color buffer

is no longer cleared each frame, but care is taken do draw on the entire screen so that no smeari...

290fb5ebe265b7294bc2f8c4bf14f608f4f1fb21 authored almost 18 years ago
Skirmish AI Update:

-a much faster unit production due to raised production effectiveness
-optimized construction of ...

bfa9d23e01b785c3e35663cb2c91fe1acb2c5844 authored almost 18 years ago
-swapped parameters for some scripting functions for consistency

-renamed some variables for the sake of clarity

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/tr...

086dfd8b1226b6aaa047575ee982833cfac30913 authored almost 18 years ago