This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################### | |
### build/build_node.bat | |
# produces a nodejs executable with ai.js injected in | |
node --experimental-sea-config sea-config.json | |
node -e "require('fs').copyFileSync(process.execPath, 'ai.exe')" | |
npx postject ai.exe NODE_SEA_BLOB sea-prep.blob --sentinel-fuse NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2 | |
# https://nodejs.org/api/single-executable-applications.html | |
######################### | |
### build/sea-config.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If your creep needs to find... | |
(can be accessed as creep.pos, or any other RoomPosition) | |
creep.pos.findClosestByRange(type, options) -- returns one object, type is FIND_xx, for example: target = creep.pos.findClosestByRange(FIND_MY_SPAWNS); | |
creep.pos.findClosestByPath(type, options) -- as above, but more CPU costly (searches by real path, not distance) | |
creep.pos.findInRange(type, range, options) -- array, type is FIND_xx. Searches in square. All 8 adjacent tiles to creep are in range 1 | |
creep.pos.lookFor(type) -- array of objects that are at same position as creep. Type is LOOK_xx, for example LOOK_CONSTRUCTION_SITES | |
(can be accessed as creep.room, or any other Room) | |
creep.room.find(type, options) -- array, type is FIND_xx, for example FIND_DROPPED_RESOURCES. Options can have filter - as a function or object, like |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.getItemNames = function (item_ids, cb) { | |
dbItems.find({ 'id': { $in: item_ids } }).toArray(function (err, docs) { | |
if (err) { | |
log.error("getContracts_items: Error for dbItems.find", { err }); | |
cb(err); | |
return; | |
} | |
var fullquery = docs.map(d => d.id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let UTILS_ROOM = {}; | |
UTILS_ROOM.getSpawns = function (room) { | |
//return getCached(room.name, "spawn", () => | |
return room.find(FIND_MY_STRUCTURES, { | |
filter: { structureType: STRUCTURE_SPAWN } | |
}) | |
//); | |
}; | |
let UTILS = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//let UTILS = require('./utils'); | |
//let UTILS_ROOM = require('./utils.room'); | |
let UTILS_ROOM = {}; | |
UTILS_ROOM.getSpawns = function (room) { | |
//return getCached(room.name, "spawn", () => | |
return room.find(FIND_MY_STRUCTURES, { | |
filter: { structureType: STRUCTURE_SPAWN } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cacheEnum | |
CACHE.E_ROOM = 1; | |
CACHE.coreInit = function () { | |
if (!global.my_caches) { | |
CACHE[CACHE.E_ROOM] = Memory.rooms; | |
global.my_caches = true; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function renderMatrix(roomName, costMatrix, color = '#ff0000') { | |
var vis = Game.rooms[roomName].visual; | |
const array = costMatrix._bits; | |
var max = _.max(array); | |
for (var x = 0; x < 50; ++x) { | |
for (var y = 0; y < 50; ++y) { | |
var value = array[x * 50 + y]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PLAIN_COST = 3; | |
const SWAMP_COST = 6; | |
const WALL_COST = 30 * PLAIN_COST; | |
const EXISTING_PATH_COST = PLAIN_COST - 2; | |
function getDestinations(room) { | |
let destinations = room.find(FIND_SOURCES); | |
destinations.push({ pos: room.getPositionAt(1, 25) }); | |
return destinations; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// Funkcja: Update() | |
// Działanie: update.. | |
////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
void Bohater :: Update() | |
{ | |
brain->Update(); | |
cycles++; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Procedure naucz(var _siec :Tsiec;var _uczacy :Tuczacy); | |
{uczenie sieci metoda wstecznej propagacji bledow, liczba warstw: min 3} | |
var | |
_out :Tout; _in :Tin; _delta :Tdelta; _blad :Tblad; | |
_i,_i2,_i3 :integer; waga_tmp :real; | |
begin | |
for _i2:=1 to _siec.liczba_n[1] do _out[1,_i2]:=_uczacy.we[_i2]; {warstwa we} | |
for _i:=1 to _siec.liczba_w-1 do _out[_i,_siec.liczba_n[_i]]:=1; {bias} | |
{mnozenie wejsc przez wagi dla kazdego neuronu} | |
for _i:=2 to _siec.liczba_w do |
NewerOlder