Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shattered Wormhole Sig and Anom list wrong #875

Closed
jbs1 opened this issue Nov 28, 2019 · 9 comments
Closed

Shattered Wormhole Sig and Anom list wrong #875

jbs1 opened this issue Nov 28, 2019 · 9 comments
Assignees
Milestone

Comments

@jbs1
Copy link

jbs1 commented Nov 28, 2019

Ok so after doing some further, it seems that the sites i thought were missing are actually in the signature_type.js file.
However it seems pathfinder does not take into account the unique nature of shattered wormholes.

Shattered wormholes can "generate signatures and anomalies of their own class, and of one class higher or lower."

Eg. in my particular case I was scanning the J003789 shattered WH.
That is a C3, so pathfinder only let's me select c3 sites. However I found the C4 sites "Forgotten Frontier Evacuation Center" and "Unsecured Frontier Digital Nexus" in there but couldn't select them from the dropdown menu.

So pathfinder needs a special case for the shattered holes to take into account this uniqueness.

@jbs1 jbs1 changed the title Unsecured Frontier Digital Nexus missing from datasite list 2 WH sites missing from datasite list Nov 28, 2019
@jbs1 jbs1 changed the title 2 WH sites missing from datasite list 2 WH sites missing from selection list Nov 28, 2019
@jbs1 jbs1 changed the title 2 WH sites missing from selection list Shattered Wormhole Sig and Anom list wrong Nov 28, 2019
@CalMatar
Copy link

Yes, you are correct in this. I forget what the C13 and C6 have for the below and above signatures though as they are the lowest and highest shattered holes respectively. I can't remember if they have anything in that direction since there is actually nothing that is below or above those WHs. As for the C2,C3,C4, and C5 Worm Holes they will always have signatures for one level above and one level below in ALL signatures whether it be combat, ore, gas, data, or relic. I believe that this also pertains to the Drifter holes as well since they are, in essence, shattered Worm Holes of a certain class that just happen to be Drifter holes that are connected to K-Space.

@exodus4d exodus4d self-assigned this Nov 30, 2019
@exodus4d exodus4d added this to the v1.5.5 milestone Nov 30, 2019
@exodus4d
Copy link
Owner

exodus4d commented Dec 1, 2019

@jbs1 Thanks for your report! This information was new to me.
@CalMatar Thanks for your explanation!

For now I implemented the following for C1-C6 Stattered WHs.
If someone can verify how C13s or Drifter holes (C14-C18) behave (e.g. screens from the EVE client), I will add them, too.

Source: https://wiki.eveuniversity.org/Shattered_wormhole_systems

Changes:

  • Signature 'type' select options in Shattered C1,-2,-3,-4,-5,-6 holes now includes the types from one class higher or lower, too.
    • e.g. C1 Shattered has available signature type options vor: C1, C2
    • e.g. C4 Shattered has available signature type options vor: C3, C4, C5
    • e.g. C6 Shattered has available signature type options vor: C5, C6
  • This only affects signatures with 'group': Combat, Relic, Data, Gas or Ore

In your example, Shattered J003789 C3 has Relic options from C2, C3, C4. (hint: C2, C3 can also have all Relic sites from 0.0):

NPUl6fm

@exodus4d exodus4d mentioned this issue Dec 1, 2019
@jbs1
Copy link
Author

jbs1 commented Dec 3, 2019

so, something more inconsistencies happened.
I just scanned a C2 shattered called J001057 and there i found an "Instrumental Core Reservoir" which is a C5/C6 site. So it seems that it is not just as straightforward as +/- 1 class.
I will try to investigate that further.
https://i.imgur.com/IdbOTFk.png

@jbs1
Copy link
Author

jbs1 commented Dec 3, 2019

ok, after some more checking it seems specifically for gas sigs all types of gas sigs spawn in all classes of shattered wormholes.

@CalMatar
Copy link

CalMatar commented Dec 3, 2019

Yes, you are correct. I did make a mistake on adding the gas into that list, as well as ore for that matter. Both of those will show up in all classes of wormholes regardless of what the type of site with the exception of the shattered specific ice and shattered depris field. Otherwise all gas and all ore fields will be in all wormholes. Sorry for the confusion.

@exodus4d
Copy link
Owner

exodus4d commented Dec 3, 2019

rgr, Ill make all Gas and Ore sites from all WHs (C1-C6) available in all Shattered WHs (C1-C6, C13).

@CalMatar

shattered specific ice and shattered depris field

Do you have a source URL with that information, too?

@exodus4d
Copy link
Owner

exodus4d commented Dec 3, 2019

I re-structured signature_type.js. It should be more readable now. Separating the different groups of sites enables me to mix up any combination we figure out by adding a "special" case to that function:

let getAreaIdsForSignatureTypeOptions = (systemTypeId, areaId, groupId, shattered = false) => {
let areaIds = [areaId];
if(
systemTypeId === 1 && shattered &&
[1, 2, 3, 4, 5, 6].includes(areaId) &&
[1, 2, 3, 4, 6].includes(groupId)
){
areaIds = [areaId - 1, areaId, areaId + 1].filter(areaId => areaId >= 1 && areaId <= 6);
}
return areaIds;
};

@CalMatar
Copy link

CalMatar commented Dec 4, 2019

Sorry for another mistake but it actually called a Shattered Debris Field. I misspelled it by mistake.

exodus4d added a commit that referenced this issue Dec 6, 2019
…ttered WHs. Added "Shattered Debris Field" and "Shattered Ice Field", #875
@exodus4d
Copy link
Owner

exodus4d commented Dec 6, 2019

@CalMatar I added the two new "Ore" sites, to all Shattered C1-C6 and C13 WHs:

  • Shattered Debris Field
  • Shattered Ice Field

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants