1
0
mirror of https://github.com/veden/Rampant.git synced 2025-02-01 13:07:53 +02:00
Rampant/tests.lua

508 lines
18 KiB
Lua
Raw Normal View History

local tests = {}
local constants = require("libs/Constants")
2016-11-03 16:51:35 -07:00
local mathUtils = require("libs/MathUtils")
2017-05-07 23:56:11 -07:00
local chunkUtils = require("libs/ChunkUtils")
local chunkPropertyUtils = require("libs/ChunkPropertyUtils")
2017-05-27 21:50:37 -07:00
local mapUtils = require("libs/MapUtils")
2017-05-07 23:56:11 -07:00
local baseUtils = require("libs/BaseUtils")
2017-11-20 23:27:03 -08:00
-- local tendrilUtils = require("libs/TendrilUtils")
2019-02-19 22:16:43 -08:00
function tests.pheromoneLevels(size)
local player = game.player.character
2017-11-20 23:27:03 -08:00
local playerChunkX = math.floor(player.position.x / 32) * constants.CHUNK_SIZE
local playerChunkY = math.floor(player.position.y / 32) * constants.CHUNK_SIZE
2017-06-08 22:18:59 -07:00
if not size then
2017-11-20 23:27:03 -08:00
size = 3 * constants.CHUNK_SIZE
else
size = size * constants.CHUNK_SIZE
2017-06-08 22:18:59 -07:00
end
print("------")
2018-01-13 21:48:21 -08:00
print(#global.map.processQueue)
print(playerChunkX .. ", " .. playerChunkY)
print("--")
2017-11-20 23:27:03 -08:00
for y=playerChunkY-size, playerChunkY+size,32 do
for x=playerChunkX-size, playerChunkX+size,32 do
2018-01-13 21:48:21 -08:00
if (global.map[x] ~= nil) then
local chunk = global.map[x][y]
if (chunk ~= nil) then
2016-08-21 14:48:55 -07:00
local str = ""
for i=1,#chunk do
str = str .. " " .. tostring(i) .. "/" .. tostring(chunk[i])
end
2018-05-23 17:40:05 -07:00
str = str .. " " .. "p/" .. game.surfaces[global.natives.activeSurface].get_pollution(chunk) .. " " .. "n/" .. chunkPropertyUtils.getNestCount(global.map, chunk) .. " " .. "w/" .. chunkPropertyUtils.getWormCount(global.map, chunk)
2017-11-20 23:27:03 -08:00
if (chunk.x == playerChunkX) and (chunk.y == playerChunkY) then
2017-06-08 22:18:59 -07:00
print("=============")
2017-11-20 23:27:03 -08:00
print(chunk.x, chunk.y, str)
2017-06-08 22:18:59 -07:00
print("=============")
2016-10-14 17:00:18 -07:00
else
2017-11-20 23:27:03 -08:00
print(chunk.x, chunk.y, str)
2016-10-14 17:00:18 -07:00
end
-- print(str)
2017-06-08 22:18:59 -07:00
print("----")
end
end
end
2017-06-08 22:18:59 -07:00
print("------------------")
end
end
2018-09-23 21:56:45 -07:00
function tests.killActiveSquads()
print("--")
for i=1, #global.natives.squads do
local squad = global.natives.squads[i]
if (squad.group.valid) then
local members = squad.group.members
for x=1, #members do
local member = members[x]
local val = member.valid and member.die()
end
end
end
end
2017-05-07 23:56:11 -07:00
function tests.activeSquads()
2019-03-07 19:40:55 -08:00
print("-----")
print("Squads", #global.natives.squads)
for i=1, #global.natives.squads do
print("-")
local squad = global.natives.squads[i]
local squadHealth = 0
local squadMakeup = {}
if squad.group.valid then
for x=1,#squad.group.members do
local member = squad.group.members[x].prototype
if not squadMakeup[member.name] then
squadMakeup[member.name] = 0
end
2019-03-07 19:40:55 -08:00
squadHealth = squadHealth + member.max_health
squadMakeup[member.name] = squadMakeup[member.name] + 1
end
2019-04-07 22:22:02 -07:00
print(math.floor(squad.group.position.x * 0.03125), math.floor(squad.group.position.y * 0.03125), squad.status, squad.group.state, #squad.group.members, squad.cycles, squad.group.group_number, squadHealth)
2019-03-07 19:40:55 -08:00
-- print(serpent.dump(squadResistances))
print(serpent.dump(squadMakeup))
print(serpent.dump(squad))
end
end
print("---")
print("pending", #global.natives.pendingAttack)
for i=1, #global.natives.pendingAttack do
print("-")
local squad = global.natives.pendingAttack[i]
local squadHealth = 0
local squadMakeup = {}
if squad.group.valid then
for x=1,#squad.group.members do
local member = squad.group.members[x].prototype
if not squadMakeup[member.name] then
squadMakeup[member.name] = 0
end
squadHealth = squadHealth + member.max_health
squadMakeup[member.name] = squadMakeup[member.name] + 1
end
2019-03-08 22:23:00 -08:00
print(math.floor(squad.group.position.x * 0.03125), math.floor(squad.group.position.y * 0.03125), squad.status, squad.group.state, #squad.group.members, squad.cycles, squadHealth, squad.group.group_number)
2019-03-07 19:40:55 -08:00
-- print(serpent.dump(squadResistances))
print(serpent.dump(squadMakeup))
print(serpent.dump(squad))
2016-08-06 20:38:47 -07:00
end
end
2019-03-07 19:40:55 -08:00
print("---")
print("building", #global.natives.building)
for i=1, #global.natives.building do
print("-")
2019-03-08 23:13:36 -08:00
local squad = global.natives.building[i]
2019-03-07 19:40:55 -08:00
local squadHealth = 0
local squadMakeup = {}
if squad.group.valid then
for x=1,#squad.group.members do
local member = squad.group.members[x].prototype
if not squadMakeup[member.name] then
squadMakeup[member.name] = 0
end
squadHealth = squadHealth + member.max_health
squadMakeup[member.name] = squadMakeup[member.name] + 1
end
2019-04-07 22:22:02 -07:00
print(math.floor(squad.group.position.x * 0.03125), math.floor(squad.group.position.y * 0.03125), squad.status, squad.group.state, #squad.group.members, squad.cycles, squad.group.group_number, squadHealth)
2019-03-07 19:40:55 -08:00
-- print(serpent.dump(squadResistances))
print(serpent.dump(squadMakeup))
print(serpent.dump(squad))
end
end
end
2017-05-07 23:56:11 -07:00
function tests.entitiesOnPlayerChunk()
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-05-23 17:40:05 -07:00
local entities = game.surfaces[global.natives.activeSurface].find_entities_filtered({area={{chunkX, chunkY},
2018-06-03 19:13:23 -07:00
{chunkX + constants.CHUNK_SIZE, chunkY + constants.CHUNK_SIZE}},
force="player"})
for i=1, #entities do
print(entities[i].name)
end
print("--")
end
2017-05-07 23:56:11 -07:00
function tests.findNearestPlayerEnemy()
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-05-23 17:40:05 -07:00
local entity = game.surfaces[global.natives.activeSurface].find_nearest_enemy({position={chunkX, chunkY},
2018-06-03 19:13:23 -07:00
max_distance=constants.CHUNK_SIZE,
force = "enemy"})
if (entity ~= nil) then
print(entity.name)
end
print("--")
end
function tests.morePoints(points)
global.natives.points = global.natives.points + points
end
2017-05-27 21:50:37 -07:00
function tests.getOffsetChunk(x, y)
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125)
local chunkY = math.floor(playerPosition.y * 0.03125)
2018-01-13 21:48:21 -08:00
local chunk = mapUtils.getChunkByIndex(global.map, chunkX + x, chunkY + y)
2017-05-27 21:50:37 -07:00
print(serpent.dump(chunk))
end
2017-05-07 23:56:11 -07:00
function tests.aiStats()
2016-11-03 16:51:35 -07:00
print(global.natives.points, game.tick, global.natives.state, global.natives.temperament, global.natives.stateTick, global.natives.temperamentTick)
2016-08-18 19:02:13 -07:00
end
2017-05-07 23:56:11 -07:00
function tests.fillableDirtTest()
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-05-23 17:40:05 -07:00
game.surfaces[global.natives.activeSurface].set_tiles({{name="fillableDirt", position={chunkX-1, chunkY-1}},
2017-05-07 23:56:11 -07:00
{name="fillableDirt", position={chunkX, chunkY-1}},
{name="fillableDirt", position={chunkX-1, chunkY}},
2019-02-19 22:16:43 -08:00
{name="fillableDirt", position={chunkX, chunkY}}},
2017-05-07 23:56:11 -07:00
false)
end
2017-05-07 23:56:11 -07:00
function tests.tunnelTest()
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-05-23 17:40:05 -07:00
game.surfaces[global.natives.activeSurface].create_entity({name="tunnel-entrance-rampant", position={chunkX, chunkY}})
end
2017-12-20 19:50:36 -08:00
function tests.createEnemy(x,d)
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-01-23 22:02:06 -08:00
local a = {name=x, position={chunkX, chunkY}, force="enemy"}
2017-12-20 19:50:36 -08:00
if d then
a['direction'] = d
end
2018-05-23 17:40:05 -07:00
return game.surfaces[global.natives.activeSurface].create_entity(a)
2017-05-27 21:50:37 -07:00
end
function tests.registeredNest(x)
local entity = tests.createEnemy(x)
2018-01-13 21:48:21 -08:00
chunk.registerEnemyBaseStructure(global.map,
entity,
nil)
2017-05-07 23:56:11 -07:00
end
function tests.attackOrigin()
2018-05-23 17:40:05 -07:00
local enemy = game.surfaces[global.natives.activeSurface].find_nearest_enemy({position={0,0},
2018-06-03 19:13:23 -07:00
max_distance = 1000})
2016-08-25 15:20:06 -07:00
if (enemy ~= nil) and enemy.valid then
print(enemy, enemy.unit_number)
enemy.set_command({type=defines.command.attack_area,
destination={0,0},
radius=32})
end
end
function tests.dumpNatives()
print(serpent.dump(global.natives))
end
2017-05-07 23:56:11 -07:00
function tests.cheatMode()
game.players[1].cheat_mode = true
game.forces.player.research_all_technologies()
end
2017-05-07 23:56:11 -07:00
function tests.gaussianRandomTest()
2016-11-03 16:51:35 -07:00
local result = {}
for x=0,100,1 do
result[x] = 0
end
for _=1,10000 do
2017-06-08 22:18:59 -07:00
local s = mathUtils.roundToNearest(mathUtils.gaussianRandomRange(50, 25, 0, 100), 1)
2016-11-03 16:51:35 -07:00
result[s] = result[s] + 1
end
for x=0,100,1 do
print(x, result[x])
end
2016-08-28 17:05:28 -07:00
end
2017-05-07 23:56:11 -07:00
function tests.reveal (size)
2018-05-25 15:23:22 -07:00
local pos = game.player.character.position
2017-05-07 23:56:11 -07:00
game.player.force.chart(game.player.surface,
2018-05-25 15:23:22 -07:00
{{x=-size+pos.x, y=-size+pos.y}, {x=size+pos.x, y=size+pos.y}})
2017-05-07 23:56:11 -07:00
end
function tests.baseStats()
local natives = global.natives
print ("x", "y", "distanceThreshold", "tick", "points", "temperament", "temperamentTick", "state", "stateTick", "alignments")
2017-05-07 23:56:11 -07:00
for i=1, #natives.bases do
local base = natives.bases[i]
print(base.x,
base.y,
base.distanceThreshold,
base.tick,
base.points,
base.temperament,
base.temperamentTick,
base.state,
base.stateTick,
serpent.dump(base.alignment))
2017-06-08 22:18:59 -07:00
print("---")
2017-05-07 23:56:11 -07:00
end
end
function tests.clearBases()
2018-05-23 17:40:05 -07:00
local surface = game.surfaces[global.natives.activeSurface]
2017-05-07 23:56:11 -07:00
for x=#global.natives.bases,1,-1 do
local base = global.natives.bases[x]
for c=1,#base.chunks do
local chunk = base.chunks[c]
2017-05-11 21:50:06 -07:00
chunkUtils.clearChunkNests(chunk, surface)
2017-05-07 23:56:11 -07:00
end
base.chunks = {}
2017-05-11 21:50:06 -07:00
if (surface.can_place_entity({name="biter-spawner-powered", position={base.cX * 32, base.cY * 32}})) then
surface.create_entity({name="biter-spawner-powered", position={base.cX * 32, base.cY * 32}})
2017-05-07 23:56:11 -07:00
local slice = math.pi / 12
local pos = 0
for i=1,24 do
2017-05-11 21:50:06 -07:00
if (math.random() < 0.8) then
local distance = mathUtils.roundToNearest(mathUtils.gaussianRandomRange(45, 5, 37, 60), 1)
if (surface.can_place_entity({name="biter-spawner", position={base.cX * 32 + (distance*math.sin(pos)), base.cY * 32 + (distance*math.cos(pos))}})) then
if (math.random() < 0.3) then
surface.create_entity({name="small-worm-turret", position={base.cX * 32 + (distance*math.sin(pos)), base.cY * 32 + (distance*math.cos(pos))}})
else
surface.create_entity({name="biter-spawner", position={base.cX * 32 + (distance*math.sin(pos)), base.cY * 32 + (distance*math.cos(pos))}})
end
end
2017-05-07 23:56:11 -07:00
end
pos = pos + slice
end
else
2019-02-19 22:16:43 -08:00
table.remove(global.natives.bases, x)
2017-05-07 23:56:11 -07:00
end
end
end
function tests.mergeBases()
local natives = global.natives
baseUtils.mergeBases(natives)
end
function tests.unitBuildBase()
end
function tests.showBaseGrid()
local n = {}
for k,v in pairs(global.natives.bases) do
n[v] = k % 4
end
local chunks = global.map.chunkToBase
for chunk,base in pairs(chunks) do
local pick = n[base]
local color = "concrete"
if base.alignment == constants.BASE_ALIGNMENT_NE then
color = "hazard-concrete-left"
elseif (pick == 1) then
color = "water"
elseif (pick == 2) then
color = "deepwater"
elseif (pick == 3) then
color = "water-green"
end
2018-05-23 17:40:05 -07:00
chunkUtils.colorChunk(chunk.x, chunk.y, color, game.surfaces[global.natives.activeSurface])
end
end
2017-12-31 11:36:23 -08:00
function tests.showMovementGrid()
2018-01-13 21:48:21 -08:00
local chunks = global.map.processQueue
2017-12-31 11:36:23 -08:00
for i=1,#chunks do
local chunk = chunks[i]
local color = "concrete"
2018-09-23 21:56:45 -07:00
if (chunkPropertyUtils.getPassable(global.map, chunk) == constants.CHUNK_ALL_DIRECTIONS) then
2017-12-31 11:36:23 -08:00
color = "hazard-concrete-left"
2018-09-23 21:56:45 -07:00
elseif (chunkPropertyUtils.getPassable(global.map, chunk) == constants.CHUNK_NORTH_SOUTH) then
2017-12-31 11:36:23 -08:00
color = "deepwater"
2018-09-23 21:56:45 -07:00
elseif (chunkPropertyUtils.getPassable(global.map, chunk) == constants.CHUNK_EAST_WEST) then
2017-12-31 11:36:23 -08:00
color = "water-green"
end
2018-05-23 17:40:05 -07:00
chunkUtils.colorChunk(chunk.x, chunk.y, color, game.surfaces[global.natives.activeSurface])
2017-12-31 11:36:23 -08:00
end
end
function tests.colorResourcePoints()
2018-01-13 21:48:21 -08:00
local chunks = global.map.processQueue
2017-12-31 11:36:23 -08:00
for i=1,#chunks do
local chunk = chunks[i]
local color = "concrete"
if (chunk[constants.RESOURCE_GENERATOR] ~= 0) and (chunk[constants.NEST_COUNT] ~= 0) then
color = "hazard-concrete-left"
elseif (chunk[constants.RESOURCE_GENERATOR] ~= 0) then
color = "deepwater"
elseif (chunk[constants.NEST_COUNT] ~= 0) then
color = "water-green"
end
2018-05-23 17:40:05 -07:00
chunkUtils.colorChunk(chunk.x, chunk.y, color, game.surfaces[global.natives.activeSurface])
2019-02-19 22:16:43 -08:00
end
2017-12-31 11:36:23 -08:00
end
function tests.entityStats(name, d)
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
2018-05-23 17:40:05 -07:00
local a = game.surfaces[global.natives.activeSurface].create_entity({name=name, position={chunkX, chunkY}})
if d then
a['direction'] = d
end
print(serpent.dump(a))
a.destroy()
end
2018-02-18 16:21:18 -08:00
function tests.exportAiState()
local printState = function ()
2018-01-13 21:48:21 -08:00
local chunks = global.map.processQueue
local s = ""
for i=1,#chunks do
local chunk = chunks[i]
2019-02-19 22:16:43 -08:00
local base = chunkPropertyUtils.getChunkBase(global.map, chunk)
local alignmentCount = 0
if base then
if (#base.alignment == 2) then
alignmentCount = (math.abs(base.x) * 10000) + (math.abs(base.y) * 10000) + (base.alignment[1] * 100) + base.alignment[2]
else
alignmentCount = (math.abs(base.x) * 10000) + (math.abs(base.y) * 10000) + base.alignment[1]
end
end
s = s .. table.concat({chunk[constants.MOVEMENT_PHEROMONE],
chunk[constants.BASE_PHEROMONE],
chunk[constants.PLAYER_PHEROMONE],
chunk[constants.RESOURCE_PHEROMONE],
2018-09-25 22:14:13 -07:00
chunkPropertyUtils.getPassable(global.map, chunk),
chunk[constants.CHUNK_TICK],
2018-09-25 22:14:13 -07:00
chunkPropertyUtils.getPathRating(global.map, chunk),
chunk.x,
chunk.y,
chunkPropertyUtils.getNestCount(global.map, chunk),
chunkPropertyUtils.getWormCount(global.map, chunk),
chunkPropertyUtils.getRallyTick(global.map, chunk),
chunkPropertyUtils.getRetreatTick(global.map, chunk),
chunkPropertyUtils.getResourceGenerator(global.map, chunk),
2018-09-25 22:14:13 -07:00
chunkPropertyUtils.getPlayerBaseGenerator(global.map, chunk),
2019-02-19 22:16:43 -08:00
chunkPropertyUtils.getDeathGenerator(global.map, chunk),
game.surfaces[global.natives.activeSurface].get_pollution(chunk),
chunkPropertyUtils.getNestActiveness(global.map, chunk),
2019-03-05 22:18:03 -08:00
chunkPropertyUtils.getRaidNestActiveness(global.map, chunk),
#chunkPropertyUtils.getSquadsOnChunk(global.map, chunk),
alignmentCount}, ",") .. "\n"
end
game.write_file("rampantState.txt", s, false)
end
2019-02-19 22:16:43 -08:00
return function(interval)
if not interval then
interval = 0
else
interval = tonumber(interval)
end
printState()
2019-02-19 22:16:43 -08:00
if (interval > 0) then
2018-02-18 16:21:18 -08:00
script.on_nth_tick(interval, printState)
end
2017-06-08 22:18:59 -07:00
end
end
2018-06-03 19:13:23 -07:00
function tests.createEnergyTest(x)
local entity = tests.createEnemy(x)
local playerPosition = game.players[1].position
local chunkX = math.floor(playerPosition.x * 0.03125) * 32
local chunkY = math.floor(playerPosition.y * 0.03125) * 32
local entities = game.surfaces[global.natives.activeSurface].find_entities_filtered({area={{chunkX, chunkY},
{chunkX + constants.CHUNK_SIZE, chunkY + constants.CHUNK_SIZE}},
type = "electric-pole",
force="player"})
-- for i=1, #entities do
-- print(entities[i].name)
-- end
local wires
2019-02-19 22:16:43 -08:00
2018-06-03 19:13:23 -07:00
if #entities > 0 then
entity.connect_neighbour(entities[1])
end
2019-02-19 22:16:43 -08:00
2018-09-23 21:56:45 -07:00
-- if wires then
-- for connectType,neighbourGroup in pairs(wires) do
-- if connectType == "copper" then
-- for _,v in pairs(neighbourGroup) do
-- ;
-- end
-- end
-- end
-- end
2018-06-03 19:13:23 -07:00
end
2018-02-16 19:31:29 -08:00
function tests.unitGroupBuild()
2018-05-23 17:40:05 -07:00
local surface = game.surfaces[global.natives.activeSurface]
2018-02-16 19:31:29 -08:00
local group = surface.create_unit_group({position={-32, -32}})
2019-02-19 22:16:43 -08:00
2018-02-16 19:31:29 -08:00
for i=1,10 do
group.add_member(surface.create_entity({name="small-biter", position={-32, -32}}))
end
group.set_command({
2018-06-03 19:13:23 -07:00
type = defines.command.build_base,
destination = {-64, -64},
distraction = defines.distraction.by_enemy,
ignore_planner = true
2018-02-16 19:31:29 -08:00
})
end
function tests.dumpEnvironment(x)
print (serpent.dump(global[x]))
end
-- function tests.scanChunkPaths()
-- local surface = game.surfaces[global.natives.activeSurface]
-- local playerPosition = game.players[1].position
-- local chunk = mapUtils.getChunkByPosition(global.map, playerPosition)
-- print("------")
-- print(chunkUtils.scanChunkPaths(chunk, surface, global.map))
-- print("------")
-- end
2019-02-20 22:31:47 -08:00
2017-06-08 22:18:59 -07:00
function tests.stepAdvanceTendrils()
2017-11-20 23:27:03 -08:00
-- for _, base in pairs(global.natives.bases) do
2018-05-23 17:40:05 -07:00
-- tendrilUtils.advanceTendrils(global.map, base, game.surfaces[global.natives.activeSurface], {nil,nil,nil,nil,nil,nil,nil,nil})
2017-11-20 23:27:03 -08:00
-- end
2017-05-07 23:56:11 -07:00
end
2016-11-03 16:51:35 -07:00
2016-10-14 17:00:18 -07:00
return tests