Commit Graph

17346 Commits

Author SHA1 Message Date
reaperrr
0d05fdefbb Extract actor voice set into Voiced trait 2015-05-22 01:51:51 +02:00
Oliver Brakmann
f8774dd575 Adjust legacy editor after moving player palettes to the World actor 2015-05-21 21:30:35 +02:00
Oliver Brakmann
b35491d609 Fixed reading past the bounds of the map when rendering in the legacy editor 2015-05-21 21:29:59 +02:00
Pavel Penev
66f99704a8 Merge pull request #8209 from Mailaender/mono2-CS0172
Fixed a compilation error on Mono 2.10
2015-05-21 22:06:54 +03:00
Matthias Mailänder
31d1f0bcf9 fix error CS0172 2015-05-21 20:43:45 +02:00
Pavel Penev
21d1348ea3 Merge pull request #8202 from deniz1a/revert-8097
Reverts #8097.
2015-05-21 21:38:10 +03:00
Matthias Mailänder
b518e5949c register the openra:// protocol to join games 2015-05-21 20:33:42 +02:00
Matthias Mailänder
da2b7e687c add a new Launch.URI parameter 2015-05-21 20:33:36 +02:00
Oliver Brakmann
d46cf70b00 Make d2k AI aware of buildings upgrades 2015-05-21 21:26:16 +03:00
OmegaBolt
8b5353e39b Fix D2k tech tree
- Added upgrades for the Con Yard, Barracks, Light, Heavy and High Tech Factory (last one is Atreides only)
- Updated the prerequisites of all structures, infantry and vehicles to use the upgrades
- Fixed the Ix Research building to use vanilla Dune 2000 prerequisites
- Renamed High Tech Facility to High Tech Factory like vanilla Dune 2000
- Given the Air Strike power to the High Tech Factory Upgrade like vanilla
2015-05-21 21:26:14 +03:00
OmegaBolt
340c8dad21 Add D2k building upgrades 2015-05-21 21:26:12 +03:00
OmegaBolt
f3ec07d4e4 Add Upgrade production queue to D2k 2015-05-21 21:26:10 +03:00
Matthias Mailänder
81608a3282 remove unused replay launch script 2015-05-21 18:45:57 +02:00
abcdefg30
0b09b82254 Merge pull request #8198 from Mailaender/net40-thirdparty-dll
Fixed SystemNotSupportedException caused by thirdparty mod DLLs on .NET > 4.0
2015-05-21 17:20:42 +02:00
Oliver Brakmann
5c95c7e157 Merge pull request #8130 from Mailaender/tileset-filters
Fixed glitchy remap errors of non-fitting actors on certain tilesets
2015-05-21 16:27:37 +02:00
Matthias Mailänder
07fb7f921f bring back system markdown 2015-05-21 11:54:21 +02:00
Matthias Mailänder
f079b1980f switch back to the old Travis infrastructure 2015-05-21 11:53:47 +02:00
Igor Popov
28e1eccf29 Merge pull request #8206 from baxxxster/bleed
Added possibility to use spaces in Server.Name
2015-05-21 12:25:25 +03:00
Glenn Martin Jensen
615c22f158 Added possibility to use spaces in Server.Name
This way it's easier for others to set a servername with spaces in it by
default
2015-05-21 09:49:04 +02:00
Matthias Mailänder
27cbfd9bb1 Merge pull request #8204 from reaperrr/group-sel-bug
Fixes bug that selection voices are played twice when selecting groups
2015-05-21 08:04:18 +02:00
reaperrr
75a0ff7702 Fixes the bug that selection voices are played twice when selecting groups
via 0-9 hotkeys.

Problem was that the voice was played for both KeyUp and KeyDown events.

Closes #8121.
2015-05-21 03:01:13 +02:00
deniz1a
e290975952 Reverts #8097.
It caused units not targeting enemies under fog even with satellite.
2015-05-21 00:24:27 +03:00
Oliver Brakmann
1f17ec4d4f Merge pull request #8201 from Mailaender/isometric-editor-sprites
Fixed Tiberian Sun multiplayer spawn and waypoints
2015-05-20 21:56:07 +02:00
Matthias Mailänder
d9b0e00b41 isometric waypoints 2015-05-20 21:17:20 +02:00
Matthias Mailänder
ca73b9612a isometric spawn points 2015-05-20 21:17:14 +02:00
RoosterDragon
b48b994f16 Remove half-baked thread-safety mechanisms from Sheet.
Sheet is now thread-unsafe, rather than attempting to expose a dodgy thread safety model.
2015-05-20 18:50:28 +01:00
RoosterDragon
d42c3a9740 Allow a sheet buffer to be released without error, even if unbuffered. 2015-05-20 18:35:24 +01:00
Matthias Mailänder
9e81a05f86 allow 3rd-party mod DLLs on .NET > 4.0 2015-05-20 19:32:19 +02:00
Oliver Brakmann
da16142412 Enable unit selection keys for spectators and in replays.
Only work in per-player views.
2015-05-20 18:56:14 +02:00
Oliver Brakmann
9895aee6f2 Disable unit selection by double-clicking for enemy units 2015-05-20 18:28:34 +02:00
Oliver Brakmann
5db63ba7aa Merge pull request #8123 from 42foobar42/nod06a
added mission 6a nod
2015-05-20 17:12:39 +02:00
abcdefg30
e725732f69 Merge pull request #8078 from Mailaender/make-all-docs
Fixed the trait documentation
2015-05-20 17:05:46 +02:00
Alexander Boll
da3d177c60 added mission 6a nod 2015-05-20 16:29:58 +02:00
Matthias Mailänder
9c53ff1403 Merge pull request #8103 from RoosterDragon/mapcache-better-threading
Fix graphical glitches & crashes related to map loading
2015-05-20 13:11:44 +02:00
Matthias Mailänder
1e7e2aa1e0 Merge pull request #8085 from abcdefg30/funpark
Add funpark01 - Take #3
2015-05-20 13:01:36 +02:00
RoosterDragon
b9ebeaadca Improve performance of line rendering.
- Create an overload that renders a line in one color, as this allows most existing calls to be simplified. This also allows a slight performance improvement by only normalizing the components once.
- Introduce a DrawLineStrip method. This improves performance by allowing the color components to be normalized once for the whole strip, and only needing to calculate vertices once per point rather than twice since we can reuse the last result.
2015-05-19 21:41:50 +01:00
Matthias Mailänder
1fa70b959d Update openra.desktop
translate the generic name to German
2015-05-19 22:00:07 +02:00
Oliver Brakmann
9397749118 Merge pull request #8097 from deniz1a/cloaked-targetability
Fixes location of phase transport being revealed by attack line.
2015-05-18 23:04:09 +02:00
Matthias Mailänder
6f3c11da1d remove actors without palette glitches, but non-sensical 2015-05-18 19:41:47 +02:00
Matthias Mailänder
2fbe7b0013 filter actors with glitchy remap errors on certain tilesets 2015-05-18 19:12:20 +02:00
Matthias Mailänder
fd85b208fa update documentation 2015-05-18 18:54:53 +02:00
Matthias Mailänder
2eac646929 deploy Windows setup with Travis CI only 2015-05-18 18:54:41 +02:00
Pavel Penev
a47235d162 Merge pull request #8065 from pchote/ingame-map-editor
Add the new map editor.
2015-05-18 19:16:16 +03:00
Pavel Penev
5d593de09d Merge pull request #8183 from Mailaender/unused-tilestart
Fixed the build for Mono 2.10 again
2015-05-17 22:02:15 +03:00
Matthias Mailänder
ffffe0089a fix error CS0219:
The variable `tileStart' is assigned but its value is never used
2015-05-17 20:34:47 +02:00
Pavel Penev
53af3df3ee Merge pull request #8174 from abcdefg30/formattime
Added a FormatTime function to UtilsGlobal.cs
2015-05-17 17:48:23 +03:00
Pavel Penev
d978fff982 Merge pull request #8106 from reaperrr/cnc-fixes
Several TD mod fixes
2015-05-17 17:39:33 +03:00
Pavel Penev
d718a5a5ca Merge pull request #8094 from reaperrr/hackyai-tweaks
Make HackyAI squad creation a little more flexible and controllable
2015-05-17 17:28:02 +03:00
Pavel Penev
2230daee14 Merge pull request #8179 from Mailaender/ts-skirmish-stats
Added skirmish stats to Tiberian Sun
2015-05-17 15:38:50 +03:00
Paul Chote
09e4c5c5ab Merge pull request #8109 from reaperrr/fix-idleoverlay
Fixes WithIdleOverlay to start with first frame after make animation
2015-05-17 13:06:44 +01:00