mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
Compare commits
49 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9abb4f6d05 | ||
|
|
4b854b8305 | ||
|
|
b400db8216 | ||
|
|
deeb525433 | ||
|
|
a181791500 | ||
|
|
48092d4395 | ||
|
|
593f069806 | ||
|
|
a073692632 | ||
|
|
7752d5c9db | ||
|
|
98782da200 | ||
|
|
2936364934 | ||
|
|
f85a03a9ae | ||
|
|
2703c2aa23 | ||
|
|
954921c231 | ||
|
|
ee3c50e27d | ||
|
|
03020743b3 | ||
|
|
001fed67b7 | ||
|
|
3894915740 | ||
|
|
68fd13e8dc | ||
|
|
fdf16cd959 | ||
|
|
d916c67fe0 | ||
|
|
d8a8e224f4 | ||
|
|
e1c115747c | ||
|
|
e9b6d71606 | ||
|
|
e03e249d2f | ||
|
|
0cfb0b6878 | ||
|
|
600df162aa | ||
|
|
94141aa3c5 | ||
|
|
aca90d7077 | ||
|
|
194db07057 | ||
|
|
38038fcc32 | ||
|
|
9fa740f54e | ||
|
|
d37d69c3a7 | ||
|
|
78d8779641 | ||
|
|
352023f0fb | ||
|
|
3ea194d43e | ||
|
|
c6269192f0 | ||
|
|
841e6c3348 | ||
|
|
0febc581d1 | ||
|
|
dc6e398526 | ||
|
|
cb24c1fc69 | ||
|
|
90ad9de831 | ||
|
|
9360b1d574 | ||
|
|
08d2573d1f | ||
|
|
427b9af7de | ||
|
|
318d06d9f9 | ||
|
|
1f3c3726f2 | ||
|
|
71beda3a6c | ||
|
|
1d6644b531 |
@@ -1,2 +0,0 @@
|
|||||||
node_modules
|
|
||||||
npm-debug.log
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
worker_processes 1;
|
|
||||||
user nobody nobody;
|
|
||||||
error_log /tmp/error.log;
|
|
||||||
pid /tmp/nginx.pid;
|
|
||||||
|
|
||||||
events {
|
|
||||||
|
|
||||||
worker_connections 1024;
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
|
|
||||||
include /etc/nginx/mime.types;
|
|
||||||
default_type application/octet-stream;
|
|
||||||
sendfile on;
|
|
||||||
client_body_temp_path /tmp/client_body;
|
|
||||||
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
||||||
proxy_temp_path /tmp/proxy_temp;
|
|
||||||
scgi_temp_path /tmp/scgi_temp;
|
|
||||||
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
||||||
access_log /tmp/access.log;
|
|
||||||
error_log /tmp/error.log;
|
|
||||||
|
|
||||||
keepalive_timeout 3000;
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
index index.html;
|
|
||||||
server_name localhost;
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
autoindex on;
|
|
||||||
|
|
||||||
location ~* \.(?:manifest|appcache|html?|xml|json|css|js|map|jpg|jpeg|gif|png|ico|svg|eot|ttf|woff|woff2)$ {
|
|
||||||
expires -1;
|
|
||||||
add_header Access-Control-Allow-Origin *;
|
|
||||||
add_header Access-Control-Allow-Credentials true;
|
|
||||||
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
|
|
||||||
add_header Access-Control-Allow-Headers 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
|
||||||
access_log off;
|
|
||||||
}
|
|
||||||
location / {
|
|
||||||
try_files $uri $uri/ /index.html =404;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
77
.dockerignore
Normal file
77
.dockerignore
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
node_modules
|
||||||
|
npm-debug.log
|
||||||
|
### Node template
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
pids
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||||
|
lib-cov
|
||||||
|
|
||||||
|
# Coverage directory used by tools like istanbul
|
||||||
|
coverage
|
||||||
|
|
||||||
|
# nyc test coverage
|
||||||
|
.nyc_output
|
||||||
|
|
||||||
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
|
.grunt
|
||||||
|
|
||||||
|
# Bower dependency directory (https://bower.io/)
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
# node-waf configuration
|
||||||
|
.lock-wscript
|
||||||
|
|
||||||
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||||
|
build/Release
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
jspm_packages/
|
||||||
|
|
||||||
|
# TypeScript v1 declaration files
|
||||||
|
typings/
|
||||||
|
|
||||||
|
# Optional npm cache directory
|
||||||
|
.npm
|
||||||
|
|
||||||
|
# Optional eslint cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
# Optional REPL history
|
||||||
|
.node_repl_history
|
||||||
|
|
||||||
|
# Output of 'npm pack'
|
||||||
|
*.tgz
|
||||||
|
|
||||||
|
# Yarn Integrity file
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# dotenv environment variables file
|
||||||
|
.env
|
||||||
|
|
||||||
|
# parcel-bundler cache (https://parceljs.org/)
|
||||||
|
.cache
|
||||||
|
|
||||||
|
# next.js build output
|
||||||
|
.next
|
||||||
|
|
||||||
|
# nuxt.js build output
|
||||||
|
.nuxt
|
||||||
|
|
||||||
|
# vuepress build output
|
||||||
|
.vuepress/dist
|
||||||
|
|
||||||
|
# Serverless directories
|
||||||
|
.serverless
|
||||||
|
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"title": "Coriolis",
|
"title": "Coriolis",
|
||||||
"description": "Coriolis Shipyard for Elite Dangerous",
|
"description": "Coriolis Shipyard for Elite Dangerous",
|
||||||
"repository": "https://github.com/EDCD/coriolis",
|
"repository": "https://github.com/EDCD/coriolis",
|
||||||
"site": "https://coriolis.edcd.io",
|
"site": "https://coriolis.io",
|
||||||
"author": "https://github.com/edcd",
|
"author": "https://github.com/edcd",
|
||||||
"image": "./src/images/logo/192x192.png"
|
"image": "./src/images/logo/192x192.png"
|
||||||
}
|
}
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
"title": "Coriolis",
|
"title": "Coriolis",
|
||||||
"description": "Coriolis Shipyard for Elite Dangerous",
|
"description": "Coriolis Shipyard for Elite Dangerous",
|
||||||
"repository": "https://github.com/EDCD/coriolis",
|
"repository": "https://github.com/EDCD/coriolis",
|
||||||
"site": "https://coriolis.edcd.io",
|
"site": "https://coriolis.io",
|
||||||
"author": "https://github.com/edcd",
|
"author": "https://github.com/edcd",
|
||||||
"image": "./src/images/logo/192x192.png"
|
"image": "./src/images/logo/192x192.png"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,29 +6,28 @@ WORKDIR /src/app
|
|||||||
RUN mkdir -p /src/app/coriolis
|
RUN mkdir -p /src/app/coriolis
|
||||||
RUN mkdir -p /src/app/coriolis-data
|
RUN mkdir -p /src/app/coriolis-data
|
||||||
|
|
||||||
COPY ./coriolis/ /src/app/coriolis
|
RUN apk add --update git
|
||||||
COPY ./coriolis-data/ /src/app/coriolis-data
|
|
||||||
|
|
||||||
RUN apk update
|
COPY . /src/app/coriolis
|
||||||
RUN apk add git
|
|
||||||
|
|
||||||
RUN npm i -g npm
|
RUN npm i -g npm
|
||||||
|
|
||||||
# Set up coriolis-data
|
# Set up coriolis-data
|
||||||
WORKDIR /src/app/coriolis-data
|
WORKDIR /src/app/coriolis-data
|
||||||
RUN git fetch --all
|
RUN git clone https://github.com/EDCD/coriolis-data.git .
|
||||||
|
RUN git checkout ${BRANCH}
|
||||||
RUN npm install --no-package-lock
|
RUN npm install --no-package-lock
|
||||||
RUN npm start
|
RUN npm start
|
||||||
|
|
||||||
|
# Set up coriolis
|
||||||
WORKDIR /src/app/coriolis
|
WORKDIR /src/app/coriolis
|
||||||
RUN git fetch --all
|
|
||||||
RUN npm install --no-package-lock
|
RUN npm install --no-package-lock
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
|
|
||||||
### STAGE 2: Production Environment ###
|
### STAGE 2: Production Environment ###
|
||||||
FROM nginx:1.13.12-alpine as web
|
FROM fholzer/nginx-brotli as web
|
||||||
COPY coriolis/.docker/nginx.conf /etc/nginx/nginx.conf
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
COPY --from=builder /src/app/coriolis/build /usr/share/nginx/html
|
COPY --from=builder /src/app/coriolis/build /usr/share/nginx/html
|
||||||
WORKDIR /usr/share/nginx/html
|
WORKDIR /usr/share/nginx/html
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
23
Jenkinsfile
vendored
23
Jenkinsfile
vendored
@@ -1,23 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
stages {
|
|
||||||
stage('Get coriolis-data') {
|
|
||||||
steps {
|
|
||||||
sh '''YES=`echo $GIT_BRANCH | awk -F / \'{print $2}\'`
|
|
||||||
export BRANCH=`git rev-parse --abbrev-ref $YES`
|
|
||||||
rm -rf $WORKSPACE/../coriolis-data
|
|
||||||
git clone https://github.com/edcd/coriolis-data.git $WORKSPACE/../coriolis-data
|
|
||||||
cd ../coriolis-data
|
|
||||||
git fetch --all
|
|
||||||
git checkout $BRANCH'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build') {
|
|
||||||
steps {
|
|
||||||
sshagent (credentials: ['63c9de04-3213-47c3-8345-2f3442097a5b']) {
|
|
||||||
sh 'ssh -p 56499 -o StrictHostKeyChecking=no willb@172.17.0.1 echo hi'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -43,6 +43,9 @@ services:
|
|||||||
- "traefik.basic.port=80"
|
- "traefik.basic.port=80"
|
||||||
- "traefik.basic.protocol=http"
|
- "traefik.basic.protocol=http"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
web:
|
web:
|
||||||
external: true
|
external: true
|
||||||
97
nginx.conf
97
nginx.conf
@@ -1,48 +1,84 @@
|
|||||||
worker_processes 2;
|
worker_processes 1;
|
||||||
error_log ./nginx.error.log;
|
user nobody nobody;
|
||||||
worker_rlimit_nofile 8192;
|
error_log /tmp/error.log;
|
||||||
pid nginx.pid;
|
pid /tmp/nginx.pid;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
|
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
multi_accept on;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
|
|
||||||
access_log off;
|
include /etc/nginx/mime.types;
|
||||||
charset UTF-8;
|
default_type application/octet-stream;
|
||||||
|
sendfile on;
|
||||||
|
client_body_temp_path /tmp/client_body;
|
||||||
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
||||||
|
proxy_temp_path /tmp/proxy_temp;
|
||||||
|
scgi_temp_path /tmp/scgi_temp;
|
||||||
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
||||||
|
access_log /tmp/access.log;
|
||||||
|
error_log /tmp/error.log;
|
||||||
|
|
||||||
types {
|
# https://nginx.org/en/docs/http/ngx_http_gzip_module.html
|
||||||
text/html html htm shtml;
|
# Enable gzip compression.
|
||||||
text/css css;
|
# Default: off
|
||||||
text/xml xml rss;
|
gzip off;
|
||||||
image/gif gif;
|
|
||||||
image/jpeg jpeg jpg;
|
|
||||||
application/x-javascript js;
|
|
||||||
text/plain txt;
|
|
||||||
image/png png;
|
|
||||||
image/svg+xml svg;
|
|
||||||
image/x-icon ico;
|
|
||||||
application/pdf pdf;
|
|
||||||
text/cache-manifest appcache;
|
|
||||||
}
|
|
||||||
|
|
||||||
gzip on;
|
# Compression level (1-9).
|
||||||
gzip_vary on;
|
# 5 is a perfect compromise between size and CPU usage, offering about
|
||||||
|
# 75% reduction for most ASCII files (almost identical to level 9).
|
||||||
|
# Default: 1
|
||||||
|
gzip_comp_level 5;
|
||||||
|
|
||||||
|
# Don't compress anything that's already small and unlikely to shrink much
|
||||||
|
# if at all (the default is 20 bytes, which is bad as that usually leads to
|
||||||
|
# larger files after gzipping).
|
||||||
|
# Default: 20
|
||||||
|
gzip_min_length 256;
|
||||||
|
|
||||||
|
# Compress data even for clients that are connecting to us via proxies,
|
||||||
|
# identified by the "Via" header (required for CloudFront).
|
||||||
|
# Default: off
|
||||||
gzip_proxied any;
|
gzip_proxied any;
|
||||||
gzip_comp_level 6;
|
|
||||||
gzip_buffers 16 8k;
|
|
||||||
gzip_http_version 1.1;
|
|
||||||
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
|
||||||
|
|
||||||
|
# Tell proxies to cache both the gzipped and regular version of a resource
|
||||||
|
# whenever the client's Accept-Encoding capabilities header varies;
|
||||||
|
# Avoids the issue where a non-gzip capable client (which is extremely rare
|
||||||
|
# today) would display gibberish if their proxy gave them the gzipped version.
|
||||||
|
# Default: off
|
||||||
|
gzip_vary on;
|
||||||
|
|
||||||
|
# Compress all output labeled with one of the following MIME-types.
|
||||||
|
# text/html is always compressed by gzip module.
|
||||||
|
# Default: text/html
|
||||||
|
gzip_types *;
|
||||||
|
brotli on;
|
||||||
|
# brotli_static on;
|
||||||
|
brotli_types *;
|
||||||
|
# This should be turned on if you are going to have pre-compressed copies (.gz) of
|
||||||
|
# static files available. If not it should be left off as it will cause extra I/O
|
||||||
|
# for the check. It is best if you enable this in a location{} block for
|
||||||
|
# a specific directory, or on an individual server{} level.
|
||||||
|
# gzip_static on;
|
||||||
|
keepalive_timeout 3000;
|
||||||
server {
|
server {
|
||||||
listen 3301;
|
listen 80;
|
||||||
server_name localhost;
|
listen [::]:80;
|
||||||
root ./build/;
|
|
||||||
index index.html;
|
index index.html;
|
||||||
|
server_name localhost;
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
autoindex on;
|
||||||
|
|
||||||
location ~* \.(?:manifest|appcache|html?|xml|json|css|js|map|jpg|jpeg|gif|png|ico|svg|eot|ttf|woff|woff2)$ {
|
location ~* \.(?:manifest|appcache|html?|xml|json|css|js|map|jpg|jpeg|gif|png|ico|svg|eot|ttf|woff|woff2)$ {
|
||||||
|
add_header Access-Control-Allow-Origin *;
|
||||||
|
add_header Access-Control-Allow-Credentials true;
|
||||||
|
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
|
||||||
|
add_header Access-Control-Allow-Headers 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
||||||
|
access_log off;
|
||||||
|
}
|
||||||
|
location /service-worker.js {
|
||||||
expires -1;
|
expires -1;
|
||||||
add_header Access-Control-Allow-Origin *;
|
add_header Access-Control-Allow-Origin *;
|
||||||
add_header Access-Control-Allow-Credentials true;
|
add_header Access-Control-Allow-Credentials true;
|
||||||
@@ -50,7 +86,6 @@ http {
|
|||||||
add_header Access-Control-Allow-Headers 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
add_header Access-Control-Allow-Headers 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
|
||||||
access_log off;
|
access_log off;
|
||||||
}
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.html =404;
|
try_files $uri $uri/ /index.html =404;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/EDCD/coriolis"
|
"url": "https://github.com/EDCD/coriolis"
|
||||||
},
|
},
|
||||||
"homepage": "https://coriolis.edcd.io",
|
"homepage": "https://coriolis.io",
|
||||||
"bugs": "https://github.com/EDCD/coriolis/issues",
|
"bugs": "https://github.com/EDCD/coriolis/issues",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engine": "node >= 4.8.1",
|
"engine": "node >= 4.8.1",
|
||||||
@@ -120,6 +120,7 @@
|
|||||||
"webpack-notifier": "^1.6.0",
|
"webpack-notifier": "^1.6.0",
|
||||||
"workbox-webpack-plugin": "^3.6.1"
|
"workbox-webpack-plugin": "^3.6.1"
|
||||||
},
|
},
|
||||||
|
"sideEffects": false,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/polyfill": "^7.0.0",
|
"@babel/polyfill": "^7.0.0",
|
||||||
"browserify-zlib-next": "^1.0.1",
|
"browserify-zlib-next": "^1.0.1",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import Router from './Router';
|
import Router from './Router';
|
||||||
import { register } from 'register-service-worker'
|
import { register } from 'register-service-worker';
|
||||||
import { EventEmitter } from 'fbemitter';
|
import { EventEmitter } from 'fbemitter';
|
||||||
import { getLanguage } from './i18n/Language';
|
import { getLanguage } from './i18n/Language';
|
||||||
import Persist from './stores/Persist';
|
import Persist from './stores/Persist';
|
||||||
@@ -72,7 +72,7 @@ export default class Coriolis extends React.Component {
|
|||||||
route: {},
|
route: {},
|
||||||
sizeRatio: Persist.getSizeRatio()
|
sizeRatio: Persist.getSizeRatio()
|
||||||
};
|
};
|
||||||
this._getAnnouncements()
|
this._getAnnouncements();
|
||||||
Router('', (r) => this._setPage(ShipyardPage, r));
|
Router('', (r) => this._setPage(ShipyardPage, r));
|
||||||
Router('/import?', (r) => this._importBuild(r));
|
Router('/import?', (r) => this._importBuild(r));
|
||||||
Router('/import/:data', (r) => this._importBuild(r));
|
Router('/import/:data', (r) => this._importBuild(r));
|
||||||
@@ -105,18 +105,20 @@ export default class Coriolis extends React.Component {
|
|||||||
}
|
}
|
||||||
r.params.ship = ship.id;
|
r.params.ship = ship.id;
|
||||||
r.params.code = ship.toString();
|
r.params.code = ship.toString();
|
||||||
this._setPage(OutfittingPage, r);
|
this._setPage(OutfittingPage, r)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this._onError('Failed to import ship', r.path, 0, 0, err);
|
this._onError('Failed to import ship', r.path, 0, 0, err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_getAnnouncements() {
|
async _getAnnouncements() {
|
||||||
return request.get('https://orbis.zone/api/announcement')
|
try {
|
||||||
.query({showInCoriolis: true})
|
const announces = await request.get('https://orbis.zone/api/announcement')
|
||||||
.then(announces => {
|
.query({ showInCoriolis: true });
|
||||||
this.setState({ announcements: announces.body })
|
this.setState({ announcements: announces.body });
|
||||||
})
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -351,27 +353,27 @@ export default class Coriolis extends React.Component {
|
|||||||
const self = this;
|
const self = this;
|
||||||
if (process.env.NODE_ENV === 'production') {
|
if (process.env.NODE_ENV === 'production') {
|
||||||
register('/service-worker.js', {
|
register('/service-worker.js', {
|
||||||
ready (registration) {
|
ready(registration) {
|
||||||
console.log('Service worker is active.')
|
console.log('Service worker is active.');
|
||||||
},
|
},
|
||||||
registered (registration) {
|
registered(registration) {
|
||||||
console.log('Service worker has been registered.')
|
console.log('Service worker has been registered.');
|
||||||
},
|
},
|
||||||
cached (registration) {
|
cached(registration) {
|
||||||
console.log('Content has been cached for offline use.')
|
console.log('Content has been cached for offline use.');
|
||||||
},
|
},
|
||||||
updatefound (registration) {
|
updatefound(registration) {
|
||||||
console.log('New content is downloading.')
|
console.log('New content is downloading.');
|
||||||
},
|
},
|
||||||
updated (registration) {
|
updated(registration) {
|
||||||
self.setState({ appCacheUpdate: true });
|
self.setState({ appCacheUpdate: true });
|
||||||
console.log('New content is available; please refresh.')
|
console.log('New content is available; please refresh.');
|
||||||
},
|
},
|
||||||
offline () {
|
offline() {
|
||||||
console.log('No internet connection found. App is running in offline mode.')
|
console.log('No internet connection found. App is running in offline mode.');
|
||||||
},
|
},
|
||||||
error (error) {
|
error(error) {
|
||||||
console.error('Error during service worker registration:', error)
|
console.error('Error during service worker registration:', error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -395,10 +397,12 @@ export default class Coriolis extends React.Component {
|
|||||||
|
|
||||||
return <div style={{ minHeight: '100%' }} onClick={this._closeMenu}
|
return <div style={{ minHeight: '100%' }} onClick={this._closeMenu}
|
||||||
className={this.state.noTouch ? 'no-touch' : null}>
|
className={this.state.noTouch ? 'no-touch' : null}>
|
||||||
<Header announcements={this.state.announcements} appCacheUpdate={this.state.appCacheUpdate} currentMenu={currentMenu} />
|
<Header announcements={this.state.announcements} appCacheUpdate={this.state.appCacheUpdate}
|
||||||
<div className="announcement-container">{this.state.announcements.map(a => <Announcement text={a.message}/>)}</div>
|
currentMenu={currentMenu}/>
|
||||||
|
<div className="announcement-container">{this.state.announcements.map(a => <Announcement
|
||||||
|
text={a.message}/>)}</div>
|
||||||
{this.state.error ? this.state.error : this.state.page ? React.createElement(this.state.page, { currentMenu }) :
|
{this.state.error ? this.state.error : this.state.page ? React.createElement(this.state.page, { currentMenu }) :
|
||||||
<NotFoundPage />}
|
<NotFoundPage/>}
|
||||||
{this.state.modal}
|
{this.state.modal}
|
||||||
{this.state.tooltip}
|
{this.state.tooltip}
|
||||||
<footer>
|
<footer>
|
||||||
@@ -408,7 +412,8 @@ export default class Coriolis extends React.Component {
|
|||||||
<br/>
|
<br/>
|
||||||
<a
|
<a
|
||||||
href={'https://github.com/EDCD/coriolis/compare/edcd:develop@{' + window.CORIOLIS_DATE + '}...edcd:develop'}
|
href={'https://github.com/EDCD/coriolis/compare/edcd:develop@{' + window.CORIOLIS_DATE + '}...edcd:develop'}
|
||||||
target="_blank" rel="noopener noreferrer" title={'Coriolis Commits since' + window.CORIOLIS_DATE}>Commits since last release
|
target="_blank" rel="noopener noreferrer" title={'Coriolis Commits since' + window.CORIOLIS_DATE}>Commits
|
||||||
|
since last release
|
||||||
({window.CORIOLIS_DATE})</a>
|
({window.CORIOLIS_DATE})</a>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -73,7 +73,12 @@ const GRPCAT = {
|
|||||||
'gfsb': 'guardian',
|
'gfsb': 'guardian',
|
||||||
'gmrp': 'guardian',
|
'gmrp': 'guardian',
|
||||||
'gsc': 'guardian',
|
'gsc': 'guardian',
|
||||||
'ghrp': 'guardian'
|
'ghrp': 'guardian',
|
||||||
|
|
||||||
|
// Mining
|
||||||
|
'scl': 'mining',
|
||||||
|
'pwa': 'mining',
|
||||||
|
'sdm': 'mining'
|
||||||
};
|
};
|
||||||
// Order here is the order in which items will be shown in the modules menu
|
// Order here is the order in which items will be shown in the modules menu
|
||||||
const CATEGORIES = {
|
const CATEGORIES = {
|
||||||
@@ -90,7 +95,7 @@ const CATEGORIES = {
|
|||||||
'structural reinforcement': ['hr', 'mrp'],
|
'structural reinforcement': ['hr', 'mrp'],
|
||||||
'dc': ['dc'],
|
'dc': ['dc'],
|
||||||
// Hardpoints
|
// Hardpoints
|
||||||
'lasers': ['pl', 'ul', 'bl', 'ml'],
|
'lasers': ['pl', 'ul', 'bl'],
|
||||||
'projectiles': ['mc', 'c', 'fc', 'pa', 'rg'],
|
'projectiles': ['mc', 'c', 'fc', 'pa', 'rg'],
|
||||||
'ordnance': ['mr', 'tp', 'nl'],
|
'ordnance': ['mr', 'tp', 'nl'],
|
||||||
// Utilities
|
// Utilities
|
||||||
@@ -102,7 +107,9 @@ const CATEGORIES = {
|
|||||||
'experimental': ['axmc', 'axmr', 'rfl', 'tbrfl', 'tbsc', 'tbem', 'xs', 'sfn', 'rcpl', 'dtl', 'rsl', 'mahr',],
|
'experimental': ['axmc', 'axmr', 'rfl', 'tbrfl', 'tbsc', 'tbem', 'xs', 'sfn', 'rcpl', 'dtl', 'rsl', 'mahr',],
|
||||||
|
|
||||||
// Guardian
|
// Guardian
|
||||||
'guardian': ['gpp', 'gpd', 'gpc', 'ggc', 'gsrp', 'gfsb', 'ghrp', 'gmrp', 'gsc']
|
'guardian': ['gpp', 'gpd', 'gpc', 'ggc', 'gsrp', 'gfsb', 'ghrp', 'gmrp', 'gsc'],
|
||||||
|
|
||||||
|
'mining': ['ml', 'scl', 'pwa', 'sdm', 'abl'],
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -221,7 +228,16 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
|||||||
}
|
}
|
||||||
list.push(buildGroup(grp, modules[grp]));
|
list.push(buildGroup(grp, modules[grp]));
|
||||||
for (const i of modules[grp]) {
|
for (const i of modules[grp]) {
|
||||||
fuzzy.push({ grp, m: i, name: `${i.class}${i.rating} ${translate(grp)} ${i.mount ? i.mount : ''}` });
|
let mount = '';
|
||||||
|
if (i.mount === 'F') {
|
||||||
|
mount = 'Fixed';
|
||||||
|
} else if (i.mount === 'G') {
|
||||||
|
mount = 'Gimballed';
|
||||||
|
} else if (i.mount === 'T') {
|
||||||
|
mount = 'Turreted';
|
||||||
|
}
|
||||||
|
const fuzz = { grp, m: i, name: `${i.class}${i.rating}${mount ? ' ' + mount : ''} ${translate(grp)}` };
|
||||||
|
fuzzy.push(fuzz);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -363,10 +379,14 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
|||||||
* mounted module and the hovered modules
|
* mounted module and the hovered modules
|
||||||
*/
|
*/
|
||||||
_showSearch() {
|
_showSearch() {
|
||||||
|
if (this.props.modules instanceof Array) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<FuzzySearch
|
<FuzzySearch
|
||||||
list={this.state.fuzzy}
|
list={this.state.fuzzy}
|
||||||
keys={['grp', 'name']}
|
keys={['grp', 'name']}
|
||||||
|
tokenize={true}
|
||||||
className={'input'}
|
className={'input'}
|
||||||
width={'100%'}
|
width={'100%'}
|
||||||
style={{ padding: 0 }}
|
style={{ padding: 0 }}
|
||||||
|
|||||||
@@ -126,6 +126,9 @@ export default class HardpointSlot extends Slot {
|
|||||||
className={'l'}>{translate('shotspeed')}: {formats.int(m.getShotSpeed())}{u.mps}</div> : null}
|
className={'l'}>{translate('shotspeed')}: {formats.int(m.getShotSpeed())}{u.mps}</div> : null}
|
||||||
{m.getPiercing() ? <div className={'l'}>{translate('piercing')}: {formats.int(m.getPiercing())}</div> : null}
|
{m.getPiercing() ? <div className={'l'}>{translate('piercing')}: {formats.int(m.getPiercing())}</div> : null}
|
||||||
{m.getJitter() ? <div className={'l'}>{translate('jitter')}: {formats.f2(m.getJitter())}°</div> : null}
|
{m.getJitter() ? <div className={'l'}>{translate('jitter')}: {formats.f2(m.getJitter())}°</div> : null}
|
||||||
|
{m.getScanAngle() ? <div className={'l'}>{translate('scan angle')}: {formats.f2(m.getScanAngle())}°</div> : null}
|
||||||
|
{m.getScanRange() ? <div className={'l'}>{translate('scan range')}: {formats.int(m.getScanRange())}{u.m}</div> : null}
|
||||||
|
{m.getMaxAngle() ? <div className={'l'}>{translate('max angle')}: {formats.f2(m.getMaxAngle())}°</div> : null}
|
||||||
{showModuleResistances && m.getExplosiveResistance() ? <div
|
{showModuleResistances && m.getExplosiveResistance() ? <div
|
||||||
className='l'>{translate('explres')}: {formats.pct(m.getExplosiveResistance())}</div> : null}
|
className='l'>{translate('explres')}: {formats.pct(m.getExplosiveResistance())}</div> : null}
|
||||||
{showModuleResistances && m.getKineticResistance() ? <div
|
{showModuleResistances && m.getKineticResistance() ? <div
|
||||||
|
|||||||
@@ -20,16 +20,28 @@ export default class StandardSlotSection extends SlotSection {
|
|||||||
super(props, context, 'standard', 'core internal');
|
super(props, context, 'standard', 'core internal');
|
||||||
this._optimizeStandard = this._optimizeStandard.bind(this);
|
this._optimizeStandard = this._optimizeStandard.bind(this);
|
||||||
this._selectBulkhead = this._selectBulkhead.bind(this);
|
this._selectBulkhead = this._selectBulkhead.bind(this);
|
||||||
|
this._showDW2Menu = this._showDW2Menu.bind(this);
|
||||||
|
this._dw2 = this._dw2.bind(this);
|
||||||
this.selectedRefId = null;
|
this.selectedRefId = null;
|
||||||
this.firstRefId = 'maxjump';
|
this.firstRefId = 'maxjump';
|
||||||
this.lastRefId = 'racer';
|
this.lastRefId = 'dw2';
|
||||||
|
this.state = {
|
||||||
|
showDW2: false,
|
||||||
|
DW2Tier: -1,
|
||||||
|
DW2Eng: -1,
|
||||||
|
DW2Role: '',
|
||||||
|
DW2Gfsb: false,
|
||||||
|
DW2Gpp: false,
|
||||||
|
DW2Fighter: false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle focus if the component updates
|
* Handle focus if the component updates
|
||||||
* @param {Object} prevProps React Component properties
|
* @param {Object} prevProps React Component properties
|
||||||
*/
|
*/
|
||||||
componentDidUpdate(prevProps) {
|
componentDidUpdate(prevProps) {
|
||||||
this._handleSectionFocus(prevProps,this.firstRefId, this.lastRefId);
|
this._handleSectionFocus(prevProps, this.firstRefId, this.lastRefId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -72,6 +84,114 @@ export default class StandardSlotSection extends SlotSection {
|
|||||||
this._close();
|
this._close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DW2 Build
|
||||||
|
*/
|
||||||
|
_dw2() {
|
||||||
|
this.selectedRefId = 'dw2';
|
||||||
|
this.setState({ showDW2: false });
|
||||||
|
ShipRoles.dw2Build(this.props.ship, this.state.DW2Tier, this.state.DW2Eng, this.state.DW2Role, this.state.DW2Gfsb, this.state.DW2Gpp, this.state.DW2Fighter);
|
||||||
|
this.props.ship.updateModificationsString();
|
||||||
|
this.props.onChange();
|
||||||
|
this.props.onCargoChange(this.props.ship.cargoCapacity);
|
||||||
|
this.props.onFuelChange(this.props.ship.fuelCapacity);
|
||||||
|
this._close();
|
||||||
|
}
|
||||||
|
|
||||||
|
_showDW2Menu(translate) {
|
||||||
|
return (
|
||||||
|
<div className='select' onClick={(e) => e.stopPropagation()} onContextMenu={stopCtxPropagation}>
|
||||||
|
<div className='select-group cap'>{translate('Tier')}</div>
|
||||||
|
<ul id={'tier'}>
|
||||||
|
<li className={cn({ active: this.state.DW2Tier === 1 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Tier: 1 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('1 - Max. Jump Range, Unshielded')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Tier === 2 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Tier: 2 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('2 - Max. Jump Range, Minimal Shields')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Tier === 3 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Tier: 3 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('3 - Max. Jump Range, Optimal Shields')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Tier === 4 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Tier: 4 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('4 - Max. Jump Range, Optimal Shields & Thrusters')}</li>
|
||||||
|
</ul>
|
||||||
|
<hr/>
|
||||||
|
<div className='select-group cap'>{translate('Engineering Level')}</div>
|
||||||
|
<ul id={'engLevel'}>
|
||||||
|
<li className={cn({ active: this.state.DW2Eng === 1 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Eng: 1 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('No engineering')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Eng === 2 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Eng: 2 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('Only Felicity Farseer and Elvira Martuuk')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Eng === 3 }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Eng: 3 })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('All exploration engineers')}</li>
|
||||||
|
</ul>
|
||||||
|
<hr/>
|
||||||
|
<div className='select-group cap'>{translate('Role')}</div>
|
||||||
|
<ul id={'role'}>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'exploration' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'exploration' })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
>{translate('Space exploration')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'surface' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'surface' })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
>{translate('Surface exploration')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'materialProspector' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'materialProspector' })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
>{translate('Material prospector')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'propectorMining' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'propectorMining' })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
>{translate('Prospector/Sapper Miner')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'bigRigMining' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'bigRigMining' })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
>{translate('Big Rig, full mining')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'fuelRat' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'fuelRat' })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('Fuel Rat')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'mechanic' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'mechanic' })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('Mechanic')}</li>
|
||||||
|
<li className={cn({ active: this.state.DW2Role === 'trucker' }, 'lc')} tabIndex="0"
|
||||||
|
onClick={() => this.setState({ DW2Role: 'trucker' })} onKeyDown={this._keyDown}
|
||||||
|
>{translate('Trucker')}</li>
|
||||||
|
</ul>
|
||||||
|
<hr/>
|
||||||
|
<ul>
|
||||||
|
<li className={cn({ active: this.state.DW2Gfsb === true }, 'lc')}
|
||||||
|
onClick={() => this.setState({ DW2Gfsb: this.state.DW2Gfsb !== true })}>
|
||||||
|
Add Guardian FSD Booster
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li className={cn({ active: this.state.DW2Gpp === true }, 'lc')}
|
||||||
|
onClick={() => this.setState({ DW2Gpp: this.state.DW2Gpp !== true })}>
|
||||||
|
Add Guardian Power Plant
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
<li className={cn({ active: this.state.DW2Fighter === true }, 'lc')}
|
||||||
|
onClick={() => this.setState({ DW2Fighter: this.state.DW2Fighter !== true })}>
|
||||||
|
Add Fighter
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<hr/>
|
||||||
|
<ul>
|
||||||
|
<li onClick={this._dw2} className={cn('lc')} tabIndex="0"
|
||||||
|
onKeyDown={this._keyDown}>
|
||||||
|
<button className="button">Apply</button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Miner Build
|
* Miner Build
|
||||||
* @param {Boolean} shielded True if shield generator should be included
|
* @param {Boolean} shielded True if shield generator should be included
|
||||||
@@ -177,7 +297,6 @@ export default class StandardSlotSection extends SlotSection {
|
|||||||
warning={m => m instanceof Module ? m.getMaxMass() < (ship.unladenMass + cargo + fuel - st[1].m.mass + m.mass) : m.maxmass < (ship.unladenMass + cargo + fuel - st[1].m.mass + m.mass)}
|
warning={m => m instanceof Module ? m.getMaxMass() < (ship.unladenMass + cargo + fuel - st[1].m.mass + m.mass) : m.maxmass < (ship.unladenMass + cargo + fuel - st[1].m.mass + m.mass)}
|
||||||
/>;
|
/>;
|
||||||
|
|
||||||
|
|
||||||
slots[3] = <StandardSlot
|
slots[3] = <StandardSlot
|
||||||
key='fsd'
|
key='fsd'
|
||||||
slot={st[2]}
|
slot={st[2]}
|
||||||
@@ -232,7 +351,7 @@ export default class StandardSlotSection extends SlotSection {
|
|||||||
selected={currentMenu == st[6]}
|
selected={currentMenu == st[6]}
|
||||||
onChange={this.props.onChange}
|
onChange={this.props.onChange}
|
||||||
ship={ship}
|
ship={ship}
|
||||||
warning= {m => m.fuel < st[2].m.maxfuel} // Show warning when fuel tank is smaller than FSD Max Fuel
|
warning={m => m.fuel < st[2].m.maxfuel} // Show warning when fuel tank is smaller than FSD Max Fuel
|
||||||
/>;
|
/>;
|
||||||
|
|
||||||
return slots;
|
return slots;
|
||||||
@@ -245,19 +364,34 @@ export default class StandardSlotSection extends SlotSection {
|
|||||||
*/
|
*/
|
||||||
_getSectionMenu(translate) {
|
_getSectionMenu(translate) {
|
||||||
let planetaryDisabled = this.props.ship.internal.length < 4;
|
let planetaryDisabled = this.props.ship.internal.length < 4;
|
||||||
|
if (this.state.showDW2 === true) {
|
||||||
|
return this._showDW2Menu(translate);
|
||||||
|
}
|
||||||
return <div className='select' onClick={(e) => e.stopPropagation()} onContextMenu={stopCtxPropagation}>
|
return <div className='select' onClick={(e) => e.stopPropagation()} onContextMenu={stopCtxPropagation}>
|
||||||
<ul>
|
<ul>
|
||||||
<li className='lc' tabIndex="0" onClick={this._optimizeStandard} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['maxjump'] = smRef}>{translate('Maximize Jump Range')}</li>
|
<li className='lc' tabIndex="0" onClick={this._optimizeStandard} onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['maxjump'] = smRef}>{translate('Maximize Jump Range')}</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div className='select-group cap'>{translate('roles')}</div>
|
<div className='select-group cap'>{translate('roles')}</div>
|
||||||
<ul>
|
<ul>
|
||||||
<li className='lc' tabIndex="0" onClick={this._multiPurpose.bind(this, false, 0)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['multipurpose'] = smRef}>{translate('Multi-purpose')}</li>
|
<li className='lc' tabIndex="0" onClick={this._multiPurpose.bind(this, false, 0)} onKeyDown={this._keyDown}
|
||||||
<li className='lc' tabIndex="0" onClick={this._multiPurpose.bind(this, true, 2)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['combat'] = smRef}>{translate('Combat')}</li>
|
ref={smRef => this.sectionRefArr['multipurpose'] = smRef}>{translate('Multi-purpose')}</li>
|
||||||
<li className='lc' tabIndex="0" onClick={this._optimizeCargo.bind(this, true)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['trader'] = smRef}>{translate('Trader')}</li>
|
<li className='lc' tabIndex="0" onClick={this._multiPurpose.bind(this, true, 2)} onKeyDown={this._keyDown}
|
||||||
<li className='lc' tabIndex="0" onClick={this._optimizeExplorer.bind(this, false)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['explorer'] = smRef}>{translate('Explorer')}</li>
|
ref={smRef => this.sectionRefArr['combat'] = smRef}>{translate('Combat')}</li>
|
||||||
<li className={cn('lc', { disabled: planetaryDisabled })} tabIndex={planetaryDisabled ? '' : '0'} onClick={!planetaryDisabled && this._optimizeExplorer.bind(this, true)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['planetary'] = smRef}>{translate('Planetary Explorer')}</li>
|
<li className='lc' tabIndex="0" onClick={this._optimizeCargo.bind(this, true)} onKeyDown={this._keyDown}
|
||||||
<li className='lc' tabIndex="0" onClick={this._optimizeMiner.bind(this, true)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['miner'] = smRef}>{translate('Miner')}</li>
|
ref={smRef => this.sectionRefArr['trader'] = smRef}>{translate('Trader')}</li>
|
||||||
<li className='lc' tabIndex="0" onClick={this._optimizeRacer.bind(this)} onKeyDown={this._keyDown} ref={smRef => this.sectionRefArr['racer'] = smRef}>{translate('Racer')}</li>
|
<li className='lc' tabIndex="0" onClick={this._optimizeExplorer.bind(this, false)} onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['explorer'] = smRef}>{translate('Explorer')}</li>
|
||||||
|
<li className={cn('lc', { disabled: planetaryDisabled })} tabIndex={planetaryDisabled ? '' : '0'}
|
||||||
|
onClick={!planetaryDisabled && this._optimizeExplorer.bind(this, true)} onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['planetary'] = smRef}>{translate('Planetary Explorer')}</li>
|
||||||
|
<li className='lc' tabIndex="0" onClick={this._optimizeMiner.bind(this, true)} onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['miner'] = smRef}>{translate('Miner')}</li>
|
||||||
|
<li className='lc' tabIndex="0" onClick={this._optimizeRacer.bind(this)} onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['racer'] = smRef}>{translate('Racer')}</li>
|
||||||
|
<li className='lc' tabIndex="0" onClick={() => this.setState({ showDW2: !this.state.showDW2 })}
|
||||||
|
onKeyDown={this._keyDown}
|
||||||
|
ref={smRef => this.sectionRefArr['dw2'] = smRef}>{translate('DW2')}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>;
|
</div>;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,6 +132,10 @@
|
|||||||
"gfsb": "Guardian Frame Shift Drive Booster",
|
"gfsb": "Guardian Frame Shift Drive Booster",
|
||||||
"ghrp": "Guardian Hull Reinforcement Package",
|
"ghrp": "Guardian Hull Reinforcement Package",
|
||||||
"gmrp": "Guardian Module Reinforcement Package",
|
"gmrp": "Guardian Module Reinforcement Package",
|
||||||
|
"pwa": "Pulse Wave Analyser",
|
||||||
|
"abl": "Abrasion Blaster",
|
||||||
|
"scl": "Seismic Charge Launcher",
|
||||||
|
"sdm": "Sub-Surface Displacement Missile",
|
||||||
"tbsc": "Shock Cannon",
|
"tbsc": "Shock Cannon",
|
||||||
"gsc": "Guardian Shard Cannon",
|
"gsc": "Guardian Shard Cannon",
|
||||||
"psg": "Prismatic Shield Generator",
|
"psg": "Prismatic Shield Generator",
|
||||||
@@ -234,6 +238,7 @@
|
|||||||
"rof": "Rate of fire",
|
"rof": "Rate of fire",
|
||||||
"angle": "Scan angle",
|
"angle": "Scan angle",
|
||||||
"scanrate": "Scan rate",
|
"scanrate": "Scan rate",
|
||||||
|
"proberadius": "Probe Radius",
|
||||||
"scantime": "Scan time",
|
"scantime": "Scan time",
|
||||||
"shield": "Shield",
|
"shield": "Shield",
|
||||||
"armour": "Armour",
|
"armour": "Armour",
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ export default class AboutPage extends Page {
|
|||||||
patreon.com/coriolis_elite
|
patreon.com/coriolis_elite
|
||||||
</a>
|
</a>
|
||||||
, which will be used to keep Coriolis up to date and the servers
|
, which will be used to keep Coriolis up to date and the servers
|
||||||
running. I also run ads, which are also used for development and hosting.
|
running.
|
||||||
</p>
|
</p>
|
||||||
<form
|
<form
|
||||||
action="https://www.paypal.com/cgi-bin/webscr"
|
action="https://www.paypal.com/cgi-bin/webscr"
|
||||||
|
|||||||
@@ -224,9 +224,12 @@ export default class OutfittingPage extends Page {
|
|||||||
const control = LZString.decompressFromBase64(
|
const control = LZString.decompressFromBase64(
|
||||||
Utils.fromUrlSafe(parts[4])
|
Utils.fromUrlSafe(parts[4])
|
||||||
).split('/');
|
).split('/');
|
||||||
sys = parseFloat(control[0]) || sys;
|
sys = parseFloat(control[0]);
|
||||||
eng = parseFloat(control[1]) || eng;
|
eng = parseFloat(control[1]);
|
||||||
wep = parseFloat(control[2]) || wep;
|
wep = parseFloat(control[2]);
|
||||||
|
if (sys + eng + wep > 6) {
|
||||||
|
sys = eng = wep = 2;
|
||||||
|
}
|
||||||
boost = control[3] == 1 ? true : false;
|
boost = control[3] == 1 ? true : false;
|
||||||
fuel = parseFloat(control[4]) || fuel;
|
fuel = parseFloat(control[4]) || fuel;
|
||||||
cargo = parseInt(control[5]) || cargo;
|
cargo = parseInt(control[5]) || cargo;
|
||||||
|
|||||||
@@ -70,6 +70,13 @@ export default class Page extends React.Component {
|
|||||||
document.title = this.state.title || 'Coriolis';
|
document.title = this.state.title || 'Coriolis';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update the window title upon mount
|
||||||
|
*/
|
||||||
|
componentDidMount() {
|
||||||
|
document.title = this.state.title || 'Coriolis';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the title upon change
|
* Updates the title upon change
|
||||||
* @param {Object} newProps Incoming properties
|
* @param {Object} newProps Incoming properties
|
||||||
|
|||||||
@@ -169,10 +169,9 @@ export default class ShipyardPage extends Page {
|
|||||||
* @param {Object} u Localized unit map
|
* @param {Object} u Localized unit map
|
||||||
* @param {Function} fInt Localized integer formatter
|
* @param {Function} fInt Localized integer formatter
|
||||||
* @param {Function} fRound Localized round formatter
|
* @param {Function} fRound Localized round formatter
|
||||||
* @param {Boolean} highlight Should this row be highlighted
|
|
||||||
* @return {React.Component} Table Row
|
* @return {React.Component} Table Row
|
||||||
*/
|
*/
|
||||||
_shipRowElement(s, translate, u, fInt, fRound, highlight) {
|
_shipRowElement(s, translate, u, fInt, fRound) {
|
||||||
let noTouch = this.context.noTouch;
|
let noTouch = this.context.noTouch;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -181,7 +180,6 @@ export default class ShipyardPage extends Page {
|
|||||||
style={{ height: '1.5em' }}
|
style={{ height: '1.5em' }}
|
||||||
className={cn({
|
className={cn({
|
||||||
highlighted: noTouch && this.state.shipId === s.id,
|
highlighted: noTouch && this.state.shipId === s.id,
|
||||||
alt: highlight
|
|
||||||
})}
|
})}
|
||||||
onMouseEnter={noTouch && this._highlightShip.bind(this, s.id)}
|
onMouseEnter={noTouch && this._highlightShip.bind(this, s.id)}
|
||||||
>
|
>
|
||||||
@@ -286,27 +284,13 @@ export default class ShipyardPage extends Page {
|
|||||||
let shipRows = new Array(shipSummaries.length);
|
let shipRows = new Array(shipSummaries.length);
|
||||||
let detailRows = new Array(shipSummaries.length);
|
let detailRows = new Array(shipSummaries.length);
|
||||||
|
|
||||||
let lastShipSortValue = null;
|
|
||||||
let backgroundHighlight = false;
|
|
||||||
|
|
||||||
for (let s of shipSummaries) {
|
for (let s of shipSummaries) {
|
||||||
let shipSortValue = s[shipPredicate];
|
|
||||||
if (shipPredicateIndex != undefined) {
|
|
||||||
shipSortValue = shipSortValue[shipPredicateIndex];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (shipSortValue != lastShipSortValue) {
|
|
||||||
backgroundHighlight = !backgroundHighlight;
|
|
||||||
lastShipSortValue = shipSortValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
detailRows[i] = this._shipRowElement(
|
detailRows[i] = this._shipRowElement(
|
||||||
s,
|
s,
|
||||||
translate,
|
translate,
|
||||||
units,
|
units,
|
||||||
fInt,
|
fInt,
|
||||||
formats.f1,
|
formats.f1,
|
||||||
backgroundHighlight
|
|
||||||
);
|
);
|
||||||
shipRows[i] = (
|
shipRows[i] = (
|
||||||
<tr
|
<tr
|
||||||
@@ -314,7 +298,6 @@ export default class ShipyardPage extends Page {
|
|||||||
style={{ height: '1.5em' }}
|
style={{ height: '1.5em' }}
|
||||||
className={cn({
|
className={cn({
|
||||||
highlighted: noTouch && this.state.shipId === s.id,
|
highlighted: noTouch && this.state.shipId === s.id,
|
||||||
alt: backgroundHighlight
|
|
||||||
})}
|
})}
|
||||||
onMouseEnter={noTouch && this._highlightShip.bind(this, s.id)}
|
onMouseEnter={noTouch && this._highlightShip.bind(this, s.id)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -94,6 +94,10 @@ export const ModuleGroupToName = {
|
|||||||
gsc: 'Guardian Shard Cannon',
|
gsc: 'Guardian Shard Cannon',
|
||||||
tbem: 'Enzyme Missile Rack',
|
tbem: 'Enzyme Missile Rack',
|
||||||
tbrfl: 'Remote Release Flechette Launcher',
|
tbrfl: 'Remote Release Flechette Launcher',
|
||||||
|
pwa: 'Pulse Wave Analyser',
|
||||||
|
abl: 'Abrasion Blaster',
|
||||||
|
scl: 'Seismic Charge Launcher',
|
||||||
|
sdm: 'Sub-Surface Displacement Missile',
|
||||||
};
|
};
|
||||||
|
|
||||||
let GrpNameToCodeMap = {};
|
let GrpNameToCodeMap = {};
|
||||||
|
|||||||
@@ -1073,4 +1073,31 @@ export default class Module {
|
|||||||
getHackTime(modified = true) {
|
getHackTime(modified = true) {
|
||||||
return this.get('hacktime', modified);
|
return this.get('hacktime', modified);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the scan range for this module
|
||||||
|
* @param {Boolean} [modified=true] Whether to take modifications into account
|
||||||
|
* @return {string} the time for this module
|
||||||
|
*/
|
||||||
|
getScanRange(modified = true) {
|
||||||
|
return this.get('scanrange', modified);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the scan angle for this module
|
||||||
|
* @param {Boolean} [modified=true] Whether to take modifications into account
|
||||||
|
* @return {string} the time for this module
|
||||||
|
*/
|
||||||
|
getScanAngle(modified = true) {
|
||||||
|
return this.get('scanangle', modified);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the max angle for this module
|
||||||
|
* @param {Boolean} [modified=true] Whether to take modifications into account
|
||||||
|
* @return {string} the time for this module
|
||||||
|
*/
|
||||||
|
getMaxAngle(modified = true) {
|
||||||
|
return this.get('maxangle', modified);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -164,13 +164,13 @@ export default class ModuleSet {
|
|||||||
/**
|
/**
|
||||||
* Finds the lightest usable Shield Generator
|
* Finds the lightest usable Shield Generator
|
||||||
* @param {number} hullMass Ship hull mass
|
* @param {number} hullMass Ship hull mass
|
||||||
* @return {Object} Thruster
|
* @param {string} rating The optional rating of the shield
|
||||||
|
* @return {Object} Shield Generator
|
||||||
*/
|
*/
|
||||||
lightestShieldGenerator(hullMass) {
|
lightestShieldGenerator(hullMass, rating) {
|
||||||
let sg = this.internal.sg[0];
|
let sg = this.internal.sg[0];
|
||||||
|
|
||||||
for (let s of this.internal.sg) {
|
for (let s of this.internal.sg) {
|
||||||
if (s.mass < sg.mass && s.maxmass > hullMass) {
|
if ((!rating || rating === s.rating) && s.mass <= sg.mass && s.maxmass > hullMass) {
|
||||||
sg = s;
|
sg = s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,12 +85,12 @@ export function toDetailedBuild(buildName, ship) {
|
|||||||
code = ship.toString();
|
code = ship.toString();
|
||||||
|
|
||||||
let data = {
|
let data = {
|
||||||
$schema: 'https://coriolis.edcd.io/schemas/ship-loadout/4.json#',
|
$schema: 'https://coriolis.io/schemas/ship-loadout/4.json#',
|
||||||
name: buildName,
|
name: buildName,
|
||||||
ship: ship.name,
|
ship: ship.name,
|
||||||
references: [{
|
references: [{
|
||||||
name: 'Coriolis.io',
|
name: 'Coriolis.io',
|
||||||
url: 'https://coriolis.edcd.io' + outfitURL(ship.id, code, buildName),
|
url: 'https://coriolis.io' + outfitURL(ship.id, code, buildName),
|
||||||
code,
|
code,
|
||||||
shipId: ship.id
|
shipId: ship.id
|
||||||
}],
|
}],
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import * as ModuleUtils from './ModuleUtils';
|
import * as ModuleUtils from './ModuleUtils';
|
||||||
|
import { Modifications } from 'coriolis-data/dist';
|
||||||
import { canMount } from '../utils/SlotFunctions';
|
import { canMount } from '../utils/SlotFunctions';
|
||||||
|
import { getBlueprint, setPercent } from '../utils/BlueprintFunctions';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Standard / typical role for multi-purpose or combat (if shielded with better bulkheads)
|
* Standard / typical role for multi-purpose or combat (if shielded with better bulkheads)
|
||||||
@@ -14,7 +16,7 @@ export function multiPurpose(ship, shielded, bulkheadIndex) {
|
|||||||
.useBulkhead(bulkheadIndex);
|
.useBulkhead(bulkheadIndex);
|
||||||
|
|
||||||
if (shielded) {
|
if (shielded) {
|
||||||
ship.internal.some(function(slot) {
|
ship.internal.some(function (slot) {
|
||||||
if (canMount(ship, slot, 'sg')) { // Assuming largest slot can hold an eligible shield
|
if (canMount(ship, slot, 'sg')) { // Assuming largest slot can hold an eligible shield
|
||||||
ship.use(slot, ModuleUtils.findInternal('sg', slot.maxClass, 'A'));
|
ship.use(slot, ModuleUtils.findInternal('sg', slot.maxClass, 'A'));
|
||||||
ship.setSlotEnabled(slot, true);
|
ship.setSlotEnabled(slot, true);
|
||||||
@@ -24,6 +26,577 @@ export function multiPurpose(ship, shielded, bulkheadIndex) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Distant Worlds 2 role
|
||||||
|
* Tiers:
|
||||||
|
* 1- Max. Jump Range, Unshielded
|
||||||
|
* 2- Max. Jump Range, Minimal Shields
|
||||||
|
* 3- Max. Jump Range, Optimal Shields
|
||||||
|
* 4- Max. Jump Range, Optimal Shields & Thrusters
|
||||||
|
*
|
||||||
|
* Engineering level:
|
||||||
|
* No engineering
|
||||||
|
* Only Felicity Farseer and Elvira Martuuk
|
||||||
|
* All exploration related engineers
|
||||||
|
*
|
||||||
|
* Role
|
||||||
|
* Exploration
|
||||||
|
* Surface exploration
|
||||||
|
* Big Rig, full mining
|
||||||
|
* Saper / Prospector mining
|
||||||
|
* Fuel rat
|
||||||
|
* Repair rat
|
||||||
|
* Mechanic
|
||||||
|
* Trucker
|
||||||
|
*
|
||||||
|
* @param ship {Ship} Ship instance
|
||||||
|
* @param tier {Number}
|
||||||
|
* @param engineeringLevel {Number}
|
||||||
|
* @param role {String}
|
||||||
|
* @param gfsb {Boolean} add Guardian FSD Booster
|
||||||
|
* @param gpp {Boolean} add Guardian Power Plant
|
||||||
|
* @param fighter {Boolean} add fighter if supported
|
||||||
|
*/
|
||||||
|
export function dw2Build(ship, tier, engineeringLevel, role, gfsb, gpp, fighter) {
|
||||||
|
ship
|
||||||
|
.emptyInternal()
|
||||||
|
.emptyHardpoints()
|
||||||
|
.emptyUtility();
|
||||||
|
const fsd = ModuleUtils.findStandard('fsd', ship.standard[2].maxClass, 'A');
|
||||||
|
ship.use(ship.standard[2], fsd);
|
||||||
|
ship.use(ship.standard[3], ModuleUtils.findStandard('ls', ship.standard[3].maxClass, 'D'));
|
||||||
|
ship.use(ship.standard[4], ModuleUtils.findStandard('pd', 1, 'D'));
|
||||||
|
ship.use(ship.standard[5], ModuleUtils.findStandard('s', ship.standard[5].maxClass, 'D'));
|
||||||
|
const fuelNeeded = ship.standard[2].m.maxfuel * 2;
|
||||||
|
const fuelTank = ship.availCS.standard[6]
|
||||||
|
.filter(e => e.fuel)
|
||||||
|
.filter(e => e.fuel >= fuelNeeded);
|
||||||
|
ship.use(ship.standard[6], fuelTank[0]);
|
||||||
|
ship.useBulkhead(0, false);
|
||||||
|
if (engineeringLevel === 2) {
|
||||||
|
const bp = getBlueprint('FSD_LongRange', ship.standard[2]);
|
||||||
|
bp.grade = 5;
|
||||||
|
bp.special = Modifications.specials['special_fsd_heavy'];
|
||||||
|
ship.standard[2].m.blueprint = bp;
|
||||||
|
setPercent(ship, ship.standard[2].m, 100);
|
||||||
|
// Sensors G3 LW
|
||||||
|
const sBP = getBlueprint('Sensor_Sensor_LightWeight', ship.standard[5]);
|
||||||
|
sBP.grade = 3;
|
||||||
|
ship.standard[5].m.blueprint = sBP;
|
||||||
|
setPercent(ship, ship.standard[5].m, 100);
|
||||||
|
} else if (engineeringLevel === 3) {
|
||||||
|
// Armour G5 HD + Deep Plating
|
||||||
|
const armourBP = getBlueprint('Armour_HeavyDuty', ship.bulkheads);
|
||||||
|
armourBP.grade = 5;
|
||||||
|
armourBP.special = Modifications.specials['special_armour_chunky'];
|
||||||
|
ship.bulkheads.m.blueprint = armourBP;
|
||||||
|
setPercent(ship, ship.bulkheads.m, 100);
|
||||||
|
// FSD G5 IR + Mass Manager
|
||||||
|
const fsdBP = getBlueprint('FSD_LongRange', ship.standard[2]);
|
||||||
|
fsdBP.grade = 5;
|
||||||
|
fsdBP.special = Modifications.specials['special_fsd_heavy'];
|
||||||
|
ship.standard[2].m.blueprint = fsdBP;
|
||||||
|
setPercent(ship, ship.standard[2].m, 100);
|
||||||
|
// LS G4 LW
|
||||||
|
const lsBP = getBlueprint('LifeSupport_LightWeight', ship.standard[3]);
|
||||||
|
lsBP.grade = 4;
|
||||||
|
ship.standard[3].m.blueprint = lsBP;
|
||||||
|
setPercent(ship, ship.standard[3].m, 100);
|
||||||
|
// Sensors G5 LW
|
||||||
|
const sBP = getBlueprint('Sensor_Sensor_LightWeight', ship.standard[5]);
|
||||||
|
sBP.grade = 5;
|
||||||
|
ship.standard[5].m.blueprint = sBP;
|
||||||
|
setPercent(ship, ship.standard[5].m, 100);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ship.id === 'imperial_clipper') {
|
||||||
|
const fs = ModuleUtils.findInternal('fs', 4, 'A');
|
||||||
|
const slot = ship.internal.filter(a => a.maxClass === 4)[0];
|
||||||
|
ship.use(slot, fs);
|
||||||
|
} else if (ship.id === 'imperial_cutter') {
|
||||||
|
const fs = ModuleUtils.findInternal('fs', 6, 'A');
|
||||||
|
const slot = ship.internal.filter(a => a.maxClass === 6)[0];
|
||||||
|
ship.use(slot, fs);
|
||||||
|
} else if (fsd.class === 2 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 2, 'A');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 2).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 1, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 1)[0];
|
||||||
|
ship.use(slot, fs);
|
||||||
|
} else {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else if (fsd.class === 3 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 3, 'B');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 3).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 2, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 2)[0];
|
||||||
|
ship.use(slot, fs);
|
||||||
|
} else {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else if (fsd.class === 4 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 4, 'b');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 4).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 3, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 3)[0];
|
||||||
|
ship.use(slot, fs);
|
||||||
|
} else {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else if (fsd.class === 5 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 5, 'B');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 5).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 4, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 4).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (fsd.class === 6 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 6, 'B');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 6)
|
||||||
|
.filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 5, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 5)[0];
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (fsd.class === 7 && fsd.rating === 'A') {
|
||||||
|
let fs = ModuleUtils.findInternal('fs', 7, 'B');
|
||||||
|
let slot = ship.internal.filter(a => a.maxClass >= 7).filter(a => a.maxClass >= fs.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (slot && slot.m) {
|
||||||
|
fs = ModuleUtils.findInternal('fs', 6, 'A');
|
||||||
|
slot = ship.internal.filter(a => a.maxClass === 6)[0];
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (fs) {
|
||||||
|
ship.use(slot, fs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tier !== 1) {
|
||||||
|
const fuelNeeded = ship.standard[2].m.maxfuel * 3;
|
||||||
|
const fuelTank = ship.availCS.standard[6]
|
||||||
|
.filter(e => e.fuel)
|
||||||
|
.filter(e => e.fuel >= fuelNeeded);
|
||||||
|
if (fuelTank[0]) {
|
||||||
|
ship.use(ship.standard[6], fuelTank[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tier === 2) {
|
||||||
|
if (ship.id === 'alliance_chieftain' || ship.id === 'alliance_crusader' || ship.id === 'federal_gunship' || ship.id === 'vulture') {
|
||||||
|
const hrp = ModuleUtils.findInternal('hrp', 3, 'D');
|
||||||
|
const slot = ship.internal.filter(e => e.eligible && e.maxClass === 3);
|
||||||
|
if (hrp) {
|
||||||
|
ship.use(slot, hrp);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const sg = ship.getAvailableModules().lightestShieldGenerator(ship.ladenMass);
|
||||||
|
const slot = ship.internal.filter(a => !a.m)
|
||||||
|
.filter(a => a.maxClass >= sg.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (sg) {
|
||||||
|
ship.use(slot, sg);
|
||||||
|
}
|
||||||
|
if (engineeringLevel === 2) {
|
||||||
|
// ELP G3
|
||||||
|
const shieldBP = getBlueprint('ShieldGenerator_Optimised', ship.findShieldGenerator());
|
||||||
|
shieldBP.grade = 3;
|
||||||
|
ship.findShieldGenerator().blueprint = shieldBP;
|
||||||
|
setPercent(ship, ship.findShieldGenerator(), 100);
|
||||||
|
} else if (engineeringLevel === 3) {
|
||||||
|
// ELP G5
|
||||||
|
const shieldBP = getBlueprint('ShieldGenerator_Optimised', ship.findShieldGenerator());
|
||||||
|
shieldBP.grade = 5;
|
||||||
|
ship.findShieldGenerator().blueprint = shieldBP;
|
||||||
|
setPercent(ship, ship.findShieldGenerator(), 100);
|
||||||
|
}
|
||||||
|
// const shieldOrder = [1, 2, 3, 4, 5, 6, 7, 8].reverse();
|
||||||
|
// const shieldInternals = ship.internal.filter(a => !a.m)
|
||||||
|
// .filter(a => (!a.eligible) || a.eligible.sg)
|
||||||
|
// .filter(a => a.maxClass >= sg.class)
|
||||||
|
// .sort((a, b) => shieldOrder.indexOf(a.maxClass) - shieldOrder.indexOf(b.maxClass));
|
||||||
|
// for (let i = 0; i < shieldInternals.length; i++) {
|
||||||
|
// if (canMount(ship, shieldInternals[i], 'sg')) {
|
||||||
|
// ship.use(shieldInternals[i], sg);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
} else if (tier === 3 || tier === 4) {
|
||||||
|
const sg = ship.getAvailableModules().lightestShieldGenerator(ship.hullMass, 'A');
|
||||||
|
const slot = ship.internal.filter(a => !a.m)
|
||||||
|
.filter(a => a.maxClass >= sg.class)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
if (sg) {
|
||||||
|
ship.use(slot, sg);
|
||||||
|
}
|
||||||
|
if (engineeringLevel === 1) {
|
||||||
|
// ELP G3
|
||||||
|
const shieldBP = getBlueprint('ShieldGenerator_Optimised', ship.findShieldGenerator());
|
||||||
|
shieldBP.grade = 3;
|
||||||
|
shieldBP.special = Modifications.specials['special_shield_lightweight'];
|
||||||
|
ship.findShieldGenerator().blueprint = shieldBP;
|
||||||
|
setPercent(ship, ship.findShieldGenerator(), 100);
|
||||||
|
} else if (engineeringLevel === 2) {
|
||||||
|
// ELP G5
|
||||||
|
const shieldBP = getBlueprint('ShieldGenerator_Optimised', ship.findShieldGenerator());
|
||||||
|
shieldBP.grade = 5;
|
||||||
|
shieldBP.special = Modifications.specials['special_shield_lightweight'];
|
||||||
|
ship.findShieldGenerator().blueprint = shieldBP;
|
||||||
|
setPercent(ship, ship.findShieldGenerator(), 100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tier === 4) {
|
||||||
|
let t;
|
||||||
|
if (canMount(ship, ship.standard[1], 't', ship.standard[1].maxClass - 1)) {
|
||||||
|
t = ModuleUtils.findStandard('t', ship.standard[1].maxClass - 1, 'A');
|
||||||
|
} else {
|
||||||
|
t = ModuleUtils.findStandard('t', ship.standard[1].maxClass, 'A');
|
||||||
|
}
|
||||||
|
if (t) {
|
||||||
|
ship.use(ship.standard[1], t);
|
||||||
|
}
|
||||||
|
if (engineeringLevel === 1) {
|
||||||
|
// DD G3
|
||||||
|
const tBP = getBlueprint('Engine_Dirty', ship.standard[1]);
|
||||||
|
tBP.grade = 3;
|
||||||
|
tBP.special = Modifications.specials['special_engine_lightweight'];
|
||||||
|
ship.standard[1].m.blueprint = tBP;
|
||||||
|
setPercent(ship, ship.standard[1].m, 100);
|
||||||
|
} else if (engineeringLevel === 2) {
|
||||||
|
// DD G5
|
||||||
|
const tBP = getBlueprint('Engine_Dirty', ship.standard[1]);
|
||||||
|
tBP.grade = 5;
|
||||||
|
tBP.special = Modifications.specials['special_engine_lightweight'];
|
||||||
|
ship.standard[1].m.blueprint = tBP;
|
||||||
|
setPercent(ship, ship.standard[1].m, 100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tier === 4 || tier === 3) {
|
||||||
|
if (engineeringLevel === 3) {
|
||||||
|
const pd = ship.availCS.standard[4]
|
||||||
|
.filter(d => d.rating === 'D')
|
||||||
|
.filter(d => (d.engcap * 1.728) >= ship.boostEnergy)
|
||||||
|
.sort((a, b) => a.class.toString().localeCompare(b.class.toString()))[0];
|
||||||
|
if (pd) {
|
||||||
|
ship.use(ship.standard[4], pd);
|
||||||
|
}
|
||||||
|
// CE G5
|
||||||
|
const pdBP = getBlueprint('PowerDistributor_HighFrequency', ship.standard[4]);
|
||||||
|
pdBP.grade = 5;
|
||||||
|
pdBP.special = Modifications.specials['special_powerdistributor_capacity'];
|
||||||
|
ship.standard[4].m.blueprint = pdBP;
|
||||||
|
setPercent(ship, ship.standard[4].m, 100);
|
||||||
|
} else {
|
||||||
|
const pd = ship.availCS.standard[4]
|
||||||
|
.filter(d => d.rating === 'D')
|
||||||
|
.sort((a, b) => a.engcap > b.engcap)
|
||||||
|
[0];
|
||||||
|
if (pd) {
|
||||||
|
ship.use(ship.standard[4], pd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (tier === 4) {
|
||||||
|
if (engineeringLevel === 3) {
|
||||||
|
const pd = ship.availCS.standard[4]
|
||||||
|
.filter(d => d.rating === 'D')
|
||||||
|
.sort((a, b) => b.class.toString().localeCompare(a.class.toString()))[0];
|
||||||
|
if (pd) {
|
||||||
|
ship.use(ship.standard[4], pd);
|
||||||
|
}
|
||||||
|
// CE G5
|
||||||
|
const pdBP = getBlueprint('PowerDistributor_HighFrequency', ship.standard[4]);
|
||||||
|
pdBP.grade = 5;
|
||||||
|
pdBP.special = Modifications.specials['special_powerdistributor_capacity'];
|
||||||
|
ship.standard[4].m.blueprint = pdBP;
|
||||||
|
setPercent(ship, ship.standard[4].m, 100);
|
||||||
|
} else {
|
||||||
|
const pd = ship.availCS.standard[4]
|
||||||
|
.filter(d => d.rating === 'D')
|
||||||
|
.sort((a, b) => b.class.toString().localeCompare(a.class.toString()))[0];
|
||||||
|
if (pd) {
|
||||||
|
ship.use(ship.standard[4], pd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ship.fighterHangars && fighter) {
|
||||||
|
const slot = ship.internal.filter(s => s.maxClass >= 5 && !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))
|
||||||
|
[0];
|
||||||
|
const mod = ModuleUtils.findInternal('fh', 5, 'D');
|
||||||
|
if (slot && mod) {
|
||||||
|
ship.use(slot, mod);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tier === 1) {
|
||||||
|
const pd = ModuleUtils.findStandard('pd', 1, 'D');
|
||||||
|
if (pd) {
|
||||||
|
ship.use(ship.standard[4]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let dssPriority = 0;
|
||||||
|
let srvPriority = 0;
|
||||||
|
let afmu = true;
|
||||||
|
let cargo = false;
|
||||||
|
let miningLaserPriority = 0;
|
||||||
|
let refinery = false;
|
||||||
|
let collector = false;
|
||||||
|
let prospector = false;
|
||||||
|
let miningTools = false;
|
||||||
|
let refuelLimpets = false;
|
||||||
|
let repairLimpets = false;
|
||||||
|
console.log(role);
|
||||||
|
if (role === 'exploration') {
|
||||||
|
dssPriority = 2;
|
||||||
|
afmu = true;
|
||||||
|
} else if (role === 'surface') {
|
||||||
|
dssPriority = 2;
|
||||||
|
srvPriority = 2;
|
||||||
|
} else if (role === 'materialProspector') {
|
||||||
|
miningLaserPriority = 2;
|
||||||
|
srvPriority = 1;
|
||||||
|
} else if (role === 'propectorMining') {
|
||||||
|
dssPriority = 1;
|
||||||
|
prospector = true;
|
||||||
|
miningLaserPriority = 1;
|
||||||
|
cargo = true;
|
||||||
|
miningTools = true;
|
||||||
|
|
||||||
|
} else if (role === 'bigRigMining') {
|
||||||
|
dssPriority = 1;
|
||||||
|
miningLaserPriority = 2;
|
||||||
|
cargo = true;
|
||||||
|
collector = true;
|
||||||
|
refinery = true;
|
||||||
|
miningTools = true;
|
||||||
|
|
||||||
|
} else if (role === 'fuelRat') {
|
||||||
|
refuelLimpets = true;
|
||||||
|
cargo = true;
|
||||||
|
srvPriority = 1;
|
||||||
|
|
||||||
|
} else if (role === 'mechanic') {
|
||||||
|
repairLimpets = true;
|
||||||
|
cargo = true;
|
||||||
|
srvPriority = 1;
|
||||||
|
} else if (role === 'trucker') {
|
||||||
|
cargo = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dssPriority === 2) {
|
||||||
|
const mod = ModuleUtils.findModule('ss', '2i');
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
console.log(slot);
|
||||||
|
console.log(mod);
|
||||||
|
ship.use(slot, mod);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (srvPriority === 2) {
|
||||||
|
let mod;
|
||||||
|
let slot = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 6)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
if (slot) {
|
||||||
|
mod = ModuleUtils.findModule('pv', 'v2');
|
||||||
|
ship.use(slot, mod);
|
||||||
|
} else if (!slot) {
|
||||||
|
slot = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 4)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
if (slot) {
|
||||||
|
mod = ModuleUtils.findModule('pv', 'v4');
|
||||||
|
ship.use(slot, mod);
|
||||||
|
} else {
|
||||||
|
slot = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 2)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
if (slot) {
|
||||||
|
mod = ModuleUtils.findModule('pv', 'v6');
|
||||||
|
ship.use(slot, mod);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cargo === true) {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => b.maxClass.toString().localeCompare(a.maxClass.toString()))[0];
|
||||||
|
const mod = ModuleUtils.findInternal('cr', slot.maxClass, 'E');
|
||||||
|
ship.use(slot, mod);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (refuelLimpets === true) {
|
||||||
|
const mod = ModuleUtils.findModule('fx', 'F4');
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
ship.use(mod, slot);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (repairLimpets === true) {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
let mod;
|
||||||
|
if (slot.maxClass >= 3) {
|
||||||
|
mod = ModuleUtils.findModule('rpl', '9e');
|
||||||
|
} else {
|
||||||
|
mod = ModuleUtils.findModule('rpl', '9s');
|
||||||
|
}
|
||||||
|
ship.use(mod, slot);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (prospector === true) {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
let mod;
|
||||||
|
if (slot.maxClass >= 3) {
|
||||||
|
mod = ModuleUtils.findModule('pc', 'P9');
|
||||||
|
} else {
|
||||||
|
mod = ModuleUtils.findModule('pc', 'P4');
|
||||||
|
}
|
||||||
|
ship.use(mod, slot);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (collector === true) {
|
||||||
|
const slots = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()));
|
||||||
|
if (slots.length >= 2) {
|
||||||
|
let slot = slots.find(s => s.maxClass >= 5);
|
||||||
|
let mod;
|
||||||
|
if (slot) {
|
||||||
|
mod = ModuleUtils.findInternal('cc', slot.maxClass, 'D');
|
||||||
|
} else if (slots.find(s => s.maxClass <= 4)) {
|
||||||
|
slot = slots.find(s => s.maxClass <= 4);
|
||||||
|
mod = ModuleUtils.findInternal('cc', slot.maxClass, 'D');
|
||||||
|
}
|
||||||
|
ship.use(slot, mod);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (refinery === true) {
|
||||||
|
const slots = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 4)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
if (slots) {
|
||||||
|
const mod = ModuleUtils.findInternal('rf', 4, 'A');
|
||||||
|
ship.use(slots, mod);
|
||||||
|
} else {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass <= 3)
|
||||||
|
.sort((a, b) => b.maxClass.toString().localeCompare(a.maxClass.toString()))[0];
|
||||||
|
const mod = ModuleUtils.findInternal('rf', slot.maxClass, 'A');
|
||||||
|
ship.use(slots, mod);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dssPriority === 1) {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()))[0];
|
||||||
|
const dss = ModuleUtils.findInternal('ss', 1, 'C')
|
||||||
|
if (slot) {
|
||||||
|
ship.use(slot, dss);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (srvPriority === 1) {
|
||||||
|
const slot = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 2)
|
||||||
|
.sort((a, b) => a.maxClass.toString().localeCompare(b.maxClass.toString()));
|
||||||
|
if (slot.find(s => s.maxClass >= 4)) {
|
||||||
|
const slot = slot.find(s => s.maxClass >= 4);
|
||||||
|
const srv = ModuleUtils.findInternal('pv', 4, 'G')
|
||||||
|
ship.use(slot, srv);
|
||||||
|
} else if (slot.find(s => s.maxClass >= 2)) {
|
||||||
|
const slot = slot.find(s => s.maxClass >= 2);
|
||||||
|
const srv = ModuleUtils.findInternal('pv', 2, 'G')
|
||||||
|
ship.use(slot, srv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gfsb === true) {
|
||||||
|
const slots = ship.internal.filter(s => !s.m)
|
||||||
|
.filter(s => s.maxClass >= 1)
|
||||||
|
.sort((a, b) => b.maxClass.toString().localeCompare(a.maxClass.toString()));
|
||||||
|
if (slots.find(s => s.maxClass >= 5)) {
|
||||||
|
const mod = ModuleUtils.findInternal('gfsb', 5, 'H');
|
||||||
|
ship.use(slots.find(s => s.maxClass >= 5), mod)
|
||||||
|
} else if (slots.find(s => s.maxClass >= 4)) {
|
||||||
|
const mod = ModuleUtils.findInternal('gfsb', 4, 'H');
|
||||||
|
ship.use(slots.find(s => s.maxClass >= 4), mod)
|
||||||
|
} else if (slots.find(s => s.maxClass >= 3)) {
|
||||||
|
const mod = ModuleUtils.findInternal('gfsb', 3, 'H');
|
||||||
|
ship.use(slots.find(s => s.maxClass >= 3), mod)
|
||||||
|
} else if (slots.find(s => s.maxClass >= 2)) {
|
||||||
|
const mod = ModuleUtils.findInternal('gfsb', 2, 'H');
|
||||||
|
ship.use(slots.find(s => s.maxClass >= 2), mod)
|
||||||
|
} else if (slots.find(s => s.maxClass >= 1)) {
|
||||||
|
const mod = ModuleUtils.findInternal('gfsb', 1, 'H');
|
||||||
|
ship.use(slots.find(s => s.maxClass >= 1), mod)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// const pp = ship.getAvailableModules().lightestPowerPlant(Math.max(ship.powerRetracted, ship.powerDeployed), 'A');
|
||||||
|
// const t = ship.getAvailableModules().lightestThruster(ship.ladenMass);
|
||||||
|
// ship.use(ship.standard[0], pp);
|
||||||
|
// ship.use(ship.standard[1], t);
|
||||||
|
|
||||||
|
// ship.useLightestStandard(standardOpts);
|
||||||
|
ship.updatePowerGenerated()
|
||||||
|
.updatePowerUsed()
|
||||||
|
.recalculateMass()
|
||||||
|
.updateJumpStats()
|
||||||
|
.recalculateShield()
|
||||||
|
.recalculateShieldCells()
|
||||||
|
.recalculateArmour()
|
||||||
|
.recalculateDps()
|
||||||
|
.recalculateEps()
|
||||||
|
.recalculateHps()
|
||||||
|
.updateMovement()
|
||||||
|
.updateModificationsString();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Trader Role
|
* Trader Role
|
||||||
* @param {Ship} ship Ship instance
|
* @param {Ship} ship Ship instance
|
||||||
@@ -36,7 +609,7 @@ export function trader(ship, shielded, standardOpts) {
|
|||||||
let sg = ship.getAvailableModules().lightestShieldGenerator(ship.hullMass);
|
let sg = ship.getAvailableModules().lightestShieldGenerator(ship.hullMass);
|
||||||
ship.useStandard('A')
|
ship.useStandard('A')
|
||||||
.use(ship.standard[3], ModuleUtils.standard(3, ship.standard[3].maxClass + 'D')) // D Life Support
|
.use(ship.standard[3], ModuleUtils.standard(3, ship.standard[3].maxClass + 'D')) // D Life Support
|
||||||
.use(ship.standard[1], ModuleUtils.standard(1, ship.standard[1].maxClass + 'D')) // D Life Support
|
.use(ship.standard[1], ModuleUtils.standard(1, ship.standard[1].maxClass + 'D')) // D Power Plant
|
||||||
.use(ship.standard[4], ModuleUtils.standard(4, ship.standard[4].maxClass + 'D')) // D Life Support
|
.use(ship.standard[4], ModuleUtils.standard(4, ship.standard[4].maxClass + 'D')) // D Life Support
|
||||||
.use(ship.standard[5], ModuleUtils.standard(5, ship.standard[5].maxClass + 'D')); // D Sensors
|
.use(ship.standard[5], ModuleUtils.standard(5, ship.standard[5].maxClass + 'D')); // D Sensors
|
||||||
|
|
||||||
@@ -45,7 +618,7 @@ export function trader(ship, shielded, standardOpts) {
|
|||||||
.filter(a => (!a.eligible) || a.eligible.sg)
|
.filter(a => (!a.eligible) || a.eligible.sg)
|
||||||
.filter(a => a.maxClass >= sg.class)
|
.filter(a => a.maxClass >= sg.class)
|
||||||
.sort((a, b) => shieldOrder.indexOf(a.maxClass) - shieldOrder.indexOf(b.maxClass));
|
.sort((a, b) => shieldOrder.indexOf(a.maxClass) - shieldOrder.indexOf(b.maxClass));
|
||||||
shieldInternals.some(function(slot) {
|
shieldInternals.some(function (slot) {
|
||||||
if (canMount(ship, slot, 'sg')) { // Assuming largest slot can hold an eligible shield
|
if (canMount(ship, slot, 'sg')) { // Assuming largest slot can hold an eligible shield
|
||||||
const shield = ModuleUtils.findInternal('sg', slot.maxClass, 'A');
|
const shield = ModuleUtils.findInternal('sg', slot.maxClass, 'A');
|
||||||
if (shield && shield.maxmass > ship.hullMass) {
|
if (shield && shield.maxmass > ship.hullMass) {
|
||||||
@@ -269,7 +842,7 @@ export function miner(ship, shielded) {
|
|||||||
|
|
||||||
// Dual mining lasers of highest possible class; remove anything else
|
// Dual mining lasers of highest possible class; remove anything else
|
||||||
const miningLaserOrder = [2, 3, 4, 1, 0];
|
const miningLaserOrder = [2, 3, 4, 1, 0];
|
||||||
const miningLaserHardpoints = ship.hardpoints.concat().sort(function(a, b) {
|
const miningLaserHardpoints = ship.hardpoints.concat().sort(function (a, b) {
|
||||||
return miningLaserOrder.indexOf(a.maxClass) - miningLaserOrder.indexOf(b.maxClass);
|
return miningLaserOrder.indexOf(a.maxClass) - miningLaserOrder.indexOf(b.maxClass);
|
||||||
});
|
});
|
||||||
for (let s of miningLaserHardpoints) {
|
for (let s of miningLaserHardpoints) {
|
||||||
@@ -283,7 +856,7 @@ export function miner(ship, shielded) {
|
|||||||
|
|
||||||
// Number of collector limpets required to be active is a function of the size of the ship and the power of the lasers
|
// Number of collector limpets required to be active is a function of the size of the ship and the power of the lasers
|
||||||
const miningLaserDps = ship.hardpoints.filter(h => h.m != null)
|
const miningLaserDps = ship.hardpoints.filter(h => h.m != null)
|
||||||
.reduce(function(a, b) {
|
.reduce(function (a, b) {
|
||||||
return a + b.m.getDps();
|
return a + b.m.getDps();
|
||||||
}, 0);
|
}, 0);
|
||||||
// Find out how many internal slots we have, and their potential cargo size
|
// Find out how many internal slots we have, and their potential cargo size
|
||||||
@@ -314,7 +887,7 @@ export function miner(ship, shielded) {
|
|||||||
|
|
||||||
// Power distributor to power the mining lasers indefinitely
|
// Power distributor to power the mining lasers indefinitely
|
||||||
const wepRateRequired = ship.hardpoints.filter(h => h.m != null)
|
const wepRateRequired = ship.hardpoints.filter(h => h.m != null)
|
||||||
.reduce(function(a, b) {
|
.reduce(function (a, b) {
|
||||||
return a + b.m.getEps();
|
return a + b.m.getEps();
|
||||||
}, 0);
|
}, 0);
|
||||||
standardOpts.pd = ship.getAvailableModules().matchingPowerDist({ weprate: wepRateRequired }).id;
|
standardOpts.pd = ship.getAvailableModules().matchingPowerDist({ weprate: wepRateRequired }).id;
|
||||||
|
|||||||
@@ -78,5 +78,6 @@ export const STATS_FORMATTING = {
|
|||||||
'thermres': { 'format': 'pct' },
|
'thermres': { 'format': 'pct' },
|
||||||
'wepcap': { 'format': 'round1', 'unit': 'MJ' },
|
'wepcap': { 'format': 'round1', 'unit': 'MJ' },
|
||||||
'weprate': { 'format': 'round1', 'unit': 'MW' },
|
'weprate': { 'format': 'round1', 'unit': 'MW' },
|
||||||
'jumpboost': { 'format': 'round1', 'unit': 'LY' }
|
'jumpboost': { 'format': 'round1', 'unit': 'LY' },
|
||||||
|
'proberadius': { 'format': 'pct1', 'unit': 'pct' },
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ tbody tr {
|
|||||||
background-color: @warning-bg;
|
background-color: @warning-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&:nth-child(odd){
|
||||||
background-color: @alt-primary-bg;
|
background-color: @alt-primary-bg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"id": "https://coriolis.edcd.io/schemas/ship-loadout/1.json#",
|
"id": "https://coriolis.io/schemas/ship-loadout/1.json#",
|
||||||
"title": "Ship Loadout",
|
"title": "Ship Loadout",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "The details for a specific ship build/loadout. DEPRECATED in favor of Version 3",
|
"description": "The details for a specific ship build/loadout. DEPRECATED in favor of Version 3",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"id": "https://coriolis.edcd.io/schemas/ship-loadout/2.json#",
|
"id": "https://coriolis.io/schemas/ship-loadout/2.json#",
|
||||||
"title": "Ship Loadout",
|
"title": "Ship Loadout",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "The details for a specific ship build/loadout. DEPRECATED in favor of Version 3",
|
"description": "The details for a specific ship build/loadout. DEPRECATED in favor of Version 3",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"id": "https://coriolis.edcd.io/schemas/ship-loadout/3.json#",
|
"id": "https://coriolis.io/schemas/ship-loadout/3.json#",
|
||||||
"title": "Ship Loadout",
|
"title": "Ship Loadout",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "The details for a specific ship build/loadout",
|
"description": "The details for a specific ship build/loadout",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"id": "https://coriolis.edcd.io/schemas/ship-loadout/4.json#",
|
"id": "https://coriolis.io/schemas/ship-loadout/4.json#",
|
||||||
"title": "Ship Loadout",
|
"title": "Ship Loadout",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"description": "The details for a specific ship build/loadout",
|
"description": "The details for a specific ship build/loadout",
|
||||||
|
|||||||
@@ -8,7 +8,13 @@ if (workbox) {
|
|||||||
|
|
||||||
workbox.routing.registerRoute(
|
workbox.routing.registerRoute(
|
||||||
new RegExp('/(.*?)'),
|
new RegExp('/(.*?)'),
|
||||||
workbox.strategies.staleWhileRevalidate()
|
workbox.strategies.staleWhileRevalidate({
|
||||||
|
plugins: [
|
||||||
|
new workbox.cacheableResponse.Plugin({
|
||||||
|
statuses: [0, 200]
|
||||||
|
})
|
||||||
|
]
|
||||||
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
workbox.routing.registerRoute(
|
workbox.routing.registerRoute(
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
mode: 'development',
|
mode: 'development',
|
||||||
entry: {
|
entry: {
|
||||||
main: './src/app/index.js'
|
main: './src/app/index.js',
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
// When requiring, you don't need to add these extensions
|
// When requiring, you don't need to add these extensions
|
||||||
@@ -22,13 +22,11 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
optimization: {
|
optimization: {
|
||||||
minimize: false,
|
minimize: false,
|
||||||
splitChunks: {
|
usedExports: true
|
||||||
chunks: 'all'
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, 'build'),
|
path: path.join(__dirname, 'build'),
|
||||||
filename: 'app.js',
|
chunkFilename: '[name].bundle.js',
|
||||||
publicPath: '/'
|
publicPath: '/'
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
@@ -56,7 +54,10 @@ module.exports = {
|
|||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{ test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' }) },
|
{ test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' }) },
|
||||||
{ test: /\.less$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader!less-loader' }) },
|
{
|
||||||
|
test: /\.less$/,
|
||||||
|
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader!less-loader' })
|
||||||
|
},
|
||||||
{ test: /\.(js|jsx)$/, loaders: ['babel-loader'], include: path.join(__dirname, 'src') },
|
{ test: /\.(js|jsx)$/, loaders: ['babel-loader'], include: path.join(__dirname, 'src') },
|
||||||
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||||
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||||
|
|||||||
@@ -11,26 +11,28 @@ const buildDate = new Date();
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
devtool: 'source-map',
|
devtool: 'source-map',
|
||||||
entry: {
|
entry: {
|
||||||
main: ['./src/app/index.js']
|
main: './src/app/index.js'
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: ['.js', '.jsx', '.json', '.less']
|
extensions: ['.js', '.jsx', '.json', '.less']
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, 'build'),
|
path: path.join(__dirname, 'build'),
|
||||||
filename: '[name].[hash].js',
|
chunkFilename: '[name].bundle.js',
|
||||||
publicPath: '/',
|
publicPath: '/',
|
||||||
globalObject: 'this'
|
globalObject: 'this'
|
||||||
},
|
},
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
optimization: {
|
optimization: {
|
||||||
minimize: true,
|
minimize: true,
|
||||||
splitChunks: {
|
usedExports: true
|
||||||
chunks: 'all'
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new CopyWebpackPlugin(['src/.htaccess', { from: 'src/schemas', to: 'schemas' }, {from: 'src/images/logo/*', flatten: true, to: ''}, 'src/iframe.html', 'src/xdLocalStoragePostMessageApi.min.js']),
|
new CopyWebpackPlugin(['src/.htaccess', { from: 'src/schemas', to: 'schemas' }, {
|
||||||
|
from: 'src/images/logo/*',
|
||||||
|
flatten: true,
|
||||||
|
to: ''
|
||||||
|
}, 'src/iframe.html', 'src/xdLocalStoragePostMessageApi.min.js']),
|
||||||
// new webpack.optimize.CommonsChunkPlugin({
|
// new webpack.optimize.CommonsChunkPlugin({
|
||||||
// name: 'lib',
|
// name: 'lib',
|
||||||
// filename: 'lib.[chunkhash:6].js'
|
// filename: 'lib.[chunkhash:6].js'
|
||||||
@@ -48,15 +50,15 @@ module.exports = {
|
|||||||
disable: false,
|
disable: false,
|
||||||
allChunks: true
|
allChunks: true
|
||||||
}),
|
}),
|
||||||
new BugsnagBuildReporterPlugin({
|
// new BugsnagBuildReporterPlugin({
|
||||||
apiKey: 'ba9fae819372850fb660755341fa6ef5',
|
// apiKey: 'ba9fae819372850fb660755341fa6ef5',
|
||||||
appVersion: `${pkgJson.version}-${buildDate.toISOString()}`
|
// appVersion: `${pkgJson.version}-${buildDate.toISOString()}`
|
||||||
}, { /* opts */ }),
|
// }, { /* opts */ }),
|
||||||
new BugsnagSourceMapUploaderPlugin({
|
// new BugsnagSourceMapUploaderPlugin({
|
||||||
apiKey: 'ba9fae819372850fb660755341fa6ef5',
|
// apiKey: 'ba9fae819372850fb660755341fa6ef5',
|
||||||
overwrite: true,
|
// overwrite: true,
|
||||||
appVersion: `${pkgJson.version}-${buildDate.toISOString()}`
|
// appVersion: `${pkgJson.version}-${buildDate.toISOString()}`
|
||||||
}),
|
// }),
|
||||||
new InjectManifest({
|
new InjectManifest({
|
||||||
swSrc: './src/sw.js',
|
swSrc: './src/sw.js',
|
||||||
importWorkboxFrom: 'cdn',
|
importWorkboxFrom: 'cdn',
|
||||||
@@ -66,7 +68,10 @@ module.exports = {
|
|||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{ test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' }) },
|
{ test: /\.css$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' }) },
|
||||||
{ test: /\.less$/, loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader!less-loader' }) },
|
{
|
||||||
|
test: /\.less$/,
|
||||||
|
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader!less-loader' })
|
||||||
|
},
|
||||||
{ test: /\.(js|jsx)$/, loader: 'babel-loader?cacheDirectory=true', include: path.join(__dirname, 'src') },
|
{ test: /\.(js|jsx)$/, loader: 'babel-loader?cacheDirectory=true', include: path.join(__dirname, 'src') },
|
||||||
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||||
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||||
|
|||||||
Reference in New Issue
Block a user