| Pages: [1] 2 3 :: one page |
| Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Philderbeast
M.I.M.M.S The Watchmen.
5
|
Posted - 2011.12.22 12:05:00 -
[1] - Quote
is there a working mod for displaying eve fittings in an easy to read way? for instance similar to the in game fitting screen? |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 00:29:00 -
[2] - Quote
ok since it appears no one is activly developing this i have taken the old version posted in a previous thread and have begun work to update this to Crucible and remove some of the horrid code i found in there.
Current progress:
Updated code to hook in to the existing bbcode structure of phpbb (before it was only working after you posted so you could not preview your post and see the fitting window)
I'm currently working on fixing the layout code to make it look a bit nicer, and will then update the database to crucible with all mods and ships currently available.
I hope to have a public beta out by next week for you to start to test this.
Watch this thread for updates,
|

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 08:37:00 -
[3] - Quote
ill make another post to help get me some info here.
I'm now moving over to using the static data dump to get the info i need about the modules to place them on the fitting.
For anything in a high, med, lo or rig slot this is easy and i have a query that is doing this, however I'm getting stuck with drones, charges and sub systems.
I would prefer not to have to create custom tables for this info (although it might be the best way) so i was wondering if there is any way to get this info, I may end up creating some custom tables but i would still like to know how to get this directly from the data dump so i can make a script to make the tables rather then getting the info by hand when something is added or removed. |

Nathan WAKE
Osiris Entreprises OSE Fondation
7
|
Posted - 2012.01.04 09:57:00 -
[4] - Quote
Hello Phil,
I did like you did, I picked up the old mod and arranged it a little. The mod was finished, and instead of releasing it, I passed it on to Cyerus, who is developping a API regsitration PHPBB mod for him to include it into his release (yet to come, version 5.2).
Cyerus told me the same thing that you wrote in your post : the BB code part of the mod was horrible (but not mine) and he rewrotte it from scratch for consistency and compatibility. He also changed the code so that, when viewed in game, you can get the info directly by clicking on an item. And last of all, he linked all the images from the EvE servers, as I chose to provide them with the package. I don't think he intends to release the mod as a "stand alone", so you're very welcome if you succeed in your project.
For the code part of it, you are probably much better than I am, so if won't comment 
Regarding the tables needed for the mod to work, I ended up creating a new table for the ships with all I needed in it, because the SQL query to get all this from the different table in the dump was much too complicated.
Here's my table :
typeID -> for reference typeName -> for display low -> number of low slots medium -> number of medium slots high -> number of high slots drone -> volume in m3 of the drone bay (0 if none) rig -> number of rig slots subsystems -> number of subsystems slots (0 if none) raceID raceName metaGroupName -> Tech I, Tech II, Tech III or Faction groupName marketGroupName -> for displaying Caldari, Caldari Navy, Amarr and so on
For T3 cruisers, all low, med and high slots were defaulted to 8 because the real number of slots depends on the subsystems you choose, and it was too difficult (for me) to code that.
I had a bug in the code : when a item, low med or high slot was added to the fitt, the mod displayed correctly the number of remaining slots. But when no item were added to the fitt, the mod did not display the remaining slots available. For example, fitt no high modules on a Condor, and the system fails to tell you you have 3 remaining slots, but fitt a small missile launcher, and the 2 remaining slots were correctly displayed. I never could find were the faulty code was, but again, I'm just a amateur, not a developer, and the initial code was not mine.
Hope you'll succeed in you project, and looking forward to download and install it in replacement of mine ;-)
Cheers
Nathan "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.04 10:05:00 -
[5] - Quote
thanks for the info nathan,
it looks like ill be making my own tables then.
My intention at this stage is to split it in to 2 tables. one for the ships, and one for modules/drones.
my tables wold be
for ships typeid ship name high slots med slots low slots reg slots subsystem slots
and for mods/drones/charges and type id mod name mod location
there is no need to store the tech level as i pull the images from the eve image server and it gives this. but i still need to get all this info from the data dump to build the second table.
i do plan some igb integration but that's a lot later on down the track.
also at this stage i don't think any of the original code is renaming in my mod, with the exception of the css code ;) |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 01:57:00 -
[6] - Quote
UPDATE
COMPLETED
- all code is done with the exception of showing the charges.
- Database has been updated to crucible, and i have a script to generate new tables for future updates.
TODO
- create the Charge table and display this info on the fitting
- Create modx file and package for initial release
ETA 2 days!*
please not this is a estimate and depending on how long it takes to build the charge table release could be much sooner or much longer.
|

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 08:06:00 -
[7] - Quote
First to comment 
Installed it and noted a small error in the code :
includes/message_parser.php
there is a coma missing at the end of this line :
Quote:'EFTFit'=> array('bbcode_id' => 13,'regexp' => array('#\[EFTFit\](.*?)\[/EFTFit\]#uise' => "\$this->bbcode_eftfitting('\$1')"))
which result in the following error :
Quote:Parse error: parse error, expecting `')'' in C:\wamp\www\EFT_PHIL\includes\message_parser.php on line 119
Nothing too serious 
Still trying to get the EFTFit button to diplay, next comment soon  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 08:15:00 -
[8] - Quote
*hides in the corner*
thanks for that pickup, i did a little reshuffle in my files so there was no need for it however i have made that change to the install file and the new package has been uploaded
currently i haven't put in a button for it, i was to brain dead however its only a few lines of code ill put them in shortly for you and post them here. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 08:23:00 -
[9] - Quote
Updated my post with some more feedback  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
9
|
Posted - 2012.01.05 08:32:00 -
[10] - Quote
thanks for the feedback, ill get the missing images in,
I agree I'm not s huge fan of the layout wither but it does the job and i was more worred about getting it working then changing the way it looks. |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 08:44:00 -
[11] - Quote
ok new version uploaded with all missing images (that wasent the only one :S) and a button for using the bbcode :) |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 09:22:00 -
[12] - Quote
Archive is announced as corrupted for me  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 09:27:00 -
[13] - Quote
weird its working for me... but i have re uploaded it jsut in case for you. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 10:49:00 -
[14] - Quote
Still no luck with your archive.... maybe rename it ? Let's wait and see if others have the same problem.
Anyway, I sent you by private mail a link to a download package. You do not have to use it if you do not want to, espacialy if you find me too "intrusive" in your work but consider it as a "gift" 
As I did work on that mod, I had already prepared a new background panel and the .css file that goes with it, so I modified your .css file to suit my needs and installed it on my board. The image is slightly larger and the icons placement is a little different as well. Your .css file has been modified to reflect this.
I send it by private mail because this is your work in the first place and it's yours to decide whether you want to change your package or not 
In the package, you'll find :
- various background images - to use them you have to
- rename the one you want to "fitting2.png" (according to your code)
- replace your .css file by the one I sent you - I only changed x and y positions for the icons and the fitting window size.
- a modified .css file - a source .psd file for the background image (play with low oppacity, high oppacity and background color masks to easily change the design)
My background image looks like this :
Fitting Panel
Once again, that is great work.
Thank you for picking-up this mod development, I sadly have to admit to myself that this was far too complicated for me 
Cheers
Nathan "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.05 12:46:00 -
[15] - Quote
very nice! i think i will use it but i haven't received the mail, can you send it by eve mail for me? |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.05 13:55:00 -
[16] - Quote
Resent  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.06 01:01:00 -
[17] - Quote
thanks got it this time, ill properly work it in to the next release (along with IGB integration)
also i have uploaded a new installer package as i found some issues with the last one, again :P
The current version has also been submitted for validation by the phpbb team again so hopefully i will get the all clear from them soon, if not ill be fixing anything they find before making anymore changes to the mod. |

Nathan WAKE
Osiris Entreprises OSE Fondation
8
|
Posted - 2012.01.06 08:32:00 -
[18] - Quote
Found a link provided by Steve Ronuken in one of my previous post regarding the IGb and fittings :
http://wiki.eveonline.com/en/wiki/Ship_DNA
If this can help... "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.08 10:57:00 -
[19] - Quote
Friendly bump to the top, because I want that mod 
But I'm still having problems with the archive. Anyone else having the same issue unpacking it ? "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.08 11:55:00 -
[20] - Quote
weird
i have uploaded another version, this one using 7zip
http://www.philderbeast.com/downloads/EFT_Fitting_mod_package.7z
let me know how that goes |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.08 12:29:00 -
[21] - Quote
Works great, thank you.
I'll install it on a fresh board and let you know how it works.
Let's say an hour from now. "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Khi3l
Babylon Knights Ares Protectiva
1
|
Posted - 2012.01.15 08:41:00 -
[22] - Quote
Hi,
Any chance you can adapt this for SMF ? |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.16 02:40:00 -
[23] - Quote
having never worked with SMF and there bbcode system, as well as no vested interest in keeping it running i honestly would not know, however the basic code to parse the text should be able to be moved over easily to SMF, or any other BB system you care to name
I wont be porting it over at this stage, unless there is a large demand for it and noone else is willing to do it, however im quite happy for you to take the code from this mod and apply it to SMF etc, and i will provide the database script for you as well to generate the database for future releases as well if you want. |

Balani
ELVE Industries Shadow of xXDEATHXx
2
|
Posted - 2012.01.17 13:10:00 -
[24] - Quote
i got an "Archiv destroyed" while decompress can someone confirm it? |

Nathan WAKE
Osiris Entreprises OSE Fondation
9
|
Posted - 2012.01.17 15:45:00 -
[25] - Quote
Balani wrote:i got an "Archiv destroyed" while decompress can someone confirm it?
Yes, same thing here with the link of the firts post. But try the link on the lats post of the first page, it worked for me  "I'm a very good housekeeper. Each time I get a divorce, I keep the house"
Zaza Gabor |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.18 09:00:00 -
[26] - Quote
i have added the second link to the first post now to make it easer to find ;) |

graves warship
United Kings Rolling Thunder.
0
|
Posted - 2012.01.19 03:53:00 -
[27] - Quote
done everything you said in the xml file the result is as follows :
http://imageshack.us/f/713/needswork.jpg/
little assistance ? |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.19 06:47:00 -
[28] - Quote
looks like you don't have the css file in place eve mail me the website url where i can see your forums and ill check if you would like. |

Khi3l
Babylon Knights Ares Protectiva
1
|
Posted - 2012.01.19 13:37:00 -
[29] - Quote
Philderbeast wrote:having never worked with SMF and there bbcode system, as well as no vested interest in keeping it running i honestly would not know, however the basic code to parse the text should be able to be moved over easily to SMF, or any other BB system you care to name
I wont be porting it over at this stage, unless there is a large demand for it and noone else is willing to do it, however im quite happy for you to take the code from this mod and apply it to SMF etc, and i will provide the database script for you as well to generate the database for future releases as well if you want.
Looking at your code and attempting to port this to SMF.
All smf bbcodes are in /Sources/Subs.php.
Looking in this file to see how i can integrate your stuff but it can take me quite a long time as i'm not really good at smf programming.
So, if anyone is interested on this, please feel free to do it, i'm sure many peoples want this on their board as SMF often used for corporation/alliance board.
Sorry for my english :) |

Philderbeast
M.I.M.M.S The Watchmen.
10
|
Posted - 2012.01.20 05:01:00 -
[30] - Quote
ahhh it looks like im possably missing an install setp, go in to your admin contol panel > styles > themes
find your theme (or all of them) and click refresh, this should start the mod working properly for you. |
| |
|
| Pages: [1] 2 3 :: one page |
| First page | Previous page | Next page | Last page |