ACE3/docs
Brandon Danyluk 1511ecc1c0 SACLOS and HOT Missiles (#6708)
* abc

* Revert "abc"

This reverts commit bcb4214bd9.

* Update to current commit

* Added HOT1 Missile and SACLOS/Wire guidance

* Added all HOT variants. Added polish to code

* Fixed bug with pylons

* Changed how seeker angle is calculated. When the wire snaps the missile goes haywire. Fixed bug where HOT2/3 missiles weren't getting missile guidance

* Replaced Wiesel FireFIST launcher with  HOT Launcher

* Remove debug defines

* Tweak thrust

* Fix formatting issues. Added true randomness. Added ACE prefixes. Added string table. Tweaked missile dynamics

* Fix bug where attack profile correction was wrong due to magnitude always being 50. Add stringtable values for relevant strings. Added reload time to Wiesel ATGM. Added "onFired" to initialize values

* Moved wire-snapping logic to attack profile

* Missile flight dynamics tweaked

* Add a crosshair offset. The missile sits in this offset relative to the crosshair

* Add LOS checks. Fix bug where wire-cutting didnt work.

* Tweak explosive range for a kill radius of ~20m. Add fragmentation

* Add AI Flags

* Person in control of missile may not be the shooter

* Fix RPT spam on missile out of LOS. Tweak missile dynamics. Add wire break sound cue

* Fix bug where missile didn't go to a fake target in front of it when out of LOS

* Use a better, more generic way to calculate direction camera is facing

* Use ACE Macros for frag values. Get config entry with CBA

* Add Wiki entry

* Add new lines to wiki. Allow for SQF expressions in config for maxCorrectableDistance

* Add CPP code tag

* Fix wiki grammer error

* Re-convert back to CBA_fnc_getConfigEntry

* UAV Gunner support, cleanup

* Fix bug where SACLOS for launcher guided weapons was off

* Add the ability to define how far ahead of the missile the attack profile will seek toward
2018-12-06 20:27:30 -06:00
..
_includes [Docs] Update component dependencies 2018-12-03 19:04:51 +01:00
_layouts Add version information to most wiki feature and framework pages (#4303) 2016-08-30 15:49:04 +02:00
_posts Add CBA Settings conversion post (#5934) 2017-12-20 17:57:55 +01:00
css fix code block styling 2017-11-02 15:10:14 +01:00
img Wiki AtragMX updated with CBA Settings System (#5974) 2017-12-31 13:13:30 -06:00
js Upgrade grunt versions used for building docs static assets 2018-04-26 20:31:27 +02:00
src Upgrade grunt versions used for building docs static assets 2018-04-26 20:31:27 +02:00
tools merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
wiki SACLOS and HOT Missiles (#6708) 2018-12-06 20:27:30 -06:00
_config_dev.yml Update wiki _config.yml for new releases 2018-11-28 11:29:55 -06:00
_config.yml Update wiki _config.yml for new releases 2018-12-04 11:48:12 -06:00
.dockerignore Dockerfile (#4550) 2016-10-16 10:48:14 +02:00
.editorconfig merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
.gitattributes force lf endings for docker entrypoint file (#6614) 2018-10-05 06:58:56 +02:00
.gitignore Dockerfile (#4550) 2016-10-16 10:48:14 +02:00
404.html merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
acebot.json add acebot.json file 2018-03-14 09:18:32 +01:00
CNAME Create CNAME 2016-08-18 19:00:17 +02:00
docker-compose.yml Fix docker (#6013) 2018-01-03 20:31:30 +01:00
Dockerfile Fix docker (#6013) 2018-01-03 20:31:30 +01:00
entrypoint.sh Fix docker (#6013) 2018-01-03 20:31:30 +01:00
favicon-32.png merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
favicon.png merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
Gemfile Fix docker (#6013) 2018-01-03 20:31:30 +01:00
google38c2ed88459ce9b8.html merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
googlebd2887f5a38652f2.html merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
humans.txt merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
index.html add some rel="noopener" to external links 2016-12-28 08:53:05 +01:00
manifest.json add web app manifest 2016-12-27 09:36:18 +01:00
news.html merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
package-lock.json fix code block styling 2017-11-02 15:10:14 +01:00
README_DE.md Prep 3.12.4 Build 37 2018-11-18 23:57:54 -06:00
README_PL.md Prep 3.12.4 Build 37 2018-11-18 23:57:54 -06:00
README.md use https for ace3mod 2016-12-27 09:11:58 +01:00
robots.txt merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
sitemap.xml merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00
team.md add alganthe to ace3 maintainers list 2018-12-03 20:58:42 +01:00
version.html merge gh-pages content into docs folder 2016-08-18 18:37:38 +02:00

Source of https://ace3mod.com/

Updating compiled JavaScript and CSS files

  • Install Node.js

  • Open Command Prompt and navigate to src directory

    cd <ACE3_directory>/docs/src
    
  • Install Node packages

    npm install
    

    On Bash on Ubuntu on Windows also install nodejs-legacy in case of errors.

  • Update files

    grunt
    

Setting up the Jekyll environment

Using Docker

We include files for Docker to run Jekyll in a separate container. This allows you to not having to install anything apart from Docker on your computer.

Running the Dockerfile

  • Install Docker

  • cd into the /docs/ directory

  • Open Command Prompt and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Build and run the container

    docker-compose up
    
  • Navigate to http://localhost:4000

Manually

Installing prerequisites

Windows (CMD)
  • Install Ruby 2.0.0-p648 (x64)

  • Install Ruby DevKit for 2.0 (x64)

  • Open Command Prompt and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Install bundler gem

    gem install bundler
    
  • Install required gems through bundler

    bundle install
    

Debian / Bash on Ubuntu on Windows

  • Open Bash and navigate to this directory

    cd <ACE3_directory>/docs
    
  • Install make and gcc

    sudo apt-get install make gcc
    
  • Install ruby2.0, ruby2.0-dev and ruby-switch

    sudo apt-add-repository ppa:brightbox/ruby-ng
    sudo apt-get update
    sudo apt-get install ruby2.0 ruby2.0-dev ruby-switch
    
  • Set Ruby version

    sudo ruby-switch --set ruby2.0
    
  • Install bundler

    sudo gem install bundler
    
  • Install required gems through bundler

    bundle install
    
  • In case of sticky folder error during bundle install, execute the following to fix permissions

    find ~/.bundle/cache -type d -exec chmod 0755 {} +
    

Running

  • Run Jekyll through bundler

    bundle exec jekyll serve --future --incremental --config _config_dev.yml
    

    Use --force_polling on Bash on Ubuntu on Windows due to a bug preventing watching.

  • Navigate to http://localhost:4000