ScottNZ
582b6635ff
Brace style fixes
2015-02-13 02:32:49 +13:00
Matthias Mailänder
b0f986887c
make maximum and minimum rows configurable
2015-02-08 20:43:35 +01:00
penev92
64887cb8c8
Move MainMenuLogic to Mods.Common
2015-02-06 13:37:43 +02:00
Matthias Mailänder
bcda232a1c
Merge pull request #7231 from RoosterDragon/linq-checks
...
Checked LINQ queries and collections for inefficiencies.
2015-02-01 08:56:15 +01:00
abcdefg30
28b90b0115
Use the class enum in LeaveMapLogic.cs as well
2015-01-29 20:26:40 +01:00
abcdefg30
b7b1e13c63
Disable the diplomacy menu in mission or campaign maps
2015-01-29 20:26:15 +01:00
RoosterDragon
82bea961ba
Checked LINQ queries and collections for inefficiencies.
...
- Made Array.IndexOf available via extension method.
- Made ToHashSet extension method.
- Change collections queried often via Contains into sets.
- Avoid Count() extension if Count or Length property exist.
- Made Count() > 0 checks and variations calls to Any() instead.
- Don't call ToList/ToArray if there is no benefit to materializing the sequence.
- If the sequence does benefit from materialization, follow this general pattern:
- Collection queried often via Contains use ToHashSet to speed up lookups.
- Short lived variables use ToList. This is because ToArray requires an extra copy to output the final size.
- Collections persisted into fields or for a long time use ToArray to minimize memory overhead.
2015-01-29 19:20:11 +00:00
Matthias Mailänder
24deec2a7b
fix CodeLineMustNotEndWithWhitespace
2015-01-25 18:41:29 +01:00
Matthias Mailänder
895f02d7cb
update the music player widget when the music changes
2015-01-25 14:43:36 +01:00
sinaptik
b6b2b1a942
Add scroll buttons that appear in the production palette when icons exceed available space #7227
...
scroll up and down buttons: add disabled status, make dynamic, make smaller
Rename MaxIconRows to MaxIconRowOffset for clarity
Clean up scrolling logic, reset row position when switching tab
2015-01-23 18:40:11 +13:00
Matthias Mailänder
5aeb6eda06
move connection UI to commons
2015-01-17 15:17:54 +01:00
Oliver Brakmann
2267530865
Fix showing wrong IP for server admins in the lobby client tooltips
...
The external IP will now only be resolved for the local client.
2015-01-16 20:18:40 +01:00
reaperrr
be9d37f30e
Moves SupportPowers and related Widgets to Mods.Common
2015-01-15 13:18:11 +01:00
reaperrr
5b8c97ae37
Move OrderGenerators to Mods.Common
2015-01-11 03:04:40 +01:00
reaperrr
0e1773ac5d
Move Production to Mods.Common
2015-01-11 03:04:39 +01:00
abcdefg30
8ca61aa917
Updated all year numbers
2015-01-09 21:18:05 +01:00
Oliver Brakmann
c779259462
Merge pull request #7282 from penev92/bleed_moveFiles
...
Move more traits to Mods.Common
2015-01-08 17:29:19 +01:00
Matthias Mailänder
89b2f4d5d3
Merge pull request #7217 from Mailaender/chrome-init-cleanup
...
Cleaned up the ingame widget initialization
2015-01-08 07:40:36 +01:00
penev92
8504c233d9
Move everything Repair-related to Mods.Common
2015-01-08 01:49:14 +02:00
RoosterDragon
a6cda967c2
Formatted all files.
...
Automatically formatted all files via VS. This generally corrects indentation, removes trailing whitespace and corrects misplaced tabs or spaces. Manually tweaked a few files where required.
2015-01-06 21:28:50 +00:00
Oliver Brakmann
6a0363d482
Merge pull request #7265 from pchote/fix-lag-crash
...
Fix a race condition in the map download code.
2015-01-05 18:44:13 +01:00
Matthias Mailänder
9d2f33d42c
add a World type
2015-01-04 17:57:38 +01:00
Oliver Brakmann
dbbc790dab
Merge pull request #7270 from Mailaender/mods-ra-stylecop
...
StyleCop clean OpenRA.Mods.RA and enforce rules with Makefile
2015-01-04 17:45:20 +01:00
Matthias Mailänder
1b0e3a7a7f
StyleCop clean OpenRA.Mods.RA
2015-01-04 17:02:46 +01:00
Oliver Brakmann
75808c365a
Merge pull request #7269 from abcdefg30/general-polish
...
Some general polish
2015-01-04 16:54:37 +01:00
Matthias Mailänder
bc3acfeee7
StyleCop clean OpenRA.Game
2015-01-04 15:38:54 +01:00
abcdefg30
be5fc0bc27
Return from skirmish lobby to singleplayer menu instead of main menu
2015-01-04 13:06:06 +01:00
Paul Chote
a7ae72a7bb
Fix a race condition in the map download code.
...
Fixes #7264 .
2015-01-04 19:25:43 +13:00
reaperrr
654f56c5d5
Moves Attack, Armament, Move, Air traits and activities as well as anything required by them to Mods.Common.
...
Extracts Exit from Production into its own trait.
2015-01-04 05:24:28 +01:00
Oliver Brakmann
158517c09f
Merge pull request #7251 from Mailaender/stylecop-clean-game
...
StyleCop cleaned OpenRA.Game Part 1
2015-01-04 01:00:56 +01:00
Matthias Mailänder
44cd174a8d
StyleCop clean OpenRA.Game
2015-01-03 19:00:48 +01:00
penev92
b1e2e5bea6
Move PlayerStatistics to Mods.Common
2015-01-03 07:03:40 +02:00
Matthias Mailänder
167ba72119
Merge pull request #7246 from Hellhake/stylecop-ra
...
Fix StyleCop warnings in OpenRA.Mods.RA
2015-01-02 16:38:22 +01:00
Hellhake
b6410bc1e0
Fix StyleCop warnings in OpenRA.Mods.RA
2015-01-02 14:39:49 +01:00
Hellhake
fa72e04042
Remove BOM
2015-01-01 22:51:12 +01:00
Paul Chote
df425b29b3
Merge pull request #7194 from reaperrr/move-ra-common25
...
More Mods.RA reorganisation, more files moved to Mods.Common
2015-01-01 16:39:26 +13:00
Matthias Mailänder
714233d72e
Merge pull request #7220 from obrakmann/d2k-worm-option-and-maps
...
Add worms to d2k maps and add lobby option to disable them
2014-12-31 13:03:37 +01:00
Oliver Brakmann
de0a62eb42
Add a lobby option to control spawning creeps (viceroids/worms)
...
The lobby option is only exposed in d2k currently, not in TD or TS.
2014-12-28 19:26:39 +01:00
Paul Chote
d9752c3bdf
Make production type hotkeys configurable.
2014-12-28 17:24:12 +13:00
reaperrr
51fe951cd6
Move SupportPowers to Traits namespace
2014-12-26 21:38:47 +01:00
Paul Chote
568a23e395
Show all mods in the server browser.
2014-12-25 09:46:14 +13:00
Paul Chote
c45d472f9d
Hide started games from the server list to reduce noise.
2014-12-25 09:46:14 +13:00
Paul Chote
199f80c8ed
Cache GameServer joinable/compatible state across render frames.
2014-12-25 09:46:14 +13:00
Oliver Brakmann
39d13dc654
Merge pull request #7121 from pchote/switchmods
...
Add Launch.Connect command and on-connect mod switching.
2014-12-24 16:06:00 +01:00
Paul Chote
660f6682ff
Add Launch.Connect parameter for launching directly to a server.
2014-12-23 09:20:21 +13:00
Paul Chote
7bfffeadc2
Simplify mod content installation plumbing.
2014-12-23 09:20:21 +13:00
Paul Chote
6f0927069a
Allow outside code to specify the map chooser visibility filter.
2014-12-23 09:08:00 +13:00
Paul Chote
2ed594fd86
Introduce map Visibility field.
...
This replaces the Selectable, UseAsShellmap, and special-cased Type = "Mission" fields.
2014-12-23 09:08:00 +13:00
Matthias Mailänder
ea410d0688
Merge pull request #7096 from ScottNZ/countries
...
Closes #5928
2014-12-22 19:20:43 +01:00
Chris Forbes
2790748587
Fix NRE in start game MissionBrowser IsDisabled query
2014-12-22 16:12:53 +13:00