-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1115 lines (961 loc) · 51.4 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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>OpenApoc: new X-COM: Apocalypse</title>
<meta name="description" content="OpenApoc - open-source re-implementation of the original X-COM: Apocalypse">
<meta name="author" content="mak">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:site_name" content="OpenApoc its new X-COM: Apocalypse" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://openapoc.org/p/openapoc.og.png" />
<meta property="og:title" content="OpenApoc its open-source X-COM: Apocalypse" />
<meta property="og:description" content="OpenApoc - official promo website and forum for discussions and development: Coding, Data, Ports, Translations, Game Mods, Tools, Welcome! Introduce Yourself area" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@OpenApoc">
<meta name="twitter:title" content="OpenApoc its open-source X-COM: Apocalypse">
<meta name="twitter:description" content="OpenApoc - official promo website and forum for discussions and development: Coding, Data, Ports, Translations, Game Mods, Tools, Welcome! Introduce Yourself area">
<meta name="twitter:image" content="http://openapoc.org/p/openapoc.og.png">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
<div class="line-scale-pulse-out">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="row">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.png" alt="Homepage">
</a>
</div>
<nav class="header-nav-wrap">
<ul class="header-main-nav">
<li class="current"><a class="smoothscroll" href="#home" title="intro">Intro</a></li>
<li><a class="smoothscroll" href="#about" title="about openapoc">About</a></li>
<li><a class="smoothscroll" href="#features" title="openapoc features">Features</a></li>
<li><a class="smoothscroll" href="#download" title="download openapoc">Download</a></li>
<li><a target="_blank" href="https://github.com/OpenApoc/OpenApoc" title="openapoc GitHub">GitHub</a></li>
<li><a target="_blank" href="http://openapoc.org/forum/" title="OpenApoc Forum">Forum</a></li>
<li><a target="_blank" href="http://openapoc.org/" title="OpenApoc Home">Home</a></li>
</ul>
<div class="header-cta">
<nav id="primary_nav_wrap">
<ul>
<li><a href="#contribute" class="btn btn--primary header-cta__btn smoothscroll">Contribute</a>
</li>
</ul>
</nav>
</div>
</nav> <!-- end header-nav-wrap -->
<a class="header-menu-toggle" href="#"><span>Menu</span></a>
</div>
</header> <!-- end header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/hero-bg.jpg" data-natural-width=1680 data-natural-height=900 data-position-y=center>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<div class="home-content__left">
<h1>
Dedicated to all fans of X-COM: Apocalypse!
</h1>
<h3>
OpenApoc is mod for X-COM: Apocalypse, it's built on a new, free
and open-source engine that re-implements the features of the original.
<br>OpenApoc requires the original files to run, licensed under the GPL3 and written in C++ / SDL2.
OpenApoc is currently in an Alpha state and playable.
</h3>
<div class="home-content__btn-wrap">
<a href="#download" class="btn btn--primary home-content__btn smoothscroll">
Download OpenApoc
</a>
</div>
</div> <!-- end home-content__left-->
<div class="home-content__right">
<img src="images/flag.png">
</div> <!-- end home-content__right -->
</div> <!-- end home-content__main -->
<style>
.online-subs-count {
border-radius:4px;
color:#eee;
font-family:Arial;font-size:10px;
padding:3px 3px 1px!important;
position:absolute;
top:0;right:0;
margin: -6px -10px 0 0px;
line-height:100%;
font-weight:700;
}
#discord-online {
background-color:red;
}
#subs {
color:#b9b9b9;
border:1px solid #b9b9b9;
background: transparent;
}
</style>
<ul class="home-content__social">
<li>
<a target="_blank" href="https://github.com/OpenApoc/OpenApoc"><i class="fab fa-github" aria-hidden="true"></i><span>GitHub</span></a>
</li>
<li>
<a target="_blank" href="https://discord.gg/f8Rayre"><i class="fab fa-discord" aria-hidden="true">
<div class="online-subs-count" id="discord-online" title="Discord Online"></div>
</i><span>Discord</span></a>
</li>
<li>
<a target="_blank" href="https://fb.com/openapoc"><i class="fab fa-facebook-f" aria-hidden="true">
<div class="online-subs-count" id="subs" title="Facebook Subscriptions">755</div>
</i><span>Facebook</span></a>
</li>
<li>
<a target="_blank" href="https://vk.com/openapoc"><i class="fab fa-vk" aria-hidden="true">
<div class="online-subs-count" id="subs" title="Vkontakte Subscriptions">447</div>
</i><span>Vkontakte</span></a>
</li>
<li>
<a target="_blank" href="https://www.youtube.com/c/OpenApoc"><i class="fab fa-youtube" aria-hidden="true">
<div class="online-subs-count" id="subs" title="Youtube Subscriptions">365</div>
</i><span>YouTube</span></a>
</li>
<li>
<a target="_blank" href="https://www.reddit.com/r/OpenApoc"><i class="fab fa-reddit-alien" aria-hidden="true">
<div class="online-subs-count" id="subs" title="Reddit Subscriptions">79</div>
</i><span>Reddit</span></a>
</li>
</ul>
<script>
document.getElementById("discord-online").innerHTML = Math.floor((Math.random() * 160) + 120);
</script>
<!-- end home-social -->
</div> <!-- end home-content -->
<a href="#about" class="home-scroll smoothscroll">
<span class="home-scroll__text">Scroll</span>
<span class="home-scroll__icon"></span>
</a>
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up" data-aos-duration="300">
<div class="col-full">
<h1 class="display-1">
X-COM 3: Apocalypse is still the best.
</h1>
<p class="lead">
The X-COM 3: Apocalypse concept was much more ambitious than the first two games.
The ideas conceived by Julian and Nick Gollop were so far ahead of their time.
However, only a small part of their concept was realized.
Our goal at OpenApoc is to implement this grand, original idea and more.
</p>
</div>
</div> <!-- end section-header -->
<div class="row wide about-desc" data-aos="fade-up" data-aos-duration="300">
<div class="col-full slick-slider about-desc__slider">
<div class="about-desc__slide">
<h3 class="item-title">Leaders.</h3>
<p>
Each corporation was supposed to have a leader (some of the models were included in the final game but disabled) who could be detained, arrested, interrogated, or killed. These actions would have had a real influence on the parent organization;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Agent versatility.</h3>
<p>
X-COM operatives could perform the functions of spies by performing intelligence operations within other organizations in order to obtain more detailed information about what was happening around the city and wider region;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Diplomacy.</h3>
<p>
It was planned to introduce a developed system of diplomatic relations, in which the player could enter into alliances with other organizations and provoke the start of corporate and gang wars, amongst other things;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Realistic Economy.</h3>
<p>
Organizations had to conduct real economic activity, compete in the markets, could sell and buy buildings at auctions. They could even apply for planning permission to expand the cities!;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Known Cut Items.</h3>
<p>
CEOs, VIPs, Soldiers, Zorium, Tracker Gun and Clip, ForceWeb, Energy Pod, Dimension Destabilizer, Psi-Grenade, Multi-Tracker, Mind Shield, Alien Detector, Dimension Force Field, Dimension Shifter, Cells, Advanced Alien Containment, Live Overspawn, Walls, One Way to Win;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">More Alien Worlds.</h3>
<p>
It was planned that the game would have multiple planets, space travel, space pirates and several procedurally generated alien dimensions. All of this territory could be captured by the alien forces if X-COM does not protect them. Even other organisations pose a threat!;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Skills and Actions.</h3>
<p>
Agents were to have a wider series of skills: forensic science, subversion, swimming, interrogation, driving and pilot abilities. Also, the developers partially implemented climbing and acrobatic abilities but these were disabled in the final game;
</p>
</div> <!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Multiplayer.</h3>
<p>
The game also featured a scenario generator and multiplayer options using a hotseat turn based system or a real time LAN option. This was mostly ready but cut before final release due to issues with the old IPX protocol;
</p>
</div> <!-- end about-desc__slide -->
</div> <!-- end about-desc__slider -->
</div> <!-- end about-desc -->
</section> <!-- end s-about -->
<!-- about-how
================================================== -->
<section id="about-how" class="s-about-how">
<div class="row">
<a href="https://www.youtube.com/watch?v=FlPalDkWsuA" data-lity>
<div class="col-full video-bg" data-aos="fade-up" data-aos-duration="300">
<div class="shadow-overlay"></div>
<a class="btn-video" href="https://www.youtube.com/watch?v=FlPalDkWsuA" data-lity>
<span class="video-icon"></span>
</a>
<div class="stats">
<div class="item-stats">
<span class="item-stats__num">
17.1T
</span>
<span class="item-stats__title">
Downloads
</span>
</div> <!-- end item-stats -->
<div class="item-stats">
<span class="item-stats__num">
2.5K
</span>
<span class="item-stats__title">
Commits at GitHub
</span>
</div> <!-- end item-stats -->
</div>
</div> <!-- end video-bg -->
</a>
</div>
<div class="row process-wrap">
<h2 class="display-2 text-center" data-aos="fade-up" data-aos-duration="300">How the OpenApoc Community Works?</h2>
<div class="process" data-aos="fade-up" data-aos-duration="300">
<div class="process__steps block-1-2 block-tab-full group">
<div class="col-block step">
<h3 class="item-title">Original Installation</h3>
<p>To run OpenApoc, you need a copy of the original X-COM: Apocalypse as a CD-ROM ISO or via Steam/GOG distributions. We don't support piracy, or pirate copies of the game. Join our Discord for advice on how to obtain legal copies of the game or set them up under DOSBox.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">OpenApoc Setup</h3>
<p>OpenApoc can be configured through a configuration file OpenApoc_settings.conf. In the config file, you can customize the game language, video intro, game window size, sound and other options. By also editing engine files, you can change, for example, the properties of weapons.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Bug Reporting</h3>
<p>Bug Reporting is important part of OpenApoc development and when you find one, you can use debug commands to help us understand it better. To report bugs in OpenApoc, please use our <a target="_blank" href="https://github.com/OpenApoc/OpenApoc/issues" title="OpenApoc Github issue tracker">Github issue tracker</a>. Please describe bug us much as possible and attach openapoc_log.txt from game root, screens, videos if needed.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Your contribution</h3>
<p>OpenApoc is free, open-source, software therefore anything you can do to help the project, even just playing it, makes us, and the wider community happy. If you want to contribute, we accept programmers, reverse engineers, text translators and testers. Please check out our contribution section to see how you can help the project.
</p>
</div>
</div> <!-- end process__steps -->
</div> <!-- end process -->
</div> <!-- end about-how -->
</section> <!-- end s-about-how -->
<!-- features
================================================== -->
<section id="features" class="s-features target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up" data-aos-duration="300">
<div class="col-full">
<h1 class="display-1">
OpenApoc Features.
</h1>
<p class="lead">
Open-source model move old games to a new modern level, its new way for old games communities to growth and modding constantly progress by making influx of new players and a new content.
</p>
</div>
</div> <!-- end section-header -->
<div class="row features block-1-3 block-m-1-2">
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-shuffle"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Crossplatform engine</h3>
<p>Port the game to any platform you like (Windows, Linux, Android, Mac Os etc), customize it to your liking, or use it to make your own far-fetched remakes.
The code is fully documented and open-source so anyone can take a crack at it.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-lego-block"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Modding system</h3>
<p>Mods gives game new life and almost anyone with imagination and minimal programming skills
can create mods that will sometimes change the face of the game completely. Or you want tweak some aspect - its easy and none of it is hardcoded.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-search"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Full Debug System</h3>
<p>Everyone makes errors so Debug System is essential to finding errors and is your best friend while programming.
Its interactive debugging, control flow analysis, unit testing, integration testing, log file analysis, memory dumps.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-cmd"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Full Hotkey System</h3>
<p>In OpenApoc added new Hotkeys for gameplay and as for debug system so now after you learn it you get more joy and capabilities from game.
<a target="_blank" href="https://github.com/OpenApoc/OpenApoc/blob/master/README_HOTKEYS.txt">Read OpenApoc Hotkey list</span></a>
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-fast-forward"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Skirmish Module</h3>
<p>In skirmish module you can choose fast fight wich any amount or kind of enemies, weapons, maps area, test any tactics.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up" data-aos-duration="300">
<div class="item-feature__icon">
<i class="icon-desktop"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Screen Resolutions</h3>
<p>Here is simple you get optimization for any kind of modern monitor resolutions that will give you additional opportunities in battle and enjoyment of the game.
</p>
</div>
</div>
</div> <!-- end features -->
</section> <!-- end s-features -->
<!-- contribute
================================================== -->
<section id="contribute" class="s-contribute target-section">
<div class="row section-header has-bottom-sep align-center add-bottom" data-aos="fade-up" data-aos-duration="300" >
<div class="col-full">
<h1 class="display-1">
Ways to Get Involved and become part of OpenApoc
</h1>
<p class="lead">
Thank you for your interest in contributing to the OpenApoc project! <br>
Contributing is most inspiring and honorable mission and contributors are driving force behind improvements to the OpenApoc and the community itself.
</p>
</div>
</div>
<!-- end section-header -->
<div class="row half-bottom aos-init aos-animate" data-aos="fade-up" data-aos-duration="300">
<div class="col-six tab-full aos-init aos-animate" data-aos="fade-up" data-aos-duration="300">
<h3>Contribution</h3>
<div class="tab first">
<input id="tab-iwantcontribute" type="radio" name="tabs2">
<label for="tab-iwantcontribute">I want contribute but im lazy</label>
<div class="tab-content">
<ol>
<li>You can join our social groups and repost/like some content or leave your wise opinion in comment =].</li>
<li>You can leave comments about OpenApoc in X-Com Apocalypse topics or article.</li>
<li>You can make short youtube review or guide about OpenApoc.</li>
<li>You can write comments or article about OpenApoc at your favorite web resource.</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwantcode" type="radio" name="tabs2">
<label for="tab-iwantcode">I want start coding for OpenApoc</label>
<div class="tab-content">
<ol>
<li>OpenApoc is an open-source and written in C++ / SDL2.
<br>More info and guides:
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/blob/master/README.md">BUILDING AND LIBRARIES<i class="fab fa-github farp"></i></a>
<a target="_blank" class="btn btn--mini full-width" href="https://ufopaedia.org/index.php/CodingStyle(OpenApoc)">OPENAPOC CODING STYLE<i class="fab fa-github farp"></i></a>
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/issues">Issues list at GitHub <i class="fab fa-github farp"></i></a>
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/graphs/contributors">code contributors list <i class="fab fa-github farp"></i></a>
</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwanttranslate" type="radio" name="tabs2">
<label for="tab-iwanttranslate">I want improve\translate OpenApoc</label>
<div class="tab-content">
<ol>
<li>
Register at transifex and apply for needed language:
<a target="_blank" class="btn btn--mini full-width" href="https://www.transifex.com/x-com-apocalypse/apocalypse/languages/">OpenApoc at Transifex</a>
</li>
<li>Translate/improve needed strings or make request for new language</li>
<li>Download your language file (wich .po ext.), then put .po file to the openapoc\data\languages\ by replace existing </li>
<li>Then go to www.po2mo.net and convert .po file, then donload it and replace file in (for example)
openapoc\data\languages\ru_RU\LC_MESSAGES, only choose your language</li>
<li>Now you will see you changes in the game</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwanttest" type="radio" name="tabs2">
<label for="tab-iwanttest">I want run testing and bugreporting</label>
<div class="tab-content">
<ol>
<li>Setup OpenApoc and register at GitHub</li>
<li>If you find some bug in OpenApoc go to GitHub and post bugreport here
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/issues/new">OpenApoc official bugreport place</a>
</li>
<li>Pls describe bug very detailed and attach log file (openapoc_log.txt) from OpenApoc root folder</li>
<li>If you need attach files wich different extentions, just add them to zip before attach.</li>
<li>If you need test how some functions, mechanics works you can use debug hotkey system:
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/blob/master/README_HOTKEYS.txt">OpenApoc debug hotkey list</a>
</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwantmodding" type="radio" name="tabs2">
<label for="tab-iwantmodding">I want start modding OpenApoc</label>
<div class="tab-content">
<ol>
<li>There is no currently compelete modding system now, you need modify game xml files in your build to see changes in OpenApoc,
<br>but even now modding easier then in original X-Com Apocalypse.
</li><li>In future community should add modding system where you can put your modified files in (for example) openapoc\data\mods and then manage it in the game.</li>
<li>More info and guides:
<a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/blob/master/README.md">Source code at GitHub <i class="fab fa-github farp"></i><!--</a-->
</a><a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/issues">Issues list at GitHub <i class="fab fa-github farp"></i><!--</a-->
</a><a target="_blank" class="btn btn--mini full-width" href="https://github.com/OpenApoc/OpenApoc/graphs/contributors">code contributors list <i class="fab fa-github farp"></i></a>
</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwantart" type="radio" name="tabs2">
<label for="tab-iwantart">I want make art piece for OpenApoc</label>
<div class="tab-content">
<ol>
<li>If you Designer, Illustator or CG Artist and you can make fine artwork related to OpenApoc pls join our discord and we discuss this.</li>
<li>You can make cover art for promotions, photoshop interface concepts for mods and new mechanics, sprites for new aliens, units, weapons, in general embody your bright vision in design.</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-iwantgivemoney" type="radio" name="tabs2">
<label for="tab-iwantgivemoney">I want support with money</label>
<div class="tab-content">
<ol>
<li>We can use your money to conduct various events to bring more new peoples in projects (programmers) and speed up the development. Check green donations block in contribute section.</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<h3 class="spacetop">Whats Left list (roadmap)</h3>
<div class="tab first">
<input id="tab-openapoc-before-2019" type="radio" name="tabs2">
<label for="tab-openapoc-before-2019">1. Already done before 2019</label>
<div class="tab-content">
<ol>
<li class="done" title=" Done ">Framework core, UI framework core - 2014</li>
<li class="done" title=" Done ">Fixes, Game UI, AI, Cityscape core,Tileengine core, data extraction - 2016</li>
<li class="done" title=" Done ">Fixes, Game UI, AI, Cityscape, Battlescape core, Framework core, data extraction, Debug system and whole HotKey set (also soldiers equip. HK), Skirmish module,Over 40 Improvements and options interface - 2017</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-togetalpha" type="radio" name="tabs2">
<label for="tab-togetalpha">2. To have a truly playable Alpha state: (Done)</label>
<div class="tab-content">
<ol>
<p><a class="btn btn--mini full-width" target="_blank" href="https://github.com/OpenApoc/OpenApoc/issues/263">Issue where tasks gathered #263</a></p>
<li class="done" title=" Done ">Aliens moving from building to building</li>
<li class="done" title=" Done ">Alein eggs/Chrysalis seem don't hatch after some time</li>
<li class="done" title=" Done ">Funding for X-Com and orgs every week</li>
<li class="done" title=" Done ">Bribes for organizations</li>
<li class="done" title=" Done ">Agent Training from battlescape(?)</li>
<li class="done" title=" Done ">Vehicle location screen dragndrop mechanics - redv</li>
<li class="done" title=" Done ">Hover screen for items etc - FranciscoDA</li>
<li class="done" title=" Done ">Transport repaired at base - Istrebitel</li>
<li class="done" title=" Done ">Agent Training on base - Istrebitel</li>
<li class="done" title=" Done ">Some fixes to Ufopaedia display</li>
<li class="done" title=" Done ">Proper transferring agents and items</li>
<li class="done" title=" Done ">AlertScreen extermination</li>
<li class="done" title=" Done ">UI hover Tooltips in MAR.06.19</li>
<li class="done" title=" Done ">Controls for editing text (naming soldiers and other property)</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-togetbeta" type="radio" name="tabs2">
<label for="tab-togetbeta">3. To reach a Beta state (All features implemented):</label>
<div class="tab-content">
<p>
<a class="btn btn--mini full-width" target="_blank" href="https://github.com/OpenApoc/OpenApoc/issues/264">Issue where tasks gathered #264</a>
</p>
</div>
</div>
<div class="tab">
<input id="tab-togetrelease" type="radio" name="tabs2">
<label for="tab-togetrelease">4. To be fully vanilla feature 1.0:</label>
<div class="tab-content">
<p>
<a class="btn btn--mini full-width" target="_blank" href="https://github.com/OpenApoc/OpenApoc/issues/265">Issue where tasks gathered #265</a>
</p>
</div>
</div>
<div class="tab">
<input id="tab-moddingandenhance" type="radio" name="tabs2">
<label for="tab-moddingandenhance">5. Modding Functions, Extra Features, Enhancements and Quality of Life Updates</label>
<div class="tab-content">
<p>
<a class="btn btn--mini full-width" target="_blank" href="https://github.com/OpenApoc/OpenApoc/issues/941">Issue where tasks gathered #941</a>
</p>
</div>
</div>
</div>
<div class="col-six tab-full aos-init aos-animate" data-aos="fade-up" data-aos-duration="300">
<h3>General FAQ</h3>
<div class="tab first">
<input id="tab-one" type="radio" name="tabs2">
<label for="tab-one">When will be OpenApoc released?</label>
<div class="tab-content">
<ol>
<li>OpenApoc is free, open-source project so will be ready when ready</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-two" type="radio" name="tabs2">
<label for="tab-two">How i can play in OpenApoc now?</label>
<div class="tab-content">
<ol>
<li>
Acquire X-Com Apocalypse original game CD, or an image/archive of that.
<br>- you need have all files in ISO file including MUSIC etc
<br>- if it's in .iso format, rename it to "cd.iso"
<br>- if it's not, copy all the contents into a folder and rename the folder to "cd.iso"
</li>
<li>
Download OpenApoc by visiting
<a target="_blank" class="btn btn--mini full-width smoothscroll" href="#download">Download OpenApoc</a>
<br>- There should be green lines
<br>- Click Platform x64 (or Win32 if you need 32bit binaries)
<br>- Click ARTIFACTS
<br>- Download the first option (without "debug" in it) in zip
<br>- Or you can download install exe file (where you can choose destinations)
<br>- Unzip downloaded file in new folder (for example openapoc)
<br>- If you see yellow or red lines then go to HISTORY at the top and click previous build that's green
</li>
<li>
Put cd.iso (image or folder) into DATA folder inside OpenApoc folder
<br>- we also support the .cue / .bin files (which are used, for example, in the gog.com version)
<br>- you rename the .cue file "cd.iso", put it in the data/ folder, then put the .bin file in the same folder
<br>(without changing it's name - so for example the gog.com file remails "XCOM.BIN")
</li>
<li>
Run Openapoc.exe and enjoy!
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-three" type="radio" name="tabs2">
<label for="tab-three">What is current OpenApoc primary goal?</label>
<div class="tab-content">
<ol>
<li>Our goal is to reach the state of the original. And only after that to improve or create modifications for the game.</li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-four" type="radio" name="tabs2">
<label for="tab-four">Where the community communicate?</label>
<div class="tab-content">
<ol>
<li>Our communications goes in Discord, pls join:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-five" type="radio" name="tabs2">
<label for="tab-five">How to change language in OpenApoc?</label>
<div class="tab-content">
<ol>
<li>Create file name and extension <code>OpenApoc_settings.conf</code> inside OpenApoc folder (if you dont have one).</li>
<li>Put these two strings of text in it and save:
<p class="code">[Framework]
<br>Language=en_GB.UTF-8</p></li>
<li>Other languages you can find in openapoc\data\languages</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-six" type="radio" name="tabs2">
<label for="tab-six">How to change screen resolution in OpenApoc?</label>
<div class="tab-content">
<ol>
<li>Create file name and extension <code>OpenApoc_settings.conf</code> inside OpenApoc folder (if you dont have one). </li>
<li>Put your screen resolution in that way and save:
<p class="code">[Framework.Screen]
<br>Width=1920
<br>Height=1080
<br>Fullscreen=1</p></li>
<li>Put these lines if you want skip intro in <code>OpenApoc_settings.conf</code> file and save:
<p class="code">[Game]
<br>SkipIntro = 1</p></li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-seven" type="radio" name="tabs2">
<label for="tab-seven">How to turn on fullscreen in OpenApoc?</label>
<div class="tab-content">
<ol>
<li>Create file name and extension <code>OpenApoc_settings.conf</code> inside OpenApoc folder (if you dont have one). </li>
<li>Put your screen resolution in that way and save:
<p class="code">[Framework.Screen]
<br>Width=1920
<br>Height=1080
<br>Fullscreen=1</p></li>
<li>Put these lines if you want skip intro in <code>OpenApoc_settings.conf</code> file and save:
<p class="code">[Game]
<br>SkipIntro = 1</p></li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-eight" type="radio" name="tabs2">
<label for="tab-eight">Will the cut technologies, items be added to the game?</label>
<div class="tab-content">
<ol>
<li>Some cutted buildings and items already added but only available through cheats. Its possible add fully working items, but after we reach state of original and we reach 1.0</li>
</ol>
</div>
</div>
<div class="tab">
<input id="tab-nine" type="radio" name="tabs2">
<label for="tab-nine">Problems installing or launching OpenApoc or Apoc?</label>
<div class="tab-content">
<ol>
<li>If you update working OpenApoc and it doesnt boot up you need delete all text that goes after your additions from config file <code>OpenApoc_settings.conf</code></li>
<li>If problems or questions arise, join our discord and we help you:
<a target="_blank" class="btn btn--mini full-width" href="https://discord.gg/0nS950g1olwDxzXB">OpenApoc at Discord <i class="fab fa-discord" aria-hidden="true"></i></a>
</li>
</ol>
</div>
</div>
</div>
</div>
<!-- end row -->
</section>
<!-- end s-contribute -->
<!-- download
================================================== -->
<section id="download" class="s-download target-section">
<div class="row section-header align-center" data-aos="fade-up" data-aos-duration="300">
<div class="col-full">
<h1 class="display-1">
Download and Join Our Community in Discord.
</h1>
<p class="lead">
After download and testing OpenApoc join Discord to leave feedback.
</p>
</div>
</div> <!-- end section-header -->
<div class="row add-more-bottom">
<div class="col-full text-center ">
<ul class="download-badges" data-aos="fade-up" data-aos-duration="300">
<li><a target="_blank" class="btn btn--stroke col-five full-width" href="https://ci.appveyor.com/project/openapoc/openapoc">Windows</a></li>
<li><a target="_blank" class="btn btn--stroke col-five full-width" href="https://travis-ci.org/OpenApoc/OpenApoc">Linux</a></li>
</ul>
</div>
</div>
<div class="row add-more-bottom" data-aos="fade-up" data-aos-duration="300">
<div class="col-six tab-full">
<h3>Discord</h3>
<p>You can find source code of OpenApoc, how building and pragramming at GitHub. Here some statistic.</p>
<iframe src="https://discord.com/widget?id=142798944970211328&theme=dark" width="100%" height="329" allowtransparency="true" frameborder="0"></iframe>
</div>
<div class="col-six tab-full">
<h3>GitHub</h3>
<p>You can find source code of OpenApoc, how building and pragramming at GitHub. Here some statistic.</p>
<style>
/* --------
* ## tables
--- */
table {
border-width: 0!important;
width: 100%;
max-width: 100%;
font-family: "Roboto", arial;
border-collapse: collapse;
color:#8a8e94;
font-size: 120%;
background: #202225;
}
th,
td {
padding: 0.4rem 1.5rem 0.4rem !important;
text-align: left;
font-size: 100%;
font-weight: 300;
border-left: 0!important;
border-right: 0!important;
border-bottom: 1px solid #333!important;
border-top: 0px solid #333!important;
background: transparent!important;
}
th {
vertical-align: middle!important;
color: #eee;
}
th:first-child,
td:first-child {
padding-left: 25px;
}
th:last-child,
td:last-child {
padding-right: 0;
}
.table-responsive {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: 5px;
}
/* ----------
* ## Spacing
* ------------- */
table,
.video-container,
.ss-custom-select {
margin-bottom: .2rem;
}
</style>
<div class="table-responsive">
<a href="https://github.com/OpenApoc/OpenApoc" target="_blank">
<table style="min-height:320px;">
<thead>
<tr>
<th>Statistic</th>
<th>Open</th>
<th>Closed</th>
</tr>
</thead>
<tbody>
<tr>
<td>Commits</td>
<td>3263</td>
<td>3263</td>
</tr>
<tr>
<td>Pull requests</td>
<td>15</td>
<td>477</td>
</tr>
<tr>
<td>Issues</td>
<td>187</td>
<td>324</td>
</tr>
<tr>
<td>Contributors</td>
<td>31</td>
<td>31</td>
</tr>
<tr>
<td>Forks</td>
<td>78</td>
<td>78</td>
</tr>
<tr>
<td>Stars</td>
<td>343</td>
<td>343</td>
</tr>
</tbody>
</table>
</a>
</div>
</div>
</section> <!-- end s-download -->
<!-- footer
================================================== -->
<footer class="s-footer footer">
<div class="row section-header align-center">
<div class="col-full">
<h1 class="display-1">
Let's Stay In Touch.
</h1>
<p class="lead">
Subscribe for big updates, special events, and other amazing stuff.
</p>
</div>
</div> <!-- end section-header -->
<div class="row footer__top">
<div class="col-full footer__subscribe end">
<div class="subscribe-form">
<form id="mc-form" class="group" novalidate="true">
<input type="email" value="" name="EMAIL" class="email" id="mc-email" placeholder="Email Address" required="">
<input type="submit" name="subscribe" value="Sign Up">
<label for="mc-email" class="subscribe-message"></label>