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

Log Errors #18

Closed
eljeffeg opened this issue Aug 29, 2017 · 7 comments
Closed

Log Errors #18

eljeffeg opened this issue Aug 29, 2017 · 7 comments

Comments

@eljeffeg
Copy link
Member

eljeffeg commented Aug 29, 2017

Here are some errors in the log that should be looked at, if they haven't already. Fixed some already, see below.

D3DXCreateEffect Error Buffer: PipelineEffect\Particle_MeshShadowed.fx(114,6): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll

D3DXCreateEffect Error Buffer: PipelineEffect\GS_ShadowedAsteroid.fx(114,6): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll

D3DXCreateEffect Error Buffer: PipelineEffect\GS_ShadowedShip.fx(255,6): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll

PipelineEffect\GS_ShadowedShip.fx(257,7): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll
PipelineEffect\GS_ShadowedShip.fx(257,7): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll
PipelineEffect\GS_ShadowedShip.fx(128,6): warning X3557: loop only executes for 1 iteration(s), forcing loop to unroll

*** TextureSystem could not find file (SkinTech) within TextureSystem's working directory (Textures).
Reloading All PipelineEffects...
Creating player mappings ... (rand seed:1976703446)
Human_FrigateLight_X303 has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:2 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:2 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:2 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_FrigateLight_X303 has weapon:2 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_CruiserHeavy_BC304 has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_CruiserHeavy_BC304 has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_CruiserHeavy_BC304 has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_CruiserHeavy_BC304 has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
TITAN_PSIREBEL_COSMETIC has weapon:3 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:1 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:2 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:3 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus_Cosmetic has weapon:3 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:1 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:3 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus_Cosmetic has weapon:3 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
TITAN_PHASEREBEL_COSMETIC has weapon:2 damage in BACK bank but no weapon points for its current mesh. Is this intended?

@eljeffeg
Copy link
Member Author

eljeffeg commented Aug 29, 2017

*** TextureSystem could not find file (SkinTech) within TextureSystem's working directory (Textures).

I fixed the issue.. if it is an issue.

So, this file reference is located in the HUD.brushes. I'm assuming this was suppose to look for "Skin_Tech" and not "SkinTech". Since we renamed our Skin_Tech, I changed it to Human_GUI_Skin. But as a point of reference, I actually converted the Sins Stock game HUD.brushes binary file to see what the game had there and it also had "SkinTech", which it also doesn't have a texture for. So even the stock game had this bug. Oddly, this file reference is for a brush called "MicBrush", which doesn't appear to be referenced anywhere and may not even be used.

@eljeffeg
Copy link
Member Author

I also fixed the D3DXCreateEffect Error Buffer issues.

@AceFighter AceFighter added this to the End of Month milestone Aug 29, 2017
eljeffeg added a commit that referenced this issue Aug 29, 2017
Shader tweaks to remove D3DXCreateEffect Error Buffer.  Brush change from non-existant texture to human skin.
@eljeffeg eljeffeg added this to General Game in Game Organization Aug 29, 2017
@eljeffeg
Copy link
Member Author

eljeffeg commented Sep 3, 2017

Looking through a forum thread, I found this information on the error "no weapon points for its current mesh".

... group of errors is because you've given ships weapon damage values in an arc that doesn't have mesh points set up for it in the model. To fix those errors just go into the mesh files used by FrigateTechScout and FrigatePhaseScout and add proper weapon nulls for the left and right arcs.

@dotNfg
Copy link
Contributor

dotNfg commented Sep 4, 2017

Titan Cosmetic entity errors should be fixed now. 9a8f891

@dotNfg
Copy link
Contributor

dotNfg commented Sep 18, 2017

All of the above errors are fixed now, some other similar errors remain. 653b9c6 3c972f7

Human Hangar Defense (no weapon points whatsoever but weapon damage numbers so needs to be setup)

Asuran Destiny (need to reoriend mesh points so it can target LEFT/RIGHT

Asuran Nemesis

@eljeffeg
Copy link
Member Author

eljeffeg commented Oct 16, 2017

Additional has weapon damage in bank but no weapon points.
Human_Orbital_HangerDefense has weapon:0 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_Orbital_HangerDefense has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalColony_Destiny has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateColony_Seedship has weapon:1 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Human_StarbaseOffense_Hades has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_StarbaseOffense_Hades has weapon:0 damage in BACK bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_TitanOffense_Tartarus has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Error - No bomb effect points found on bomber: Human_TitanDefense_Hephestus
Human_TitanDefense_Hephestus has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Human_TitanDefense_Hephestus has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FrigateCorvette_Nemesis has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalCarrier_Alastor has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalCarrier_Alastor has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalCarrier_Alastor has weapon:0 damage in LEFT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalCarrier_Alastor has weapon:0 damage in RIGHT bank but no weapon points for its current mesh. Is this intended?
Asuran_FighterBomber_Raptor has weapon:0 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_FighterBomber_Raptor has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CruiserAntiModule_Typhaon has weapon:0 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CruiserAntiModule_Typhaon has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CruiserAntiModule_Typhaon has weapon:0 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CruiserAntiModule_Typhaon has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalBattleship_Orion has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?
Asuran_CapitalBattleship_Orion has weapon:1 damage in FRONT bank but no weapon points for its current mesh. Is this intended?

@VikingWarriorGaming
Copy link
Contributor

Raptor is fixed

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

No branches or pull requests

4 participants