-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
539 lines (478 loc) · 21.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
<meta name="description" content="OpenRA is an open source project that recreates and modernizes classic real time strategy games, like Red Alert, Command & Conquer, and Dune 2000." />
<!-- OpenGraph -->
<meta property="og:title" content="OpenRA" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Classic strategy games rebuilt for the modern era" />
<meta property="og:url" content="https://www.openra.net/" />
<!-- query param at the end is for cache busting if/when more dynamic social images are added -->
<meta property="og:image" content="https://www.openra.net/images/social.jpg?t=2024-12-28-20-51" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@openRA">
<meta name="twitter:creator" content="@openRA">
<title>OpenRA - Classic strategy games rebuilt for the modern era</title>
<link rel="canonical" href="https://www.openra.net/" />
<link rel="stylesheet" href="/styles/normalize.css" />
<link rel="stylesheet" href="/styles/index.css" />
<link rel="stylesheet" href="/styles/lite-youtube-embed.css" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="alternate" href="/news/atom/" type="application/atom+xml" title="OpenRA - News Feed" />
<!-- hack to prevent Firefox from doing a "FOUC" -->
<!-- the contents of the <script> aren't important, just that it is here -->
<script>var PREVENT_FOUC = true;</script>
</head>
<body>
<div class="site">
<header class="site-header">
<div class="site-header__main">
<button class="site-header__menu-toggle" aria-label="Open Site Menu">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-menu"></use>
</svg>
</button>
<a href="/">
<img
class="site-header__logo"
src="/images/openra-logo-with-text.svg"
alt="OpenRA" />
</a>
<div class="site-header__menu">
<button class="site-header__menu-close" aria-label="Open Site Menu">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-x"></use>
</svg>
</button>
<nav class="site-header__nav">
<a class="site-header__nav__link" href="/news/" tabindex="0">News</a>
<a class="site-header__nav__link" href="/about/" tabindex="0">About</a>
<a class="site-header__nav__link" href="/download/" tabindex="0">Download</a>
<a class="site-header__nav__link" href="/games/" tabindex="0">Games</a>
<a class="site-header__nav__link" href="/community/" tabindex="0">Community</a>
<a class="site-header__nav__link" href="https://forum.openra.net" tabindex="0">
Forum
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-external-link"></use>
</svg>
</a>
<a class="site-header__nav__link" href="https://resource.openra.net" tabindex="0">
Resources
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-external-link"></use>
</svg>
</a>
</nav>
<nav class="site-header__social-nav">
<div class="site-header__social-nav__row">
<a class="site-header__social-nav__link" href="https://github.com/OpenRA/OpenRA" tabindex="0">
<span class="text--hidden">GitHub</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-github"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://discord.openra.net/" tabindex="0">
<span class="text--hidden">Discord</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-discord"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://openra.itch.io/openra" tabindex="0">
<span class="text--hidden">Itch</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-itch"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://www.facebook.com/openra" tabindex="0">
<span class="text--hidden">Facebook</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-facebook"></use>
</svg>
</a>
</div>
<div class="site-header__social-nav__row">
<a class="site-header__social-nav__link" href="https://twitter.com/openRA" tabindex="0">
<span class="text--hidden">Twitter</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-twitter"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://www.reddit.com/r/openra" tabindex="0">
<span class="text--hidden">Reddit</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-reddit"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://www.youtube.com/channel/UCRoiPL1J4K1-EhQeNazrYig" tabindex="0">
<span class="text--hidden">YouTube</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-youtube"></use>
</svg>
</a>
<a class="site-header__social-nav__link" href="https://steamcommunity.com/groups/openra/" tabindex="0">
<span class="text--hidden">Steam</span>
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-steam"></use>
</svg>
</a>
</div>
</nav>
</div>
</div>
<hr class="site-header__hr" />
</header>
<div class="site-content">
<section class="hero site-section">
<div class="site-section__content">
<header class="hero__header">
<h1 class="hero__intro-text">
<span id="game-carousel" class="hero__intro-text__games carousel">
<span class="carousel__items">
<span class="hero__intro-text__ra hero__intro-text__game carousel__item carousel__item">
Red Alert,
</span>
<span class="hero__intro-text__cnc hero__intro-text__game carousel__item carousel__item">
Command & Conquer,
</span>
<span class="hero__intro-text__d2k hero__intro-text__game carousel__item carousel__item">
Dune 2000,
</span>
</span>
</span>
<span class="hero__intro-text__tagline color--gold">Rebuilt for the Modern Era.</span>
</h1>
<div class="install">
<a class="button button--large button--primary" href="/download/">
Install Now
<svg class="button__icon icon">
<use xlink:href="/images/icons/icons.svg#icon-download"></use>
</svg>
</a>
</div>
</header>
<div id="hero-carousel" class="hero-carousel carousel">
<div class="hero-carousel__items">
<div class="carousel__items" style="width: 300%">
<div id="hero-ra" class="carousel__item">
<div class="carousel__item__content aspect-16-9">
<video
class="hero-carousel__image"
autoplay="true"
muted="true"
playsinline="true"
preload="auto">
<source src="/videos/red-alert-sizzle.webm" type="video/webm" />
<source src="/videos/red-alert-sizzle.mp4" type="video/mp4" />
</video>
</div>
</div>
<div id="hero-cnc" class="carousel__item">
<div class="carousel__item__content aspect-16-9">
<video
class="hero-carousel__image"
autoplay="true"
muted="true"
playsinline="true"
preload="auto">
<source src="/videos/command-and-conquer-sizzle.webm" type="video/webm" />
<source src="/videos/command-and-conquer-sizzle.mp4" type="video/mp4" />
</video>
</div>
</div>
<div id="hero-d2k" class="carousel__item">
<div class="carousel__item__content aspect-16-9">
<video
class="hero-carousel__image"
autoplay="true"
muted="true"
playsinline="true"
preload="auto">
<source src="/videos/dune-2000-sizzle.webm" type="video/webm" />
<source src="/videos/dune-2000-sizzle.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</div>
<span class="carousel__previous">
<button class="carousel__previous__button" aria-label="Previous Item">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-chevron-left"></use>
</svg>
</button>
</span>
<span class="carousel__next">
<button class="carousel__next__button" aria-label="Next Item">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-chevron-right"></use>
</svg>
</button>
</span>
<nav class="carousel__pages">
<a href="#" class="carousel__page">
<span class="carousel__page__indicator">Jump to Red Alert</span>
</a>
<a href="#" class="carousel__page">
<span class="carousel__page__indicator">Jump to Command & Conquer</span>
</a>
<a href="#" class="carousel__page">
<span class="carousel__page__indicator">Jump to Dune 2000</span>
</a>
</li>
</nav>
</div>
<div class="additional-info">
<div class="features">
<h3>Built for Modern Expectations</h3>
<ul>
<li>Updated gameplay designed around modern features like <strong>attack-move</strong>, <strong>unit veterancy</strong>, and the <strong>fog of war</strong></li>
<li>Online play with <strong>full support</strong> for mods and custom maps</li>
<li>Updated campaigns with <strong>new objectives</strong> and difficulties</li>
<li><strong>Natively supported</strong> on Windows, macOS and Linux</strong>
</ul>
</div>
<div class="community">
<h3>Made Better By The Community</h3>
<ul>
<li>Fully <strong>open source</strong> and developed in the open with <strong>community input</strong> into updates and balance</li>
<li>User created and curated maps</li>
<li>Includes a <strong>Mod SDK</strong> to create <strong>new RTS games</strong></li>
<li>Regular <strong>community streams</strong> and <strong>tournaments</strong></li>
</ul>
</div>
</div>
</div>
</section>
<hr class="site-section__divider" />
<section class="home__developer-updates site-section">
<div class="site-section__content">
<div class="dark-panel">
<div class="dark-panel__header">
<strong class="text--caps text--medium">Updates from the Developers</strong>
<a class="home__developer-updates__view-all" href="/news/">[View All Updates]</a>
</div>
<article class="developer-update">
<header class="developer-update__header">
<div class="developer-update__subheading text--medium">
Posted by <strong class="developer-update__author">PunkPun</strong> on <time>28 December 2024</time>
</div>
<h3 class="developer-update__heading">Playtest 20241228</h3>
</header>
<div class="developer-update__body">
<div style="border-radius: 4px; background-color: #272d2c; padding: 5px">
<div style="margin: -10px 5px">
<p>Just in time for the New Year, we are releasing <a href="/download">Playtest 20241228</a> with <a href="https://github.com/OpenRA/OpenRA/wiki/Changelog/6f9f128d81e599f7836637e59b108ca6d39fdfd7">several important fixes and minor features</a>:</p>
<p>Notable changes include:</p>
<ul>
<li>Saboteurs can now cloak while moving</li>
<li>added delete area button to the map editor</li>
<li>improved Battlefield News dropdown</li>
<li>improved formatting of unit descriptions and encyclopedias</li>
<li>fixed Dune 2000 not detecting installed music and videos</li>
<li>fixed harvesters not always acting correctly with queued orders</li>
<li>fixed a bug where the game window could glitch out on Windows 10</li>
<li>fixed several crashes</li>
<li>and fixed a few other minor bugs</li>
</ul>
<p>And of course the Tiberian Dawn HD playtest can be <a href="https://github.com/OpenRA/TiberianDawnHD/releases/tag/playtest-20241228">downloaded here</a>.</p>
<p>Stay tuned for more updates and be sure to take part in the playtest. Don’t forget to share your feedback with us on <a href="https://forum.openra.net/">our forum</a>, <a href="https://discord.openra.net">community Discord server</a>, or <a href="https://github.com/OpenRA/OpenRA/issues">GitHub</a>. Good luck on the battlefield, Commanders, and happy holidays!</p>
</div>
</div>
<p>Welcome back, Commanders!</p>
<p>After a whole year of development, the OpenRA team proudly presents <a href="/download">Playtest 20241116</a>. This latest installment elevates your OpenRA experience with enhanced visuals, new tools and improved performance across the board.</p>
<figure>
<video autoplay="" loop="" muted="">
<source src="/images/news/20241116-chrono.mp4" type="video/mp4" alt="chrono vortex" />
<source src="/images/news/20241116-chrono.webm" type="video/webm" alt="chrono vortex" />
<img src="/images/news/20241116-vortex.webp" alt="chrono vortex" />
</video>
<figcaption>OpenRA now supports post-processing effects out of the box!</figcaption>
</figure>
<p>Introducing the newly revamped Map Editor, designed with a modern interface and a cohesive design. We took notice of how players use the editor and reimagined it to better align with your creative needs.</p>
<figure>
<img src="/images/news/20241116-map-editor.webp" style="width: 800px" alt="Map Editor" />
<figcaption>New Map Editor!</figcaption>
</figure>
<p>New Map Editor features include:</p>
<ul>
<li>draggable selections</li>
<li>draggable actors</li>
<li>measurement tools</li>
<li>a marker layer</li>
<li>a play button</li>
<li>and more!</li>
</ul>
<p>We added an encyclopedia to the Tiberian Dawn mod! This feature was inspired by the community’s desire for an in-game resource to consolidate knowledge about units, structures, and technologies. While fan-made wikis have been invaluable, many have become outdated or inconsistent as the game evolves.</p>
<figure>
<img src="/images/news/20241116-eva.webp" style="width: 800px" alt="Tiberian Dawn EVA Database" />
<figcaption>New EVA Database!</figcaption>
</figure>
<p>This latest release has significantly improved support for HD art assets. You should notice faster load times and overall performance improvements for the “Tiberian Dawn HD” project. It is packaged as a separate release and can be <a href="https://github.com/OpenRA/TiberianDawnHD/releases/tag/playtest-20241116">downloaded here</a>. This preview is multiplayer-compatible with the main 20241116 playtest. The C&C Remastered Collection must be installed through Steam or the EA App, and if using macOS or Linux, the project README provides <a href="https://github.com/OpenRA/TiberianDawnHD#asset-installation">detailed installation instructions</a>.</p>
<p>Other notable changes include:</p>
<ul>
<li>game assets can now be installed from the Steam release of The Ultimate Collection</li>
<li>switched to high-quality Dune 2000 assets and included lots of extra visual polish</li>
<li>added two Red Alert missions and improved the quality of many others</li>
<li>Red Alert and Dune 2000 balance changes</li>
<li>skirmish options no longer reset between matches</li>
<li>behind the scenes we made significant progress towards supporting additional languages in future releases.</li>
</ul>
<p>As always, the <a href="https://github.com/OpenRA/OpenRA/wiki/Changelog/151b0777e7bdda9e672212acedfc0773f8312dc7">full changelog</a> is available on GitHub if you would like to find out more.</p>
<p>Don’t forget to share your feedback with us on <a href="https://forum.openra.net/">our forum</a>, <a href="https://discord.openra.net">community Discord server</a>, or <a href="https://github.com/OpenRA/OpenRA/issues">GitHub</a>. We hope you’ll enjoy this newest installment of OpenRA! Good luck on the battlefield, Commanders!</p>
</div>
<footer class="developer-update__footer">
<div id="disqus_thread"></div>
<script>
if (document.domain == 'www.openra.net') {
var disqus_config = function () {
this.page.url = window.location.origin + "/news/playtest-20241228/";
this.page.identifier = "playtest-20241116";
};
(function() {
var d = document, s = d.createElement('script');
s.src = '//openra.disqus.com/embed.js';
s.async = true;
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
}
else
{
var warn = document.createElement("p");
warn.appendChild(document.createTextNode("Comments are disabled for this domain."));
warn.classList.add("text--warning");
warn.classList.add("text--small");
document.getElementById("disqus_thread").appendChild(warn);
}
</script>
<noscript>
Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript" rel="nofollow">comments—powered by Disqus.</a>
</noscript>
</footer>
</article>
</div>
</div>
</section>
</div>
<footer class="site-footer">
<hr class="site-footer__hr" />
<div class="site-footer__main u-centered-content u-centered-content--small">
<a class="site-footer__logo-link" href="/">
<img class="site-footer__logo" src="/images/openra-logo-with-text.svg" alt="OpenRA" />
</a>
<div class="site-footer__legal">©2007-2024 The OpenRA Developers (<a href="/legal/">Legal notices</a>)</div>
<nav class="site-footer__nav">
<div>
<a href="/news/" tabindex="0">News</a>
</div>
<div>
<a href="/about/" tabindex="0">About</a>
</div>
<div>
<a href="/download/" tabindex="0">Download</a>
</div>
<div>
<a href="/games/" tabindex="0">Games</a>
</div>
<div>
<a href="/community/" tabindex="0">Community</a>
</div>
<div>
<a href="https://forum.openra.net" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-conversation"></use>
</svg>
Forum
</a>
</div>
<div>
<a href="https://resource.openra.net" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-wrench"></use>
</svg>
Resources
</a>
</div>
</nav>
<nav class="site-footer__social-nav">
<div>
<a href="https://github.com/OpenRA/OpenRA" class="color--github" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-github"></use>
</svg>
GitHub
</a>
</div>
<div>
<a href="https://discord.openra.net/" class="color--discord" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-discord"></use>
</svg>
Discord
</a>
</div>
<div>
<a href="https://openra.itch.io/openra" class="color--itch" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-itch"></use>
</svg>
Itch
</a>
</div>
<div>
<a href="https://www.facebook.com/openra" class="color--facebook" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-facebook"></use>
</svg>
Facebook
</a>
</div>
<div>
<a href="https://twitter.com/openRA" class="color--twitter" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-twitter"></use>
</svg>
Twitter
</a>
</div>
<div>
<a href="https://www.reddit.com/r/openra" class="color--reddit" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-reddit"></use>
</svg>
Reddit
</a>
</div>
<div>
<a href="https://www.youtube.com/channel/UCRoiPL1J4K1-EhQeNazrYig" class="color--youtube" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-youtube"></use>
</svg>
YouTube
</a>
</div>
<div>
<a href="https://steamcommunity.com/groups/openra/" class="color--steam" tabindex="0">
<svg class="icon">
<use xlink:href="/images/icons/icons.svg#icon-steam"></use>
</svg>
Steam
</a>
</div>
</nav>
</div>
</footer>
</div>
<script
src="/scripts/vendor/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<script src="/scripts/vendor/svgxuse.min.js" async></script>
<script src="/scripts/vendor/lite-youtube-embed.js" async></script>
<script src="/scripts/global.js"></script>
<script type="text/javascript" src="/scripts/index.js"></script>
</body>
</html>