mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
Compare commits
37 Commits
ed-forge
...
8f5375f732
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f5375f732 | ||
|
|
3156b6a533 | ||
|
|
18d7ada65f | ||
|
|
8593e18de4 | ||
|
|
284b0b3ce2 | ||
|
|
c3cb2cfa3b | ||
|
|
5d54eb8862 | ||
|
|
9fc6508be4 | ||
|
|
ef82cf4a00 | ||
|
|
9766f78e21 | ||
|
|
6d8bd6ca44 | ||
|
|
875af31ffe | ||
|
|
93adcb3daf | ||
|
|
ec9a07b143 | ||
|
|
bb8eeb4d3f | ||
|
|
8b7a7192a4 | ||
|
|
6688a1fbe3 | ||
|
|
2ea5fe5d58 | ||
|
|
efd644c6f1 | ||
|
|
17c6ec1f97 | ||
|
|
9bc6e36f14 | ||
|
|
062815054c | ||
|
|
7bc40d24d8 | ||
|
|
d9da250f50 | ||
|
|
801969dc07 | ||
|
|
6bf820934f | ||
|
|
887dbc25f8 | ||
|
|
50de77d613 | ||
|
|
13561ee21a | ||
|
|
333feaa6bf | ||
|
|
1e37fd15eb | ||
|
|
f82b0212b5 | ||
|
|
32138f5546 | ||
|
|
85ddce14a5 | ||
|
|
7e44772f2e | ||
|
|
e90bfe9b68 | ||
|
|
64002e1ae0 |
6
.babelrc
6
.babelrc
@@ -7,6 +7,8 @@
|
||||
"@babel/plugin-syntax-dynamic-import",
|
||||
"@babel/plugin-syntax-import-meta",
|
||||
["@babel/plugin-proposal-class-properties", { "loose": true }],
|
||||
"@babel/plugin-proposal-do-expressions",
|
||||
"@babel/plugin-proposal-function-bind",
|
||||
"@babel/plugin-proposal-json-strings",
|
||||
[
|
||||
"@babel/plugin-proposal-decorators",
|
||||
@@ -28,7 +30,7 @@
|
||||
}
|
||||
],
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator",
|
||||
"@babel/plugin-proposal-do-expressions",
|
||||
"@babel/plugin-proposal-function-bind"
|
||||
["@babel/plugin-proposal-private-methods", { "loose": true }],
|
||||
["@babel/plugin-proposal-private-property-in-object", { "loose": true }]
|
||||
]
|
||||
}
|
||||
|
||||
7
.dockerignore
Normal file
7
.dockerignore
Normal file
@@ -0,0 +1,7 @@
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
.gitignore
|
||||
README.md
|
||||
|
||||
build
|
||||
node_modules
|
||||
14
.gitattributes
vendored
Normal file
14
.gitattributes
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# Set the default behavior, in case people don't have core.autocrlf set, in order to prevent line ending inconsistency.
|
||||
* text=auto
|
||||
|
||||
# Explicitly declare text files you want to always be normalized and converted
|
||||
# to native line endings on checkout.
|
||||
*.jsx text
|
||||
*.js text
|
||||
|
||||
# Declare files that will always have CRLF line endings on checkout.
|
||||
# *.sln text eol=crlf
|
||||
|
||||
# Denote all files that are truly binary and should not be modified.
|
||||
*.png binary
|
||||
*.jpg binary
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,4 +10,3 @@ env
|
||||
.project
|
||||
.vscode/
|
||||
docs/
|
||||
package-lock.json
|
||||
|
||||
25
Dockerfile
Normal file
25
Dockerfile
Normal file
@@ -0,0 +1,25 @@
|
||||
#syntax=docker/dockerfile:1.4
|
||||
# Run this from within this directory. Change the location of coriolis-data repo and image name/tag as needed.
|
||||
# docker buildx build --build-context data=../coriolis-data --tag coriolis .
|
||||
|
||||
FROM node:18-alpine
|
||||
|
||||
# TODO: For a production build, we may want to just build the bundle and copy that in. No need for local copy of source.
|
||||
WORKDIR /app
|
||||
ADD . .
|
||||
COPY --from=data . /coriolis-data/
|
||||
|
||||
# Git is required before install if any modules (like coriolis-data) are loaded from github
|
||||
RUN apk update
|
||||
RUN apk add git
|
||||
|
||||
WORKDIR /app/coriolis-data
|
||||
RUN npm install
|
||||
WORKDIR /app
|
||||
RUN npm install
|
||||
# Bundle for production config with webpack & log
|
||||
RUN npm run build > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)
|
||||
|
||||
# Optimally, this will start a static asset server like nginx/apache. Currently, this will start dev webpack server.
|
||||
CMD ["npm", "start"]
|
||||
EXPOSE 3300
|
||||
23
Dockerfile-dev
Normal file
23
Dockerfile-dev
Normal file
@@ -0,0 +1,23 @@
|
||||
#syntax=docker/dockerfile:1.4
|
||||
# Run this from within this directory. Change the location of coriolis-data repo and image name/tag as needed.
|
||||
# docker buildx build --build-context data=../coriolis-data --tag coriolis -f ./Dockerfile-dev .
|
||||
|
||||
FROM node:18-alpine
|
||||
|
||||
WORKDIR /app
|
||||
ADD . .
|
||||
COPY --from=data . /coriolis-data/
|
||||
|
||||
# Install git & any other desired in-container dev tools
|
||||
# Git is required before install if any modules (like coriolis-data) are loaded from github
|
||||
RUN apk update
|
||||
RUN apk add git
|
||||
|
||||
WORKDIR /app/coriolis-data
|
||||
RUN npm install
|
||||
WORKDIR /app
|
||||
RUN npm install
|
||||
|
||||
|
||||
CMD ["npm", "start"]
|
||||
EXPOSE 3300
|
||||
32
Dockerfile-local-prod
Normal file
32
Dockerfile-local-prod
Normal file
@@ -0,0 +1,32 @@
|
||||
#syntax=docker/dockerfile:1.4
|
||||
# Run this from within this directory. Change the location of coriolis-data repo and image name/tag as needed.
|
||||
# docker buildx build --build-context data=../coriolis-data --tag coriolis:0.0.7-local-prod -f Dockerfile-local-prod .
|
||||
# docker run -d -p 80:8080 coriolis:0.0.7-local-prod
|
||||
|
||||
FROM node:18-alpine
|
||||
|
||||
# TODO: For a production build, we may want to just build the bundle and copy that in. No need for local copy of source.
|
||||
WORKDIR /app
|
||||
ADD . .
|
||||
# COPY --from=data . /coriolis-data/
|
||||
|
||||
# Git is required before install if any modules (like coriolis-data is now referenced in the package.json) are loaded from github
|
||||
RUN apk update
|
||||
RUN apk add git
|
||||
|
||||
# WORKDIR /app/coriolis-data
|
||||
# RUN npm install
|
||||
# WORKDIR /app
|
||||
# RUN npm install
|
||||
# Bundle for production config with webpack & log
|
||||
# In this version of the dockerfile, I'm deferring automated webpack build so I can monitor a manual build
|
||||
# RUN npm run build > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)
|
||||
|
||||
RUN npm install -g http-server
|
||||
|
||||
# Optimally, this will start a static asset server like nginx/apache. Currently, this will start dev webpack server.
|
||||
# CMD ["http-server", "/app/build", "-c-1"]
|
||||
CMD ["/bin/ash"]
|
||||
# CMD [""]
|
||||
|
||||
EXPOSE 8080
|
||||
13
README.md
13
README.md
@@ -14,7 +14,16 @@ Coriolis was created using assets and imagery from Elite: Dangerous, with the pe
|
||||
|
||||
## Development
|
||||
|
||||
To get a local instance of coriolis running, perform the following steps in a shell:
|
||||
This release includes the ability to run the app as a Docker container.
|
||||
```sh
|
||||
> git clone https://github.com/EDCD/coriolis.git
|
||||
> git clone https://github.com/EDCD/coriolis-data.git
|
||||
> cd coriolis
|
||||
> docker buildx build --build-context data=../coriolis-data --tag coriolis .
|
||||
> docker run -d -p 3300:3300 coriolis
|
||||
```
|
||||
|
||||
Or to run an instance of coriolis without Docker Desktop, perform the following steps in a shell:
|
||||
```sh
|
||||
> git clone https://github.com/EDCD/coriolis.git
|
||||
> git clone https://github.com/EDCD/coriolis-data.git
|
||||
@@ -29,7 +38,7 @@ You will then have a development server running on `localhost:3300`.
|
||||
|
||||
### Ship and Module Database
|
||||
|
||||
See the [Data wiki](https://github.com/cmmcleod/coriolis-data/wiki) for details on structure, etc.
|
||||
See the [Data wiki](https://github.com/EDCD/coriolis-data/wiki) for details on structure, etc.
|
||||
|
||||
## Deployment
|
||||
|
||||
|
||||
11
devServer.js
11
devServer.js
@@ -3,24 +3,13 @@ var WebpackDevServer = require("webpack-dev-server");
|
||||
var config = require('./webpack.config.dev');
|
||||
|
||||
new WebpackDevServer(webpack(config), {
|
||||
publicPath: config.output.publicPath,
|
||||
hot: true,
|
||||
disableHostCheck: true,
|
||||
headers: { "Access-Control-Allow-Origin": "*" },
|
||||
historyApiFallback: {
|
||||
rewrites: [
|
||||
// For some reason connect-history-api-fallback does not allow '.' in the URL for history fallback...
|
||||
{ from: /\/outfit\//, to: '/index.html' }
|
||||
]
|
||||
},
|
||||
stats: {
|
||||
assets: true,
|
||||
colors: true,
|
||||
version: false,
|
||||
hash: false,
|
||||
timings: true,
|
||||
chunks: false,
|
||||
chunkModules: false
|
||||
}
|
||||
}).listen(3300, "0.0.0.0", function (err, result) {
|
||||
if (err) {
|
||||
|
||||
12992
package-lock.json
generated
Normal file
12992
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
95
package.json
95
package.json
@@ -1,14 +1,19 @@
|
||||
{
|
||||
"name": "coriolis_shipyard",
|
||||
"version": "3.0.0",
|
||||
"version": "3.0.1",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/EDCD/coriolis"
|
||||
},
|
||||
"homepage": "https://coriolis.io",
|
||||
"bugs": "https://github.com/EDCD/coriolis/issues",
|
||||
"contributors": [
|
||||
{ "name": "cmdrmcdonald" },
|
||||
{ "name": "willb321" },
|
||||
{ "name": "felixlinker" }
|
||||
],
|
||||
"private": true,
|
||||
"engine": "node >= 4.8.1",
|
||||
"engine": "node >= 10.13.0",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"extract-translations": "grep -hroE \"(translate\\('[^']+'\\))|(tip.bind\\(null, '[^']+')\" src/* | grep -oE \"'[^']+'\" | grep -oE \"[^']+\" | sort -u -f",
|
||||
@@ -18,7 +23,8 @@
|
||||
"test": "jest",
|
||||
"prod-serve": "nginx -p $(pwd) -c nginx.conf",
|
||||
"prod-stop": "kill -QUIT $(cat nginx.pid)",
|
||||
"build": "npm run clean && cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js",
|
||||
"buildfresh": "rimraf node_modules && rm package-lock.json && npm install && npm run build > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)",
|
||||
"build": "npm run clean && cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
|
||||
"rsync": "rsync -ae \"ssh -i $CORIOLIS_PEM\" --delete build/ $CORIOLIS_USER@$CORIOLIS_HOST:~/wwws",
|
||||
"deploy": "npm run lint && npm test && npm run build && npm run rsync"
|
||||
},
|
||||
@@ -55,7 +61,7 @@
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.0.0",
|
||||
"@babel/core": "^7.20.12",
|
||||
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
||||
"@babel/plugin-proposal-decorators": "^7.0.0",
|
||||
"@babel/plugin-proposal-do-expressions": "^7.0.0",
|
||||
@@ -74,15 +80,12 @@
|
||||
"@babel/plugin-syntax-import-meta": "^7.0.0",
|
||||
"@babel/preset-env": "^7.0.0",
|
||||
"@babel/preset-react": "^7.0.0",
|
||||
"appcache-webpack-plugin": "^1.4.0",
|
||||
"babel-core": "^7.0.0-bridge.0",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-jest": "^23.6.0",
|
||||
"@rollup/plugin-node-resolve": "^15.0.1",
|
||||
"babel-loader": "^8.0.0",
|
||||
"copy-webpack-plugin": "^4.5.2",
|
||||
"copy-webpack-plugin": "^10.2.4",
|
||||
"create-react-class": "^15.6.3",
|
||||
"cross-env": "^5.2.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"css-loader": "^6.7.3",
|
||||
"d3-selection": "^1.3.2",
|
||||
"esdoc": "^1.1.0",
|
||||
"esdoc-custom-theme": "^1.4.2",
|
||||
@@ -93,54 +96,66 @@
|
||||
"esdoc-standard-plugin": "^1.0.0",
|
||||
"eslint": "^5.6.0",
|
||||
"eslint-plugin-react": "^7.11.1",
|
||||
"expose-loader": "^0.7.5",
|
||||
"express": "^4.16.3",
|
||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
||||
"file-loader": "^2.0.0",
|
||||
"html-webpack-plugin": "^3.0.7",
|
||||
"jest-cli": "^23.6.0",
|
||||
"jsen": "^0.6.4",
|
||||
"expose-loader": "^3.1.0",
|
||||
"express": "^4.18.2",
|
||||
"html-webpack-plugin": "^5.5.0",
|
||||
"jsen": "^0.6.6",
|
||||
"json-loader": "^0.5.4",
|
||||
"less": "^3.8.1",
|
||||
"less-loader": "^4.1.0",
|
||||
"react-addons-perf": "^15.4.2",
|
||||
"less-loader": "^11.1.0",
|
||||
"mini-css-extract-plugin": "^2.7.2",
|
||||
"react-container-dimensions": "^1.4.1",
|
||||
"react-testutils-additions": "^16.0.0",
|
||||
"react-testutils-additions": "^15.0.0",
|
||||
"react-transition-group": "^2.5.0",
|
||||
"rimraf": "^2.6.1",
|
||||
"rollup": "^0.66.2",
|
||||
"rollup-plugin-node-resolve": "^3.4.0",
|
||||
"style-loader": "^0.23.0",
|
||||
"uglify-js": "^3.4.9",
|
||||
"url-loader": "^1.1.1",
|
||||
"webpack": "^4.20.2",
|
||||
"webpack-bugsnag-plugins": "^1.2.2",
|
||||
"webpack-cli": "^3.1.1",
|
||||
"webpack-dev-server": "^3.1.9",
|
||||
"webpack-notifier": "^1.6.0",
|
||||
"workbox-webpack-plugin": "^3.6.1"
|
||||
"rimraf": "^4.1.2",
|
||||
"rollup": "^3.17.2",
|
||||
"style-loader": "^3.3.1",
|
||||
"uglify-js": "^3.17.4",
|
||||
"webpack": "^5.75.0",
|
||||
"webpack-cli": "^5.0.1",
|
||||
"webpack-dev-server": "^4.11.1",
|
||||
"webpack-merge": "^5.8.0",
|
||||
"webpack-notifier": "^1.15.0",
|
||||
"workbox-cacheable-response": "^6.5.4",
|
||||
"workbox-expiration": "^6.5.4",
|
||||
"workbox-precaching": "^6.5.4",
|
||||
"workbox-routing": "^6.5.4",
|
||||
"workbox-strategies": "^6.5.4",
|
||||
"workbox-webpack-plugin": "^6.5.4"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"dependencies": {
|
||||
"@babel/polyfill": "^7.0.0",
|
||||
"assert": "^1.5.0",
|
||||
"auto-bind": "^5.0.1",
|
||||
"base64url": "^3.0.1",
|
||||
"browserify-zlib-next": "^1.0.1",
|
||||
"buffer": "^5.7.0",
|
||||
"classnames": "^2.2.6",
|
||||
"constants-browserify": "^1.0.0",
|
||||
"core-js": "^3.28.0",
|
||||
"coriolis-data": "../coriolis-data",
|
||||
"crypto-browserify": "^3.12.0",
|
||||
"d3": "^5.7.0",
|
||||
"detect-browser": "^3.0.1",
|
||||
"fbemitter": "^2.1.1",
|
||||
"https-browserify": "^1.0.0",
|
||||
"lodash": "^4.17.11",
|
||||
"lz-string": "^1.4.4",
|
||||
"pako": "^1.0.6",
|
||||
"os-browserify": "^0.3.0",
|
||||
"pako": "^2.1.0",
|
||||
"path-browserify": "^1.0.1",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^15.5.4",
|
||||
"react-dom": "^15.5.4",
|
||||
"react-extras": "^0.7.1",
|
||||
"react": "^15.6.2",
|
||||
"react-dom": "^15.6.2",
|
||||
"react-fuzzy": "^0.5.2",
|
||||
"react-ga": "^2.5.3",
|
||||
"react-number-editor": "Athanasius/react-number-editor.git#miggy",
|
||||
"react-number-editor": "^4.0.3",
|
||||
"recharts": "^1.2.0",
|
||||
"register-service-worker": "^1.5.2",
|
||||
"superagent": "^3.8.3"
|
||||
"register-service-worker": "^1.7.2",
|
||||
"stream-browserify": "^3.0.0",
|
||||
"stream-http": "^3.2.0",
|
||||
"superagent": "^3.8.3",
|
||||
"url": "^0.11.0",
|
||||
"vm-browserify": "^1.1.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import nodeResolve from "rollup-plugin-node-resolve";
|
||||
import nodeResolve from "@rollup/plugin-node-resolve";
|
||||
|
||||
export default {
|
||||
entry: "d3-funcs.js",
|
||||
|
||||
@@ -214,7 +214,7 @@ Options -MultiViews
|
||||
# </Files>
|
||||
|
||||
AddType application/x-web-app-manifest+json webapp
|
||||
AddType text/cache-manifest appcache manifest
|
||||
# AddType text/cache-manifest appcache manifest
|
||||
|
||||
# Media files
|
||||
AddType audio/mp4 f4a f4b m4a
|
||||
|
||||
@@ -93,7 +93,7 @@ export default class Coriolis extends React.Component {
|
||||
_importBuild(r) {
|
||||
try {
|
||||
// Need to decode and gunzip the data, then build the ship
|
||||
const data = zlib.inflate(new Buffer(r.params.data, 'base64'), { to: 'string' });
|
||||
const data = zlib.inflate(new Buffer.from(r.params.data, 'base64'), { to: 'string' });
|
||||
const json = JSON.parse(data);
|
||||
console.info('Ship import data: ');
|
||||
console.info(json);
|
||||
@@ -149,13 +149,6 @@ export default class Coriolis extends React.Component {
|
||||
*/
|
||||
_onError(msg, scriptUrl, line, col, errObj) {
|
||||
console && console.error && console.error(arguments); // eslint-disable-line no-console
|
||||
if (errObj) {
|
||||
if (errObj instanceof Error) {
|
||||
bugsnagClient.notify(errObj); // eslint-disable-line
|
||||
} else if (errObj instanceof String) {
|
||||
bugsnagClient.notify(msg, errObj); // eslint-disable-line
|
||||
}
|
||||
}
|
||||
this.setState({
|
||||
error: <ErrorDetails error={{ message: msg, details: { scriptUrl, line, col, error: JSON.stringify(errObj) } }}/>,
|
||||
page: null,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { autoBind } from 'react-extras';
|
||||
import autoBind from 'auto-bind';
|
||||
|
||||
/**
|
||||
* Announcement component
|
||||
|
||||
@@ -4,7 +4,7 @@ import * as ModuleUtils from '../shipyard/ModuleUtils';
|
||||
import TranslatedComponent from './TranslatedComponent';
|
||||
import { stopCtxPropagation } from '../utils/UtilityFunctions';
|
||||
import cn from 'classnames';
|
||||
import { MountFixed, MountGimballed, MountTurret } from './SvgIcons';
|
||||
import { CoriolisLogo, MountFixed, MountGimballed, MountTurret } from './SvgIcons';
|
||||
import FuzzySearch from 'react-fuzzy';
|
||||
|
||||
const PRESS_THRESHOLD = 500; // mouse/touch down threshold
|
||||
@@ -20,6 +20,7 @@ const GRPCAT = {
|
||||
'cc': 'limpet controllers',
|
||||
'fx': 'limpet controllers',
|
||||
'hb': 'limpet controllers',
|
||||
'mlc': 'limpet controllers',
|
||||
'pc': 'limpet controllers',
|
||||
'rpl': 'limpet controllers',
|
||||
'pce': 'passenger cabins',
|
||||
@@ -38,13 +39,17 @@ const GRPCAT = {
|
||||
'ml': 'lasers',
|
||||
'c': 'projectiles',
|
||||
'mc': 'projectiles',
|
||||
'advmc': 'projectiles',
|
||||
'axmc': 'experimental',
|
||||
'axmce': 'experimental',
|
||||
'ntp': 'experimental',
|
||||
'fc': 'projectiles',
|
||||
'rfl': 'experimental',
|
||||
'pa': 'projectiles',
|
||||
'rg': 'projectiles',
|
||||
'mr': 'ordnance',
|
||||
'axmr': 'experimental',
|
||||
'axmre': 'experimental',
|
||||
'rcpl': 'experimental',
|
||||
'dtl': 'experimental',
|
||||
'tbsc': 'experimental',
|
||||
@@ -83,6 +88,8 @@ const GRPCAT = {
|
||||
// Assists
|
||||
'dc': 'flight assists',
|
||||
'sua': 'flight assists',
|
||||
// Stabilizers
|
||||
'ews': 'weapon stabilizers',
|
||||
};
|
||||
// Order here is the order in which items will be shown in the modules menu
|
||||
const CATEGORIES = {
|
||||
@@ -92,7 +99,7 @@ const CATEGORIES = {
|
||||
'fi': ['fi'],
|
||||
'fuel': ['ft', 'fs'],
|
||||
'hangars': ['fh', 'pv'],
|
||||
'limpet controllers': ['cc', 'fx', 'hb', 'pc', 'rpl'],
|
||||
'limpet controllers': ['cc', 'fx', 'hb', 'pc', 'rpl', 'mlc'],
|
||||
'passenger cabins': ['pce', 'pci', 'pcm', 'pcq'],
|
||||
'rf': ['rf'],
|
||||
'shields': ['sg', 'bsg', 'psg', 'scb'],
|
||||
@@ -101,16 +108,17 @@ const CATEGORIES = {
|
||||
|
||||
// Hardpoints
|
||||
'lasers': ['pl', 'ul', 'bl'],
|
||||
'projectiles': ['mc', 'c', 'fc', 'pa', 'rg'],
|
||||
'projectiles': ['mc', 'advmc', 'c', 'fc', 'pa', 'rg'],
|
||||
'ordnance': ['mr', 'tp', 'nl'],
|
||||
// Utilities
|
||||
'sb': ['sb'],
|
||||
'hs': ['hs'],
|
||||
'csl': ['csl'],
|
||||
'defence': ['ch', 'po', 'ec'],
|
||||
'scanners': ['sc', 'ss', 'cs', 'kw', 'ws'], // Overloaded with internal scanners
|
||||
// Experimental
|
||||
'experimental': ['axmc', 'axmr', 'rfl', 'tbrfl', 'tbsc', 'tbem', 'xs', 'sfn', 'rcpl', 'dtl', 'rsl', 'mahr',],
|
||||
|
||||
'experimental': ['axmc', 'axmce', 'axmr', 'axmre', 'ntp','rfl', 'tbrfl', 'tbsc', 'tbem', 'xs', 'sfn', 'rcpl', 'dtl', 'rsl', 'mahr',],
|
||||
'weapon stabilizers': ['ews'],
|
||||
// Guardian
|
||||
'guardian': ['gpp', 'gpd', 'gpc', 'ggc', 'gsrp', 'gfsb', 'ghrp', 'gmrp', 'gsc'],
|
||||
|
||||
@@ -249,6 +257,24 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
return { list, currentGroup, fuzzy, trackingFocus };
|
||||
}
|
||||
|
||||
/**
|
||||
* Return Is expiremental capacity reached
|
||||
* @return {boolean} Is experimental capacity reached
|
||||
*/
|
||||
_experimentalCapacityReached() {
|
||||
const ship = this.props.ship;
|
||||
const ews = ship.internal.filter(o => o.m && o.m.grp === 'ews');
|
||||
let expCap;
|
||||
|
||||
if(ews.length < 1){
|
||||
expCap = 4;
|
||||
} else{
|
||||
expCap = ews[0].m.class == 3 ? 5 : 6;
|
||||
}
|
||||
|
||||
return expCap <= this.props.ship.hardpoints.filter(o => o.m && o.m.experimental).length;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate React Components for Module Group
|
||||
* @param {Ship} ship Ship the selection is for
|
||||
@@ -285,7 +311,9 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
// If the mounted module is experimental as well, we can replace it so
|
||||
// the maximum does not apply
|
||||
} else if (m.experimental && (!mountedModule || !mountedModule.experimental)) {
|
||||
disabled = 4 <= ship.hardpoints.filter(o => o.m && o.m.experimental).length;
|
||||
disabled = this._experimentalCapacityReached();
|
||||
} else if (m.grp === 'mlc' && (!mountedModule || mountedModule.grp !== 'mlc')) {
|
||||
disabled = 1 <= ship.internal.filter(o => o.m && o.m.grp === 'mlc').length;
|
||||
}
|
||||
let active = mountedModule && mountedModule.id === m.id;
|
||||
let classes = cn(m.name ? 'lc' : 'c', {
|
||||
@@ -382,6 +410,7 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
if (this.props.modules instanceof Array) {
|
||||
return;
|
||||
}
|
||||
const mountedModule = this.props.m;
|
||||
return (
|
||||
<FuzzySearch
|
||||
list={this.state.fuzzy}
|
||||
@@ -393,11 +422,20 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
onSelect={e => this.props.onSelect.bind(null, e.m)()}
|
||||
resultsTemplate={(props, state, styles, clickHandler) => {
|
||||
return state.results.map((val, i) => {
|
||||
let disabled;
|
||||
|
||||
if(val.m.experimental && (!mountedModule || !mountedModule.experimental)) {
|
||||
disabled = this._experimentalCapacityReached();
|
||||
} else{
|
||||
disabled = false;
|
||||
}
|
||||
const handler = disabled ? null : () => clickHandler(i);
|
||||
|
||||
return (
|
||||
<div
|
||||
key={i}
|
||||
className={'lc'}
|
||||
onClick={() => clickHandler(i)}
|
||||
className={cn('lc', {disabled})}
|
||||
onClick={handler}
|
||||
>
|
||||
{val.name}
|
||||
</div>
|
||||
@@ -516,6 +554,15 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
// Sort multi limpet controllers by name
|
||||
if (a.grp === 'mlc') {
|
||||
if (a.name[0] <= b.name[0]) {
|
||||
return -1;
|
||||
}
|
||||
if (a.name[0] > b.name[0]) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
// Rating ordered from highest (A) to lowest (E)
|
||||
if (a.rating < b.rating) {
|
||||
return -1;
|
||||
|
||||
@@ -32,7 +32,7 @@ export default class CostSection extends TranslatedComponent {
|
||||
this._buildRetrofitShip = this._buildRetrofitShip.bind(this);
|
||||
this._onBaseRetrofitChange = this._onBaseRetrofitChange.bind(this);
|
||||
this._defaultRetrofitName = this._defaultRetrofitName.bind(this);
|
||||
this._eddbShoppingList = this._eddbShoppingList.bind(this);
|
||||
this._eddbShoppingList = this._inaraShoppingList.bind(this);
|
||||
|
||||
let data = Ships[props.ship.id]; // Retrieve the basic ship properties, slots and defaults
|
||||
let retrofitName = this._defaultRetrofitName(props.ship.id, props.buildName);
|
||||
@@ -328,9 +328,9 @@ export default class CostSection extends TranslatedComponent {
|
||||
}
|
||||
|
||||
/**
|
||||
* Open up a window for EDDB with a shopping list of our retrofit components
|
||||
* Open up a window for inara with a shopping list of our retrofit components
|
||||
*/
|
||||
_eddbShoppingList() {
|
||||
_inaraShoppingList() {
|
||||
const { retrofitCosts } = this.state;
|
||||
const { ship } = this.props;
|
||||
|
||||
@@ -338,7 +338,7 @@ export default class CostSection extends TranslatedComponent {
|
||||
const modIds = retrofitCosts.filter(item => item.retroItem.incCost && item.buyId && !item.buyPp).map(item => item.buyId).filter((v, i, a) => a.indexOf(v) === i);
|
||||
|
||||
// Open up the relevant URL
|
||||
window.open('https://eddb.io/station?m=' + modIds.join(','));
|
||||
window.open('https://inara.cz/inapi/corisearch.php?m=' + modIds.join(','));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -387,7 +387,7 @@ export default class CostSection extends TranslatedComponent {
|
||||
<tbody>
|
||||
{rows}
|
||||
<tr className='ri'>
|
||||
<td className='lbl' ><button onClick={this._eddbShoppingList} onMouseOver={termtip.bind(null, 'PHRASE_REFIT_SHOPPING_LIST')} onMouseOut={tooltip.bind(null, null)}><ShoppingIcon className='lg' style={{ fill: 'black' }}/></button></td>
|
||||
<td className='lbl' ><button onClick={this._inaraShoppingList} onMouseOver={termtip.bind(null, 'PHRASE_REFIT_SHOPPING_LIST')} onMouseOut={tooltip.bind(null, null)}><ShoppingIcon className='lg' style={{ fill: 'black' }}/></button></td>
|
||||
<td colSpan='3' className='lbl' >{translate('cost')}</td>
|
||||
<td colSpan='2' className={cn('val', retrofitTotal > 0 ? 'warning' : 'secondary-disabled')} style={{ borderBottom:'none' }}>
|
||||
{int(retrofitTotal)}{units.CR}
|
||||
|
||||
@@ -3,6 +3,8 @@ import PropTypes from 'prop-types';
|
||||
import TranslatedComponent from './TranslatedComponent';
|
||||
import request from 'superagent';
|
||||
import Persist from '../stores/Persist';
|
||||
const zlib = require('zlib');
|
||||
const base64url = require('base64url');
|
||||
|
||||
/**
|
||||
* Permalink modal
|
||||
@@ -56,7 +58,6 @@ export default class ModalShoppingList extends TranslatedComponent {
|
||||
continue;
|
||||
}
|
||||
if (module.m.blueprint.special) {
|
||||
console.log(module.m.blueprint.special);
|
||||
blueprints.push({ uuid: module.m.blueprint.special.uuid, number: 1 });
|
||||
}
|
||||
for (const g in module.m.blueprint.grades) {
|
||||
@@ -146,6 +147,64 @@ export default class ModalShoppingList extends TranslatedComponent {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Send all blueprints to EDOMH. This is a modified copy of registerBPs because this.state.blueprints was empty when I tried to modify sendToEDEng and I couldn't figure out why
|
||||
* @param {Event} event React event
|
||||
*/
|
||||
sendToEDOMH(event) {
|
||||
event.preventDefault();
|
||||
const ship = this.props.ship;
|
||||
let blueprints = [];
|
||||
|
||||
//create the json
|
||||
for (const module of ship.costList) {
|
||||
if (module.type === 'SHIP') {
|
||||
continue;
|
||||
}
|
||||
if (module.m && module.m.blueprint) {
|
||||
if (!module.m.blueprint.grade || !module.m.blueprint.grades) {
|
||||
continue;
|
||||
}
|
||||
if (module.m.blueprint.special) {
|
||||
blueprints.push({
|
||||
"item": module.m.symbol,
|
||||
"blueprint": module.m.blueprint.special.edname
|
||||
});
|
||||
}
|
||||
for (const g in module.m.blueprint.grades) {
|
||||
if (!module.m.blueprint.grades.hasOwnProperty(g)) {
|
||||
continue;
|
||||
}
|
||||
if (g < module.m.blueprint.grade) {
|
||||
continue;
|
||||
}
|
||||
blueprints.push({
|
||||
"item": module.m.symbol,
|
||||
"blueprint": module.m.blueprint.fdname,
|
||||
"grade": module.m.blueprint.grade,
|
||||
"highestGradePercentage":1.0
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//create JSON to encode
|
||||
let baseJson = {
|
||||
"version":1,
|
||||
"name":ship.name, // TO-DO: Import build name and put that here correctly
|
||||
"items": blueprints
|
||||
}
|
||||
|
||||
let JSONString = JSON.stringify(baseJson)
|
||||
let deflated = zlib.deflateSync(JSONString)
|
||||
|
||||
//actually encode
|
||||
let link = base64url.encode(deflated)
|
||||
link = "edomh://coriolis/?" + link;
|
||||
|
||||
window.open(link, "_self")
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert mats object to string
|
||||
*/
|
||||
@@ -177,6 +236,18 @@ export default class ModalShoppingList extends TranslatedComponent {
|
||||
mats[i] = module.m.blueprint.grades[g].components[i] * this.state.matsPerGrade[g];
|
||||
}
|
||||
}
|
||||
if (module.m.blueprint.special) {
|
||||
for (const j in module.m.blueprint.special.components) {
|
||||
if (!module.m.blueprint.special.components.hasOwnProperty(j)) {
|
||||
continue;
|
||||
}
|
||||
if (mats[j]) {
|
||||
mats[j] += module.m.blueprint.special.components[j];
|
||||
} else {
|
||||
mats[j] = module.m.blueprint.special.components[j];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -229,6 +300,7 @@ export default class ModalShoppingList extends TranslatedComponent {
|
||||
const compatible = this.checkBrowserIsCompatible();
|
||||
this.cmdrChangeHandler = this.cmdrChangeHandler.bind(this);
|
||||
this.sendToEDEng = this.sendToEDEng.bind(this);
|
||||
this.sendToEDOMH = this.sendToEDOMH.bind(this);
|
||||
return <div className='modal' onClick={ (e) => e.stopPropagation() }>
|
||||
<h2>{translate('PHRASE_SHOPPING_MATS')}</h2>
|
||||
<label>{translate('Grade 1 rolls ')}</label>
|
||||
@@ -257,6 +329,7 @@ export default class ModalShoppingList extends TranslatedComponent {
|
||||
<p hidden={!this.state.failed} id={'failed'} className={'l'}>{translate('PHRASE_FAIL_EDENGINEER')}</p>
|
||||
<p hidden={compatible} id={'browserbad'} className={'l'}>{translate('PHRASE_FIREFOX_EDENGINEER')}</p>
|
||||
<button className={'l cb dismiss cap'} disabled={!!this.state.failed || !compatible} onClick={this.sendToEDEng}>{translate('Send to EDEngineer')}</button>
|
||||
<button style={{marginTop: 5}} className={'l cb dismiss cap'} disabled={!!this.state.failed} onClick={this.sendToEDOMH}>{translate('Send to EDOMH')}</button>
|
||||
<button className={'r dismiss cap'} onClick={this.context.hideModal}>{translate('close')}</button>
|
||||
</div>;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import TranslatedComponent from './TranslatedComponent';
|
||||
import { Pip } from './SvgIcons';
|
||||
import { autoBind } from 'react-extras';
|
||||
import autoBind from 'auto-bind';
|
||||
|
||||
/**
|
||||
* Pips displays SYS/ENG/WEP pips and allows users to change them with key presses by clicking on the relevant area.
|
||||
|
||||
@@ -8,6 +8,7 @@ import * as RU from './ru';
|
||||
import * as PL from './pl';
|
||||
import * as PT from './pt';
|
||||
import * as CN from './cn';
|
||||
import * as KO from './ko';
|
||||
import * as d3 from 'd3';
|
||||
|
||||
let fallbackTerms = EN.terms;
|
||||
@@ -29,6 +30,7 @@ export function getLanguage(langCode) {
|
||||
case 'pl': lang = PL; break;
|
||||
case 'pt': lang = PT; break;
|
||||
case 'cn': lang = CN; break;
|
||||
case 'ko': lang = KO; break;
|
||||
default:
|
||||
lang = EN;
|
||||
}
|
||||
@@ -97,5 +99,6 @@ export const Languages = {
|
||||
ru: 'ру́сский',
|
||||
pl: 'polski',
|
||||
pt: 'português',
|
||||
cn: '中文'
|
||||
cn: '中文',
|
||||
ko: '한국어'
|
||||
};
|
||||
|
||||
@@ -398,6 +398,7 @@
|
||||
"No modded components.": "没有改装的部件",
|
||||
"Sending...": "发送中...",
|
||||
"Send to EDEngineer": "发送至EDEngineer",
|
||||
"Send to EDOMH": "发送至EDOMH",
|
||||
"PHASE_UPLOAD_ORBIS": "上传到orbis.zone(测试阶段)",
|
||||
"orbis username": "orbis.zone的Email或用户名",
|
||||
"orbis password": "orbis.zone的密码",
|
||||
|
||||
@@ -93,6 +93,7 @@
|
||||
"ch": "Chaff Launcher",
|
||||
"cr": "Cargo Rack",
|
||||
"cs": "Manifest Scanner",
|
||||
"csl": "Caustic Sink Launcher",
|
||||
"dc": "Docking Computer",
|
||||
"ec": "Electronic Countermeasure",
|
||||
"fc": "Fragment Cannon",
|
||||
@@ -108,10 +109,15 @@
|
||||
"kw": "Kill Warrant Scanner",
|
||||
"ls": "Life Support",
|
||||
"mc": "Multi-cannon",
|
||||
"advmc": "Multi-cannon (Advanced)",
|
||||
"axmc": "AX Multi-cannon",
|
||||
"axmce": "AX Multi-cannon (Enhanced)",
|
||||
"ml": "Mining Laser",
|
||||
"mlc": "Multi Limpet Controller",
|
||||
"mr": "Missile Rack",
|
||||
"axmr": "AX Missile Rack",
|
||||
"axmre": "AX Missile Rack (Enhanced)",
|
||||
"ews": "Experimental Weapon Stabilizer",
|
||||
"mrp": "Module Reinforcement Package",
|
||||
"nl": "Mine Launcher",
|
||||
"pa": "Plasma Accelerator",
|
||||
@@ -156,8 +162,10 @@
|
||||
"sua": "Supercruise Assist",
|
||||
"t": "thrusters",
|
||||
"tp": "Torpedo Pylon",
|
||||
"ntp": "Nanite Torpedo Pylon",
|
||||
"ul": "Burst Laser",
|
||||
"Send To EDEngineer": "Send To EDEngineer",
|
||||
"Send To EDOMH": "Send To EDOMH",
|
||||
"ws": "Frame Shift Wake Scanner",
|
||||
"rpl": "Repair Limpet Controller",
|
||||
"rcpl": "Recon Limpet Controller",
|
||||
|
||||
16
src/app/i18n/ko.js
Normal file
16
src/app/i18n/ko.js
Normal file
@@ -0,0 +1,16 @@
|
||||
export const formats = {
|
||||
decimal: '.',
|
||||
thousands: ',',
|
||||
grouping: [3],
|
||||
currency: ['₩', ''],
|
||||
dateTime: '%a %b %e %X %Y',
|
||||
date: '%Y/%m/%d',
|
||||
time: '%H:%M:%S',
|
||||
periods: ['오전', '오후'],
|
||||
days: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'],
|
||||
shortDays: ['일', '월', '화', '수', '목', '금', '토'],
|
||||
months: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
|
||||
shortMonths: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월']
|
||||
};
|
||||
|
||||
export { default as terms } from './ko.json';
|
||||
369
src/app/i18n/ko.json
Normal file
369
src/app/i18n/ko.json
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -13,7 +13,7 @@
|
||||
"PHRASE_SG_RECOVER": "Восстановление с 0% до 50% объема щита, учитывая полный аккумулятор СИС в начале",
|
||||
"PHRASE_UNLADEN": "Масса корабля без учета топлива и грузов",
|
||||
"PHRASE_UPDATE_RDY": "Доступна новая версия. Нажмите для обновления.",
|
||||
"PHRASE_ENGAGEMENT_RANGE": "Дистанция между кораблем и целью",
|
||||
"PHRASE_ENGAGEMENT_RANGE": "Дистанция между кораблём и целью",
|
||||
"PHRASE_SELECT_BLUEPRINT": "Нажмите чтобы выбрать чертеж",
|
||||
"PHRASE_BLUEPRINT_WORST": "Худшие основные значения для чертежа",
|
||||
"PHRASE_BLUEPRINT_FIFTY": "50% значения для чертежа",
|
||||
@@ -24,9 +24,9 @@
|
||||
"PHRASE_BLUEPRINT_RESET": "Сбросить все модификаторы и чертеж",
|
||||
"PHRASE_SELECT_SPECIAL": "Нажмите, чтобы выбрать экспериментальный эффект",
|
||||
"PHRASE_NO_SPECIAL": "Без экспериментального эффекта",
|
||||
"PHRASE_SHOPPING_LIST": "Станции, что продают эту сборку",
|
||||
"PHRASE_SHOPPING_LIST": "Станции, на которых продают эту сборку",
|
||||
"PHRASE_SHOPPING_MATS": "Материалы которые нужны для сборки",
|
||||
"PHRASE_REFIT_SHOPPING_LIST": "Станции, что продают необходимые модули",
|
||||
"PHRASE_REFIT_SHOPPING_LIST": "Станции, на которых продают необходимые модули",
|
||||
"PHRASE_TOTAL_EFFECTIVE_SHIELD": "Общий урон, что может быть нанесен в каждым типе, если используются все щитонакопители",
|
||||
"PHRASE_TIME_TO_LOSE_SHIELDS": "Щиты продержатся",
|
||||
"PHRASE_TIME_TO_RECOVER_SHIELDS": "Щиты восстановятся за",
|
||||
@@ -37,36 +37,36 @@
|
||||
"PHRASE_EFFECTIVE_ARMOUR": "Эффективная сила брони против разных типов урона",
|
||||
"PHRASE_DAMAGE_TAKEN": "% общих повреждений полученных в разных типах урона",
|
||||
"PHRASE_TIME_TO_LOSE_ARMOUR": "Броня продержится",
|
||||
"PHRASE_MODULE_PROTECTION_EXTERNAL": "Защита гнезд",
|
||||
"PHRASE_MODULE_PROTECTION_EXTERNAL": "Защита гнёзд",
|
||||
"PHRASE_MODULE_PROTECTION_INTERNAL": "Защита всех остальных модулей",
|
||||
"PHRASE_OVERALL_DAMAGE": "Разбивка источников устойчивого ДПС",
|
||||
"PHRASE_SHIELD_DAMAGE": "Подробности источников поддерживаемого ДПС против щитов",
|
||||
"PHRASE_ARMOUR_DAMAGE": "Подробности источников поддерживаемого ДПС против брони",
|
||||
"PHRASE_OVERALL_DAMAGE": "Разбивка источников устойчивого УвС",
|
||||
"PHRASE_SHIELD_DAMAGE": "Подробности источников поддерживаемого УвС против щитов",
|
||||
"PHRASE_ARMOUR_DAMAGE": "Подробности источников поддерживаемого УвС против брони",
|
||||
"PHRASE_TIME_TO_REMOVE_SHIELDS": "Снимет щиты за",
|
||||
"PHRASE_MULTI_CREW_CAPACITOR_POINTS": "Щелкните правой кновкой мыши чтобы объединить в группу.",
|
||||
"TT_TIME_TO_REMOVE_SHIELDS": "Непрерывным огнем из всех орудий",
|
||||
"TT_TIME_TO_REMOVE_SHIELDS": "Непрерывным огнём из всех орудий",
|
||||
"PHRASE_TIME_TO_REMOVE_ARMOUR": "Снимет броню за",
|
||||
"TT_TIME_TO_REMOVE_ARMOUR": "Непрерывным огнем из всех орудий",
|
||||
"TT_TIME_TO_REMOVE_ARMOUR": "Непрерывным огнём из всех орудий",
|
||||
"PHRASE_TIME_TO_DRAIN_WEP": "Опустошит ОРУ за",
|
||||
"TT_TIME_TO_DRAIN_WEP": "Время, за которое опустошится аккумулятор ОРУ при стрельбе из всех орудий",
|
||||
"TT_TIME_TO_LOSE_SHIELDS": "Против поддерживаемой стрельбы из всех орудий противника",
|
||||
"TT_TIME_TO_LOSE_ARMOUR": "Против поддерживаемой стрельбы из всех орудий противника",
|
||||
"TT_MODULE_ARMOUR": "Броня, защищающая модули от урона",
|
||||
"TT_MODULE_PROTECTION_EXTERNAL": "Процент урона, перенаправленного от гнезд на наборы для усиления модулей",
|
||||
"TT_MODULE_PROTECTION_INTERNAL": "Процент урона, перенаправленного от модулей вне гнезд на наборы для усиления модулей",
|
||||
"TT_EFFECTIVE_SDPS_SHIELDS": "Реальный поддерживаемый ДПС пока аккумулятор ОРУ не пуст",
|
||||
"TT_MODULE_PROTECTION_INTERNAL": "Процент урона, перенаправленного от модулей вне гнёзд на наборы для усиления модулей",
|
||||
"TT_EFFECTIVE_SDPS_SHIELDS": "Реальный поддерживаемый УвС пока ёмкость ОРУ не пуста",
|
||||
"TT_EFFECTIVENESS_SHIELDS": "Эффективность в сравнении с попаданием по цели с 0-сопротивляемостью без пунктов в СИС на 0 метрах",
|
||||
"TT_EFFECTIVE_SDPS_ARMOUR": "Реальный поддерживаемый ДПС пока аккумулятор ОРУ не пуст",
|
||||
"TT_EFFECTIVE_SDPS_ARMOUR": "Реальный поддерживаемый УвС пока аккумулятор ОРУ не пуст",
|
||||
"TT_EFFECTIVENESS_ARMOUR": "Эффективность в сравнении с попаданием по цели с 0-сопротивляемостью на 0 метрах",
|
||||
"PHRASE_EFFECTIVE_SDPS_SHIELDS": "ПДПС против щитов",
|
||||
"PHRASE_EFFECTIVE_SDPS_ARMOUR": "ПДПС против брони",
|
||||
"PHRASE_EFFECTIVE_SDPS_SHIELDS": "ПУвС против щитов",
|
||||
"PHRASE_EFFECTIVE_SDPS_ARMOUR": "ПУвС против брони",
|
||||
"TT_SUMMARY_SPEED": "С полным топливным баком и 4 пунктами в ДВГ",
|
||||
"TT_SUMMARY_SPEED_NONFUNCTIONAL": "Маневровые двигатели выключены или превышена максимальная масса с топливом и грузом",
|
||||
"TT_SUMMARY_BOOST": "С полным топливным баком и 4 пунктами в ДВГ",
|
||||
"TT_SUMMARY_BOOST_INTERVAL": "Время заполнения с 4 пунктами в СИС",
|
||||
"TT_SUMMARY_BOOST_NONFUNCTIONAL": "Распределитель питания не может обеспечить достаточно энергии для форсажа",
|
||||
"TT_SUMMARY_SHIELDS": "Чистая сила щита, включая усилители",
|
||||
"TT_SUMMARY_SHIELDS_SCB": "Прочность щита, включая бустеры и SCB",
|
||||
"TT_SUMMARY_SHIELDS_SCB": "Прочность щита, включая бустеры и щитонакопители",
|
||||
"TT_SUMMARY_SHIELDS_NONFUNCTIONAL": "Шитогенератор отсутствует или выключен",
|
||||
"TT_SUMMARY_INTEGRITY": "Целостность корабля, включая переборки и наборы для усиления корпуса",
|
||||
"TT_SUMMARY_HULL_MASS": "Масса корпуса без каких-либо модулей",
|
||||
@@ -88,22 +88,23 @@
|
||||
"bl": "Пучковый лазер",
|
||||
"bsg": "Двухпоточный щитогенератор",
|
||||
"c": "Пушка",
|
||||
"causres": "Каустическое сопротивление",
|
||||
"Caustic resistance": "Каустическое сопротивление",
|
||||
"cc": "Контроллер магнитного снаряда для сбора",
|
||||
"causres": "Сопротивление едк.урону",
|
||||
"Caustic resistance": "Сопротивление едк.урону",
|
||||
"cc": "Контроллер дронов-сборщиков",
|
||||
"ch": "Разбрасыватель дипольных отражателей",
|
||||
"cr": "Грузовой стеллаж",
|
||||
"cs": "Сканер содержимого",
|
||||
"csl": "Антикор катапульта",
|
||||
"dc": "Стыковочный компьютер",
|
||||
"ec": "Электр. противодействие",
|
||||
"ec": "Радиоэлектронное подавление",
|
||||
"fc": "Залповое орудие",
|
||||
"fh": "Ангар для истребителя",
|
||||
"fi": "FSD-перехватчик",
|
||||
"fs": "Топливозаборник",
|
||||
"fsd": "Рамочно-сместительный двигатель",
|
||||
"ft": "Топливный бак",
|
||||
"fx": "Контроллер магнитного снаряда для топлива",
|
||||
"hb": "Контроллер магнитного снаряда для взлома трюма",
|
||||
"fx": "Контроллер дронов-заправщиков",
|
||||
"hb": "Контроллер дронов-взломщиков трюмов",
|
||||
"hr": "Набор для усиления корпуса",
|
||||
"hs": "Теплоотводная катапульта",
|
||||
"kw": "Сканер преступников",
|
||||
@@ -111,13 +112,14 @@
|
||||
"mc": "Многоствольное орудие",
|
||||
"axmc": "Многоствольное орудие АИ",
|
||||
"ml": "Проходочный лазер",
|
||||
"mr": "Ракетный лоток",
|
||||
"mr": "Блок ракет",
|
||||
"axmr": "Блок ракет АИ",
|
||||
"ews": "Стабилизатор экспериментального вооружения",
|
||||
"mrp": "Набор для усиления модуля",
|
||||
"nl": "Мины",
|
||||
"pa": "Ускоритель плазмы",
|
||||
"pas": "Комплект для сближения с планетой",
|
||||
"pc": "Контроллер магнитного снаряда для геологоразведки",
|
||||
"pc": "Контроллер дронов-геологоразведчиков",
|
||||
"pce": "Каюта пассажира эконом-класса",
|
||||
"passenger capacity": "Количество пассажиров",
|
||||
"pci": "Каюта пассажира бизнес-класса",
|
||||
@@ -143,36 +145,38 @@
|
||||
"gsc": "Осколочное орудие Стражей",
|
||||
"psg": "Призматический щитогенератор",
|
||||
"pv": "Гараж для планетарного транспорта",
|
||||
"rf": "Устройство переработки",
|
||||
"rf": "Очиститель",
|
||||
"rfl": "Зенитная установка (снаряды с дистанционным подрывом)",
|
||||
"rg": "Электромагнитная пушка",
|
||||
"rsl": "Дроны-исследователи",
|
||||
"rg": "Рельсотрон",
|
||||
"rsl": "Контроллер дронов-исследователей",
|
||||
"s": "Сенсоры",
|
||||
"sb": "Усилитель щита",
|
||||
"sc": "Сканер обнаружения",
|
||||
"scb": "Щитонакопитель",
|
||||
"sfn": "Нейтрализатор глушащего поля",
|
||||
"sfn": "Нейтрализатор отключающего поля",
|
||||
"sg": "Щитогенератор",
|
||||
"ss": "Сканер поверхностей",
|
||||
"sua": "Помощь в гиперкрейсерском режиме",
|
||||
"t": "Маневровые двигатели",
|
||||
"tp": "Торпедная стойка",
|
||||
"ul": "Пульсирующие лазеры",
|
||||
"tp": "Торпедная установка",
|
||||
"ul": "Пульсирующий лазер",
|
||||
"Send To EDEngineer": "Отправить в EDEngineer",
|
||||
"Send To EDOMH": "Отправить в EDOMH",
|
||||
"ws": "Сканер следа FSD",
|
||||
"rpl": "Дроны-ремонтники",
|
||||
"rcpl": "Дроны-разведчики",
|
||||
"xs": "Сканер «инопланетянин»",
|
||||
"rpl": "Контроллер дронов-ремонтников",
|
||||
"rcpl": "Контроллер дронов-разведчиков",
|
||||
"xs": "Ксено-сканер",
|
||||
"tbem": "Блок энзимных ракет",
|
||||
"tbrfl": "Установка для стрельбы стреловидными снарядами с дистанционным подрывом",
|
||||
"dtl": "Дроны-очистители",
|
||||
"mahr": "Набор для усиления корпуса из Метасплава",
|
||||
"dtl": "Контроллер дронов-очистителей",
|
||||
"mlc": "Мультиконтроллер",
|
||||
"mahr": "Метасплавное усиление корпуса",
|
||||
"emptyrestricted": "пусто (ограниченно)",
|
||||
"damage dealt to": "Урон нанесен",
|
||||
"damage dealt to": "Урон нанесён",
|
||||
"damage received from": "Урон получен от",
|
||||
"against shields": "Против щитов",
|
||||
"against hull": "Против корпуса",
|
||||
"total effective shield": "Общие эффективные щиты",
|
||||
"total effective shield": "Общая эффективность щита",
|
||||
"ammunition": "Припасы",
|
||||
"secs": "с",
|
||||
"bays": "Ячейки",
|
||||
@@ -201,7 +205,7 @@
|
||||
"shield cells": "Щитонакопители",
|
||||
"recovery": "включение",
|
||||
"recharge": "перезарядка",
|
||||
"engine pips": "Пункты в двигателе",
|
||||
"engine pips": "Ячейки питания на ДВГ",
|
||||
"4b": "4 пункта и Форсаж",
|
||||
"speed": "скорость",
|
||||
"pitch": "Тангаж",
|
||||
@@ -287,12 +291,12 @@
|
||||
"explosive": "Взрывч.",
|
||||
"kinetic": "Механич.",
|
||||
"thermal": "Тепл.",
|
||||
"caustic": "Каустич.",
|
||||
"caustic": "Едкий",
|
||||
"generator": "Генератор",
|
||||
"boosters": "Усилители",
|
||||
"cells": "Ячейки",
|
||||
"shield addition": "ДОбавления к щиту",
|
||||
"jump addition": "ДОбавления к прыжку",
|
||||
"shield addition": "Добавления к щиту",
|
||||
"jump addition": "Добавления к прыжку",
|
||||
"bulkheads": "Переборки",
|
||||
"reinforcement": "Усилители",
|
||||
"power and costs": "Энергия и стоимость",
|
||||
@@ -374,9 +378,9 @@
|
||||
"/s": "/с",
|
||||
"/min": "/мин",
|
||||
"m/s": "м/с",
|
||||
"Ls": "Св.сек",
|
||||
"Ls": "Св.с",
|
||||
"LY": "Св.лет",
|
||||
"CR": "кр.",
|
||||
"CR": "КР.",
|
||||
"S": "М",
|
||||
"M": "С",
|
||||
"L": "Б",
|
||||
@@ -435,7 +439,7 @@
|
||||
"deployed": "Открыты",
|
||||
"disabled": "Отключено",
|
||||
"discount": "Скидка",
|
||||
"DPS": "УВС",
|
||||
"DPS": "УвС",
|
||||
"efficiency": "Эффективность",
|
||||
"empty": "пусто",
|
||||
"ENG": "ДВГ",
|
||||
@@ -449,7 +453,7 @@
|
||||
"jumps": "Прыжков",
|
||||
"laden": "Груж",
|
||||
"language": "Язык",
|
||||
"maneuverability": "Маневренность",
|
||||
"maneuverability": "Манёвренность",
|
||||
"max": "Макс",
|
||||
"no": "Нет",
|
||||
"pen": "ПБ",
|
||||
@@ -462,7 +466,7 @@
|
||||
"repair": "Починка",
|
||||
"ret": "Убр",
|
||||
"retracted": "Убрано",
|
||||
"ROF": "В\/сек",
|
||||
"ROF": "В\/с",
|
||||
"save": "Сохранить",
|
||||
"sell": "Продать",
|
||||
"settings": "Настройки",
|
||||
@@ -492,7 +496,7 @@
|
||||
"module": "модуль",
|
||||
"announcements": "объявления",
|
||||
"resistance": "сопротивление",
|
||||
"Lightweight Alloy": "Легкие сплавы",
|
||||
"Lightweight Alloy": "Лёгкие сплавы",
|
||||
"base": "базовые",
|
||||
"core module classes": "основные модули",
|
||||
"Group highlighted ships": "Сгруппировать выделенные корабли",
|
||||
@@ -511,7 +515,7 @@
|
||||
"maximum speed": "максимальная скорость",
|
||||
"maximum range": "максимальная дальность",
|
||||
"shortlink": "короткая ссылка",
|
||||
"guardian": "стражи",
|
||||
"guardian": "Стражи",
|
||||
"engineers": "инженеры",
|
||||
"component": "компонент",
|
||||
"amount": "кол-во",
|
||||
@@ -520,35 +524,35 @@
|
||||
"Heat Sink Launcher": "Теплоотводная катапульта",
|
||||
"scanners": "сканеры",
|
||||
"experimental": "экспериментальное",
|
||||
"mining": "шахтерство",
|
||||
"mining": "добыча ресурсов",
|
||||
"lasers": "лазеры",
|
||||
"ordnance": "артиллерия",
|
||||
"projectiles": "с боеприпасами",
|
||||
"hangars": "ангары",
|
||||
"limpet controllers": "контроллеры снарядов",
|
||||
"limpet controllers": "контроллеры дронов",
|
||||
"passenger cabins": "каюты пассажиров",
|
||||
"structural reinforcement": "структурные усиления",
|
||||
"flight assists": "помощники в полете",
|
||||
"structural reinforcement": "усиление конструктива",
|
||||
"flight assists": "помощь в полёте",
|
||||
"modifications": "модификации",
|
||||
"wep_reload": "перезарядка",
|
||||
"optimal multiplier": "оптимальный усилитель",
|
||||
"Cargo Hatch": "Грузовой люк",
|
||||
"Chaff Launcher": "Разбрасыватель дипольных отражателей",
|
||||
"Point Defence": "Точечная оборона",
|
||||
"Electronic Countermeasure": "Электронное противодействие",
|
||||
"Xeno Scanner": "Сканер «инопланетянин»",
|
||||
"Shutdown Field Neutraliser": "Нейтрализатор глушащего поля",
|
||||
"Disruptor": "Диверсант",
|
||||
"Pacifier": "Миротворец",
|
||||
"Electronic Countermeasure": "Радиоэлектронное подавление",
|
||||
"Xeno Scanner": "Ксено-сканер",
|
||||
"Shutdown Field Neutraliser": "Нейтрализатор отключающего поля",
|
||||
"Disruptor": "«Диверсант»",
|
||||
"Pacifier": "«Миротворец»",
|
||||
"Advanced Plasma Accelerator": "Улучшенный ускоритель плазмы",
|
||||
"Cytoscrambler": "Дезинтегратор",
|
||||
"Retributor": "Каратель",
|
||||
"Enforcer": "Убийца",
|
||||
"Imperial Hammer": "Имперский молот",
|
||||
"Cytoscrambler": "«Дезинтегратор»",
|
||||
"Retributor": "«Каратель»",
|
||||
"Enforcer": "«Убийца»",
|
||||
"Imperial Hammer": "«Имперский молот»",
|
||||
"Rocket Propelled FSD Disruptor": "Ракетный FSD-разрушитель",
|
||||
"Pack-Hound": "Гончие",
|
||||
"Pack-Hound": "«Гончие»",
|
||||
"Shock Mine Launcher": "Установщик шоковых мин",
|
||||
"Mining Lance": "Копье шахтера",
|
||||
"Mining Lance": "«Копьё шахтера»",
|
||||
"Corrosion Resistant": "Коррозийно-устойчивый стеллаж",
|
||||
"Standard Docking Computer": "Стандартный стыковочный компьютер",
|
||||
"Advanced Docking Computer": "Улучшенный стыковочный компьютер",
|
||||
@@ -557,20 +561,20 @@
|
||||
"Guardian Power Distributor": "Рапределитель питания Стражей",
|
||||
"Enhanced Performance": "Усиленные маневровые двигатели",
|
||||
"Guardian Hybrid Power Plant": "Гибридная силовая установка Стражей",
|
||||
"Reinforced Alloy": "Укрепленные сплавы",
|
||||
"Reinforced Alloy": "Укреплённые сплавы",
|
||||
"Military Grade Composite": "Композит военного класса",
|
||||
"Mirrored Surface Composite": "Композит с зеркальной поверхностью",
|
||||
"Reactive Surface Composite": "Композит с реактивной поверхностью",
|
||||
"Proto Light Alloys": "Опытные легкие сплавы",
|
||||
"Proto Light Alloys": "Опытные лёгкие сплавы",
|
||||
"Ammo capacity": "Вместимость магазина",
|
||||
"Lightweight": "Облегченный",
|
||||
"Lightweight": "Облегчённый",
|
||||
"Reinforced": "Усиленный",
|
||||
"Shielded": "Защищенный",
|
||||
"Shielded": "Защищённый",
|
||||
"Fast scan": "Быстрое сканирование",
|
||||
"Long range": "Дальнего действия",
|
||||
"Wide angle": "Широкоугольный",
|
||||
"Blast resistant": "Взрывостойкий",
|
||||
"Heavy duty": "Надежный",
|
||||
"Heavy duty": "Надёжный",
|
||||
"Kinetic resistant": "Противокинетический",
|
||||
"Resistance augmented": "С универсальной защитой",
|
||||
"Thermal resistant": "Термостойкий",
|
||||
@@ -622,7 +626,7 @@
|
||||
"Penetrator Munitions": "Бронебойные боеголовки",
|
||||
"Mass lock munition": "Боеприпасы с гравитационным захватом",
|
||||
"Mass Lock Munition": "Боеприпасы с гравитационным захватом",
|
||||
"Reverberating cascade": "Отраженный залп",
|
||||
"Reverberating cascade": "Отражённый залп",
|
||||
"Shift-lock canister": "Рамоблокирующая кассета",
|
||||
"Ion disruptor": "Ионный дестабилизатор",
|
||||
"Radiant Canister": "Светящаяся кассета",
|
||||
@@ -639,7 +643,7 @@
|
||||
"Reflective Plating": "Отражающая броня",
|
||||
"Angled Plating": "Угловая броня",
|
||||
"Layered Plating": "Многослойная броня",
|
||||
"Deep Plating": "Утолщенная броня",
|
||||
"Deep Plating": "Утолщённая броня",
|
||||
"Expanded Probe Scanning Radius": "Увеличение радиуса сканирования зондов",
|
||||
"High charge capacity": "Высокоёмкий",
|
||||
"Charge enhanced": "Быстрозаряжающийся",
|
||||
@@ -666,8 +670,8 @@
|
||||
"Combat": "Боец",
|
||||
"Trader": "Торговец",
|
||||
"Explorer": "Исследователь",
|
||||
"Planetary Explorer": "Планетарный исследователь",
|
||||
"Miner": "Шахтер",
|
||||
"Planetary Explorer": "Исследователь планет",
|
||||
"Miner": "Старатель",
|
||||
"Racer": "Гонщик",
|
||||
|
||||
"Aberrant Shield Pattern Analysis": "Анализ аномального поведения щита",
|
||||
@@ -691,7 +695,7 @@
|
||||
"Chemical Manipulators": "Манипуляторы для работы с химикатами",
|
||||
"Chemical Processors": "Оборудование для химобработки",
|
||||
"Chromium": "Хром",
|
||||
"Classified Scan Databanks": "Засекреченные базы данных сканированоя",
|
||||
"Classified Scan Databanks": "Засекреченные базы данных сканирования",
|
||||
"Classified Scan Fragment": "Засекреченные фрагменты данных сканирования",
|
||||
"Compound Shielding": "Многоступенчатая защита",
|
||||
"Conductive Ceramics": "Проводящая керамика",
|
||||
@@ -702,7 +706,7 @@
|
||||
"Cracked Industrial Firmware": "Взломанные промышленные микропрограммы",
|
||||
"Datamined Wake Exceptions": "Исключения из глубинного анализа данных следа",
|
||||
"Decoded Emission Data": "Расшифрованные данные об излучении",
|
||||
"Distorted Shield Cycle Recordings": "Поврежденные цикличные записи щита",
|
||||
"Distorted Shield Cycle Recordings": "Повреждённые цикличные записи щита",
|
||||
"Divergent Scan Data": "Неформатные данные сканирования",
|
||||
"Eccentric Hyperspace Trajectories": "Аномальные траектории в гиперпространстве",
|
||||
"Electrochemical Arrays": "Электрохимические массивы",
|
||||
@@ -717,7 +721,7 @@
|
||||
"Heat Dispersion Plate": "Теплорассеивающая пластина",
|
||||
"Heat Exchangers": "Теплообменные агрегаты",
|
||||
"Heat Vanes": "Тепловые заслонки",
|
||||
"High Density Composites": "Высокоплотные композиты",
|
||||
"High Density Composites": "Высокоплотностные композиты",
|
||||
"Hybrid Capacitors": "Гибридные конденсаторы",
|
||||
"Imperial Shielding": "Имперская защита",
|
||||
"Improvised Components": "Кустарные компоненты",
|
||||
@@ -731,8 +735,8 @@
|
||||
"Mercury": "Ртуть",
|
||||
"Military Grade Alloys": "Сплавы военного назначения",
|
||||
"Military Supercapacitors": "Военные суперконденсаторы",
|
||||
"Modified Consumer Firmware": "Измененные пользовательские микропрограммы",
|
||||
"Modified Embedded Firmware": "Измененные встроенные микропрограммы",
|
||||
"Modified Consumer Firmware": "Изменённые пользовательские микропрограммы",
|
||||
"Modified Embedded Firmware": "Изменённые встроенные микропрограммы",
|
||||
"Molybdenum": "Молибден",
|
||||
"Nickel": "Никель",
|
||||
"Niobium": "Ниобий",
|
||||
@@ -741,7 +745,7 @@
|
||||
"Phase Alloys": "Фазовые сплавы",
|
||||
"Phosphorus": "Фосфор",
|
||||
"Polymer Capacitors": "Полимерные конденсаторы",
|
||||
"Precipitated Alloys": "Осажденные сплавы",
|
||||
"Precipitated Alloys": "Осаждённые сплавы",
|
||||
"Proprietary Composites": "Патентованные композиты",
|
||||
"Proto Heat Radiators": "Прототипы теплоизлучателей",
|
||||
"Proto Radiolic Alloys": "Сплавы для изготовления зондов",
|
||||
@@ -749,15 +753,15 @@
|
||||
"Ruthenium": "Рутений",
|
||||
"Salvaged Alloys": "Захваченные сплавы",
|
||||
"Security Firmware Patch": "Обновление для защитной микропрограммы",
|
||||
"Selenium": "Селениум",
|
||||
"Selenium": "Селен",
|
||||
"Shield Emitters": "Щитоизлучатели",
|
||||
"Shielding Sensors": "Сенсоры системы экранирования",
|
||||
"Specialised Legacy Firmware": "Специальные микропрограммы предыдущего поколения",
|
||||
"Strange Wake Solutions": "Странные расчеты следа",
|
||||
"Strange Wake Solutions": "Странные расчёты следа",
|
||||
"Sulphur": "Сера",
|
||||
"Tagged Encryption Codes": "Меченные шифровальные коды",
|
||||
"Technetium": "Технеций",
|
||||
"Tellurium": "Теллурий",
|
||||
"Tellurium": "Теллур",
|
||||
"Thermic Alloys": "Термические сплавы",
|
||||
"Tin": "Олово",
|
||||
"Tungsten": "Вольфрам",
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
import '@babel/polyfill';
|
||||
import React from 'react';
|
||||
import { render } from 'react-dom';
|
||||
import '../less/app.less';
|
||||
import Coriolis from './Coriolis';
|
||||
// import TapEventPlugin from 'react/lib/TapEventPlugin';
|
||||
// import EventPluginHub from 'react/lib/EventPluginHub';
|
||||
|
||||
// onTouchTap not ready for primetime yet, too many issues with preventing default
|
||||
// EventPluginHub.injection.injectEventPluginsByName({ TapEventPlugin });
|
||||
|
||||
render(<Coriolis />, document.getElementById('coriolis'));
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react';
|
||||
// import Perf from 'react-addons-perf';
|
||||
import { Ships } from 'coriolis-data/dist';
|
||||
import cn from 'classnames';
|
||||
import Page from './Page';
|
||||
@@ -58,7 +57,6 @@ export default class OutfittingPage extends Page {
|
||||
*/
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
// window.Perf = Perf;
|
||||
this.state = this._initState(props, context);
|
||||
this._keyDown = this._keyDown.bind(this);
|
||||
this._exportBuild = this._exportBuild.bind(this);
|
||||
@@ -679,9 +677,9 @@ export default class OutfittingPage extends Page {
|
||||
}
|
||||
|
||||
/**
|
||||
* Open up a window for EDDB with a shopping list of our components
|
||||
* Open up a window for inara with a shopping list of our components
|
||||
*/
|
||||
_eddbShoppingList() {
|
||||
_inaraShoppingList() {
|
||||
const ship = this.state.ship;
|
||||
|
||||
const shipId = Ships[ship.id].eddbID;
|
||||
@@ -694,7 +692,7 @@ export default class OutfittingPage extends Page {
|
||||
|
||||
// Open up the relevant URL
|
||||
window.open(
|
||||
'https://eddb.io/station?s=' + shipId + '&m=' + modIds.join(',')
|
||||
'https://inara.cz/inapi/corisearch.php?s=' + shipId + '&m=' + modIds.join(',')
|
||||
);
|
||||
}
|
||||
|
||||
@@ -914,7 +912,7 @@ export default class OutfittingPage extends Page {
|
||||
<Download className="lg" />
|
||||
</button>
|
||||
<button
|
||||
onClick={this._eddbShoppingList}
|
||||
onClick={this._inaraShoppingList}
|
||||
onMouseOver={termtip.bind(null, 'PHRASE_SHOPPING_LIST')}
|
||||
onMouseOut={hide}
|
||||
>
|
||||
|
||||
@@ -383,7 +383,8 @@ export function shieldMetrics(ship, sys) {
|
||||
|
||||
// Our initial regeneration comes from the SYS capacitor store, which is replenished as it goes
|
||||
// 0.6 is a magic number from FD: each 0.6 MW of energy from the power distributor recharges 1 MJ/s of regeneration
|
||||
let capacitorDrain = (shieldGenerator.getBrokenRegenerationRate() * 0.6) - sysRechargeRate;
|
||||
let capacitorDrain = (shieldGenerator.getBrokenRegenerationRate() * shieldGenerator.getDistDraw()) - sysRechargeRate;
|
||||
|
||||
let capacitorLifetime = powerDistributor.getSystemsCapacity() / capacitorDrain;
|
||||
|
||||
let recover = 16;
|
||||
@@ -399,7 +400,7 @@ export function shieldMetrics(ship, sys) {
|
||||
recover = Math.Infinity;
|
||||
} else {
|
||||
// Recover remaining shields at the rate of the power distributor's recharge
|
||||
recover += remainingShieldToRecover / (sysRechargeRate / 0.6);
|
||||
recover += remainingShieldToRecover / (sysRechargeRate / shieldGenerator.getDistDraw());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -408,7 +409,7 @@ export function shieldMetrics(ship, sys) {
|
||||
|
||||
// Our initial regeneration comes from the SYS capacitor store, which is replenished as it goes
|
||||
// 0.6 is a magic number from FD: each 0.6 MW of energy from the power distributor recharges 1 MJ/s of regeneration
|
||||
capacitorDrain = (shieldGenerator.getRegenerationRate() * 0.6) - sysRechargeRate;
|
||||
capacitorDrain = (shieldGenerator.getRegenerationRate() * shieldGenerator.getDistDraw()) - sysRechargeRate;
|
||||
capacitorLifetime = powerDistributor.getSystemsCapacity() / capacitorDrain;
|
||||
|
||||
let recharge = 0;
|
||||
@@ -424,7 +425,7 @@ export function shieldMetrics(ship, sys) {
|
||||
recharge = Math.Inf;
|
||||
} else {
|
||||
// Recharge remaining shields at the rate of the power distributor's recharge
|
||||
recharge += remainingShieldToRecharge / (sysRechargeRate / 0.6);
|
||||
recharge += remainingShieldToRecharge / (sysRechargeRate / shieldGenerator.getDistDraw());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -58,6 +58,8 @@ export const ModuleGroupToName = {
|
||||
gmrp: 'Guardian Module Reinforcement Package',
|
||||
mahr: 'Meta Alloy Hull Reinforcement Package',
|
||||
sua: 'Supercruise Assist',
|
||||
mlc: "Multi Limpet Controller",
|
||||
rpl: "Repair Limpet Controller",
|
||||
|
||||
// Hard Points
|
||||
bl: 'Beam Laser',
|
||||
|
||||
@@ -13,6 +13,19 @@ function filter(arr, maxClass, minClass, mass) {
|
||||
return arr.filter(m => m.class <= maxClass && m.class >= minClass && (m.maxmass === undefined || mass <= m.maxmass));
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter SCO Modules to only return legal size.
|
||||
* @param {Array} arr Array of available FSD modules.
|
||||
* @param {number} maxSize Maximum allowable size for SCO modules.
|
||||
* @return {Array} Subset of modules filtered based on legal size amd type.
|
||||
*/
|
||||
function sco_filter(arr, maxSize) {
|
||||
return arr.filter(module => {
|
||||
return !(module.hasOwnProperty('name') && module['name'] === "Frame Shift Drive (SCO)" && module['class'] < maxSize);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The available module set for a specific ship
|
||||
*/
|
||||
@@ -41,6 +54,7 @@ export default class ModuleSet {
|
||||
|
||||
this.standard[0] = filter(stnd.pp, maxStandardArr[0], 0, mass); // Power Plant
|
||||
this.standard[2] = filter(stnd.fsd, maxStandardArr[2], 0, mass); // FSD
|
||||
this.standard[2] = sco_filter(this.standard[2], maxStandardArr[2]) // FSD - Filter SCO Modules
|
||||
this.standard[4] = filter(stnd.pd, maxStandardArr[4], 0, mass); // Power Distributor
|
||||
this.standard[6] = filter(stnd.ft, maxStandardArr[6], 0, mass); // Fuel Tank
|
||||
// Thrusters, filter modules by class only (to show full list of ratings for that class)
|
||||
|
||||
@@ -10,7 +10,7 @@ import { Ships, Modifications } from 'coriolis-data/dist';
|
||||
import { chain } from 'lodash';
|
||||
const zlib = require('zlib');
|
||||
|
||||
const UNIQUE_MODULES = ['psg', 'sg', 'bsg', 'rf', 'fs', 'fh', 'gfsb', 'dc'];
|
||||
const UNIQUE_MODULES = ['psg', 'sg', 'bsg', 'rf', 'fs', 'fh', 'gfsb', 'dc', 'ews'];
|
||||
|
||||
// Constants for modifications struct
|
||||
const SLOT_ID_DONE = -1;
|
||||
|
||||
@@ -34,6 +34,7 @@ export const SHIP_FD_NAME_TO_CORIOLIS_NAME = {
|
||||
'Krait_Light': 'krait_phantom',
|
||||
'Orca': 'orca',
|
||||
'Python': 'python',
|
||||
'Python_nx': 'python_nx',
|
||||
'SideWinder': 'sidewinder',
|
||||
'Type6': 'type_6_transporter',
|
||||
'Type7': 'type_7_transport',
|
||||
|
||||
@@ -40,22 +40,12 @@
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-55840909-18');
|
||||
</script>
|
||||
</head>
|
||||
<body style="background-color:#000;">
|
||||
<section id="coriolis">
|
||||
|
||||
|
||||
|
||||
<!-- Bugsnag -->
|
||||
<script src="https://d2wy8f7a9ursnm.cloudfront.net/v5.0.0/bugsnag.min.js"></script>
|
||||
<script>
|
||||
window.bugsnagClient = bugsnag('ba9fae819372850fb660755341fa6ef5', {appVersion: window.BUGSNAG_VERSION || undefined})
|
||||
window.Bugsnag = window.bugsnagClient
|
||||
</script>
|
||||
</head>
|
||||
<body style="background-color:#000;">
|
||||
<section id="coriolis">
|
||||
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -24,12 +24,6 @@
|
||||
type="image/png"
|
||||
href="/192x192.png"
|
||||
/>
|
||||
<!-- Bugsnag -->
|
||||
<script src="https://d2wy8f7a9ursnm.cloudfront.net/v5.0.0/bugsnag.min.js"></script>
|
||||
<script>
|
||||
window.bugsnagClient = bugsnag('ba9fae819372850fb660755341fa6ef5', {appVersion: window.BUGSNAG_VERSION || undefined})
|
||||
window.Bugsnag = window.bugsnagClient
|
||||
</script>
|
||||
|
||||
<!-- Apple/iOS headers -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
|
||||
82
src/sw.js
82
src/sw.js
@@ -1,46 +1,54 @@
|
||||
import {precacheAndRoute, createHandlerBoundToURL} from 'workbox-precaching';
|
||||
import {NavigationRoute, registerRoute} from 'workbox-routing';
|
||||
import {StaleWhileRevalidate, CacheFirst} from 'workbox-strategies';
|
||||
import {CacheableResponsePlugin} from 'workbox-cacheable-response'
|
||||
import {ExpirationPlugin} from 'workbox-expiration';
|
||||
|
||||
console.log('Hello from sw.js');
|
||||
|
||||
if (workbox) {
|
||||
console.log('Yay! Workbox is loaded 🎉');
|
||||
workbox.precaching.precacheAndRoute(self.__precacheManifest);
|
||||
// See https://developer.chrome.com/docs/workbox/migration/migrate-from-v4/ for guide to changes made
|
||||
console.log('Yay! Workbox is loaded 🎉');
|
||||
precacheAndRoute(self.__WB_MANIFEST || []);
|
||||
|
||||
workbox.routing.registerNavigationRoute('/index.html');
|
||||
const handler = createHandlerBoundToURL('/index.html');
|
||||
const navigationRoute = new NavigationRoute(handler
|
||||
// , {allowlist: [...], denylist: [...],}
|
||||
);
|
||||
registerRoute(navigationRoute);
|
||||
|
||||
workbox.routing.registerRoute(
|
||||
/\.(?:png|jpg|jpeg|svg|gif)$/,
|
||||
new workbox.strategies.CacheFirst({
|
||||
plugins: [
|
||||
new workbox.cacheableResponse.Plugin({
|
||||
statuses: [0, 200]
|
||||
})
|
||||
]
|
||||
})
|
||||
);
|
||||
|
||||
workbox.routing.registerRoute(
|
||||
/\.(?:js|css)$/,
|
||||
new workbox.strategies.StaleWhileRevalidate({
|
||||
cacheName: 'static-resources',
|
||||
})
|
||||
);
|
||||
registerRoute(
|
||||
/\.(?:png|jpg|jpeg|svg|gif)$/,
|
||||
new CacheFirst({
|
||||
plugins: [
|
||||
new CacheableResponsePlugin({
|
||||
statuses: [0, 200]
|
||||
})
|
||||
]
|
||||
})
|
||||
);
|
||||
|
||||
workbox.routing.registerRoute(
|
||||
new RegExp('https://fonts.(?:googleapis|gstatic).com/(.*)'),
|
||||
new workbox.strategies.CacheFirst({
|
||||
cacheName: 'google-fonts',
|
||||
plugins: [
|
||||
new workbox.expiration.Plugin({
|
||||
maxEntries: 30
|
||||
}),
|
||||
new workbox.cacheableResponse.Plugin({
|
||||
statuses: [0, 200]
|
||||
})
|
||||
]
|
||||
})
|
||||
);
|
||||
} else {
|
||||
console.log('Boo! Workbox didn\'t load 😬');
|
||||
}
|
||||
registerRoute(
|
||||
/\.(?:js|css)$/,
|
||||
new StaleWhileRevalidate({
|
||||
cacheName: 'static-resources',
|
||||
})
|
||||
);
|
||||
|
||||
registerRoute(
|
||||
new RegExp('https://fonts.(?:googleapis|gstatic).com/(.*)'),
|
||||
new CacheFirst({
|
||||
cacheName: 'google-fonts',
|
||||
plugins: [
|
||||
new ExpirationPlugin({
|
||||
maxEntries: 30
|
||||
}),
|
||||
new CacheableResponsePlugin({
|
||||
statuses: [0, 200]
|
||||
})
|
||||
]
|
||||
})
|
||||
);
|
||||
|
||||
self.addEventListener('message', event => {
|
||||
if (!event.data) {
|
||||
|
||||
81
webpack.common.js
Normal file
81
webpack.common.js
Normal file
@@ -0,0 +1,81 @@
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
|
||||
const pkgJson = require('./package');
|
||||
const buildDate = new Date();
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
main: './src/app/index.js'
|
||||
},
|
||||
resolve: {
|
||||
// When requiring, you don't need to add these extensions
|
||||
extensions: ['.js', '.jsx', '.json', '.less'],
|
||||
fallback: {
|
||||
// Consider replacing brwoserify-zlib-next c. 2016 package with pako, which it's just a wrapper for
|
||||
/* Some of these polyfills may not even be necessary, and were added in an attempt to deal with build issues
|
||||
while upgrading to Webpack v5 */
|
||||
"zlib": require.resolve("browserify-zlib-next"),
|
||||
"assert": require.resolve("assert/"),
|
||||
"buffer": require.resolve("buffer/"),
|
||||
"stream": require.resolve("stream-browserify"),
|
||||
/*
|
||||
"url": require.resolve("url/"),
|
||||
"path": require.resolve("path-browserify"),
|
||||
"crypto": require.resolve("crypto-browserify"),
|
||||
"os": require.resolve("os-browserify/browser"),
|
||||
"https": require.resolve("https-browserify"),
|
||||
"http": require.resolve("stream-http"),
|
||||
"vm": require.resolve("vm-browserify"),
|
||||
"constants": require.resolve("constants-browserify"),
|
||||
// "fs": false
|
||||
*/
|
||||
}
|
||||
},
|
||||
optimization: {
|
||||
usedExports: true
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'build'),
|
||||
chunkFilename: '[name].bundle.js',
|
||||
// assetModuleFilename: '[contenthash][ext]',
|
||||
publicPath: '/',
|
||||
clean: true // we already do rimraf on the build dir, but this should obviate that
|
||||
},
|
||||
plugins: [
|
||||
// new webpack.optimize.CommonsChunkPlugin({
|
||||
// name: 'lib',
|
||||
// filename: 'lib.js'
|
||||
// }),
|
||||
new HtmlWebpackPlugin({
|
||||
inject: true,
|
||||
template: path.join(__dirname, 'src/index.ejs'),
|
||||
version: pkgJson.version,
|
||||
// gapiKey: process.env.CORIOLIS_GAPI_KEY || '',
|
||||
date: buildDate,
|
||||
}),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: 'app.css',
|
||||
}),
|
||||
// Solve missing Buffer polyfill that breaks module engineering
|
||||
new webpack.ProvidePlugin({
|
||||
Buffer: ['buffer', 'Buffer'],
|
||||
}),
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
{ test: /\.css$/, use: [MiniCssExtractPlugin.loader, 'css-loader' ]},
|
||||
{
|
||||
test: /\.less$/,
|
||||
use: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader' ]
|
||||
},
|
||||
{ test: /\.(js|jsx)$/, use: ['babel-loader'], include: path.join(__dirname, 'src') },
|
||||
{
|
||||
test: /\.(jpe?g|svg|png|gif|ico|eot|ttf|woff|woff2?)(\?v=\d+\.\d+\.\d+)?$/i,
|
||||
type: 'asset/resource',
|
||||
},
|
||||
]
|
||||
}
|
||||
};
|
||||
@@ -1,69 +1,27 @@
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
const WebpackNotifierPlugin = require('webpack-notifier');
|
||||
const pkgJson = require('./package');
|
||||
const buildDate = new Date();
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
const { merge } = require('webpack-merge');
|
||||
const common = require('./webpack.common.js');
|
||||
|
||||
module.exports = {
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
const WebpackNotifierPlugin = require('webpack-notifier');
|
||||
|
||||
module.exports = merge(common, {
|
||||
devtool: 'source-map',
|
||||
devServer: {
|
||||
headers: { 'Access-Control-Allow-Origin': '*' }
|
||||
},
|
||||
mode: 'development',
|
||||
entry: {
|
||||
main: './src/app/index.js',
|
||||
},
|
||||
resolve: {
|
||||
// When requiring, you don't need to add these extensions
|
||||
extensions: ['.js', '.jsx', '.json', '.less']
|
||||
},
|
||||
optimization: {
|
||||
minimize: false,
|
||||
usedExports: true
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'build'),
|
||||
chunkFilename: '[name].bundle.js',
|
||||
publicPath: '/'
|
||||
},
|
||||
plugins: [
|
||||
new CopyWebpackPlugin(['src/.htaccess', 'src/iframe.html', 'src/xdLocalStoragePostMessageApi.min.js']),
|
||||
// new webpack.optimize.CommonsChunkPlugin({
|
||||
// name: 'lib',
|
||||
// filename: 'lib.js'
|
||||
// }),
|
||||
new HtmlWebpackPlugin({
|
||||
inject: true,
|
||||
template: path.join(__dirname, 'src/index.ejs'),
|
||||
version: pkgJson.version,
|
||||
date: buildDate,
|
||||
gapiKey: process.env.CORIOLIS_GAPI_KEY || ''
|
||||
}),
|
||||
new ExtractTextPlugin({
|
||||
filename: 'app.css',
|
||||
disable: false,
|
||||
allChunks: true
|
||||
}),
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
'src/.htaccess',
|
||||
'src/iframe.html',
|
||||
'src/xdLocalStoragePostMessageApi.min.js'
|
||||
]}),
|
||||
new WebpackNotifierPlugin({ alwaysNotify: true }),
|
||||
new webpack.HotModuleReplacementPlugin(),
|
||||
new webpack.NoEmitOnErrorsPlugin()
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
{ 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: /\.(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: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/octet-stream' },
|
||||
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'file-loader' },
|
||||
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=image/svg+xml' }
|
||||
]
|
||||
}
|
||||
};
|
||||
]
|
||||
});
|
||||
|
||||
@@ -1,54 +1,37 @@
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
const { InjectManifest } = require('workbox-webpack-plugin');
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
const { BugsnagSourceMapUploaderPlugin, BugsnagBuildReporterPlugin } = require('webpack-bugsnag-plugins');
|
||||
const pkgJson = require('./package');
|
||||
const buildDate = new Date();
|
||||
const { merge } = require('webpack-merge');
|
||||
const common = require('./webpack.common.js');
|
||||
|
||||
module.exports = {
|
||||
devtool: 'source-map',
|
||||
entry: {
|
||||
main: './src/app/index.js'
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js', '.jsx', '.json', '.less']
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'build'),
|
||||
chunkFilename: '[name].bundle.js',
|
||||
publicPath: '/',
|
||||
globalObject: 'this'
|
||||
},
|
||||
const path = require('path');
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const { InjectManifest } = require('workbox-webpack-plugin');
|
||||
|
||||
module.exports = merge(common, {
|
||||
// devtool: 'source-map',
|
||||
mode: 'production',
|
||||
optimization: {
|
||||
minimize: true,
|
||||
usedExports: true
|
||||
},
|
||||
output: {
|
||||
globalObject: 'this'
|
||||
},
|
||||
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 webpack.optimize.CommonsChunkPlugin({
|
||||
// name: 'lib',
|
||||
// filename: 'lib.[chunkhash:6].js'
|
||||
// }),
|
||||
new HtmlWebpackPlugin({
|
||||
inject: true,
|
||||
template: path.join(__dirname, 'src/index.ejs'),
|
||||
uaTracking: process.env.CORIOLIS_UA_TRACKING || '',
|
||||
gapiKey: process.env.CORIOLIS_GAPI_KEY || '',
|
||||
date: buildDate,
|
||||
version: pkgJson.version
|
||||
}),
|
||||
new ExtractTextPlugin({
|
||||
filename: '[hash:6].css',
|
||||
disable: false,
|
||||
allChunks: true
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
'src/.htaccess',
|
||||
'src/iframe.html',
|
||||
'src/xdLocalStoragePostMessageApi.min.js',
|
||||
{ from: 'src/schemas', to: 'schemas' },
|
||||
{
|
||||
from: 'src/images/logo/*',
|
||||
to: '[name][ext]'
|
||||
}
|
||||
]}),
|
||||
/* new HtmlWebpackPlugin({
|
||||
// uaTracking: process.env.CORIOLIS_UA_TRACKING || '',
|
||||
}), */
|
||||
new MiniCssExtractPlugin({
|
||||
filename: '[contenthash:6].css',
|
||||
}),
|
||||
// new BugsnagBuildReporterPlugin({
|
||||
// apiKey: 'ba9fae819372850fb660755341fa6ef5',
|
||||
@@ -59,25 +42,11 @@ module.exports = {
|
||||
// overwrite: true,
|
||||
// appVersion: `${pkgJson.version}-${buildDate.toISOString()}`
|
||||
// }),
|
||||
|
||||
new InjectManifest({
|
||||
swSrc: './src/sw.js',
|
||||
importWorkboxFrom: 'cdn',
|
||||
swDest: 'service-worker.js'
|
||||
}),
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
{ 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: /\.(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: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/font-woff' },
|
||||
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=application/octet-stream' },
|
||||
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'file-loader' },
|
||||
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url-loader?limit=10000&mimetype=image/svg+xml' }
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user