Author Topic: we need a simple pof editor  (Read 5044 times)

0 Members and 1 Guest are viewing this topic.

Offline Bobboau

  • Just a MODern kinda guy
    Just MODerately cool
    And MODest too
  • 213
we need a simple pof editor
we need a pof editor of some sort that we could use to make new pof data chuncks, I would like something that reads a text file and spits out a pof at the least, I would like something integrated into FRED at best, I tried to make a pof write function but I can't even figure out how to set up a new project properly to setup a basic read, stuf to structure, write from structure, program. and all things aside this sort of thing is sort of out of my depth
Bobboau, bringing you products that work... in theory
learn to use PCS
creator of the ProXimus Procedural Texture and Effect Generator
My latest build of PCS2, get it while it's hot!
PCS 2.0.3


DEUTERONOMY 22:11
Thou shalt not wear a garment of diverse sorts, [as] of woollen and linen together

 
we need a simple pof editor
What we really need is good 3d studio 4 exporter.

 

Offline Nico

  • Venom
    Parlez-vous Model Magician?
  • 212
we need a simple pof editor
3ds4? no thanx, planar mapping only doesn't fit me :P
a max converter would be great ( the format from the first 3dsmax, so anybody can use it ). Thinkings about it, a gmax converter would be the best.
Anyway, back on topic, that pof editor in fred would be interesting only to make a special variant of a ship within a single mission, saving room in the tbl... Or maybe I didn't understand what you meant.
SCREW CANON!

 
we need a simple pof editor
Actually we should note that down as something to add in to the mission format - the ability to store custom entries for certain ships. It would help a lot of people quite a bit I'm sure, and we could probably do it so it didn't interfere with the format otherwise.

 

Offline phreak

  • Gun Phreak
  • 211
  • -1
we need a simple pof editor
We could probably do something with POFView that came with fs2_public
Offically approved by Ebola Virus Man :wtf:
phreakscp - gtalk
phreak317#7583 - discord

 
we need a simple pof editor
Well I'm imagining we extend Fred so for each ship there's a dialog that let's you adjust hitpoints, shield hit points etc. - just a bit more versatility you know?

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
Quote
Originally posted by ##UnknownPlayer##
Well I'm imagining we extend Fred so for each ship there's a dialog that let's you adjust hitpoints, shield hit points etc. - just a bit more versatility you know?


That would require some editing of the source code for the exe as well. (At the least you'd need changes in the mission loader, not sure if all that code is shared between FRED2 and FS2.)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
Quote
Originally posted by PhReAk
We could probably do something with POFView that came with fs2_public


I have yet to see what POFView looks like or does. If it can show things like ModelView32 can (but presumably more accurately) then it might be interesting to see if someone could integrate code from it into PCS. And as I've mentioned before it would be nice to have just a plain text box you could type stuff into for making arbitrary chunks with data. I'm not sure how PCS handles the chunks it does do though so I know that would be beyond me. (Even if I could compile it, which I don't think I can.)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers

 

Offline RandomTiger

  • Senior Member
  • 211
we need a simple pof editor
I'd like to upgrade it to DX8 but Im not sure its even in cvs.

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
POFView is only in the CVS copy of the initial release. (freespace2_public) Nobody's worked on it and, AFAIK, nobody's bothered to compile it. I would take a look at it but I don't have VC6 and my VC4 wouldn't compile it. (Not that I'd expected it to, but I had to try. Way back when it first came out.)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers

 

Offline RandomTiger

  • Senior Member
  • 211
we need a simple pof editor
I've spent a fair bit of time in there already, it mainly uses the fs2 engine

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
Quote
Originally posted by RandomTiger
I've spent a fair bit of time in there already, it mainly uses the fs2 engine


Then it sounds like you may be able to integrate it with the fs2_open code, assuming the function calls it uses have remained the same. (even if the code they do/call is different.) Might need to do some makefile/project file editing to add in include files that didn't exist in the original version. Under Windows the case of the filenames shouldn't be a problem. (Unlike Linux/Cygwin.) The big thing would be to make sure any function calls POFView uses that did change (function name, return type, or arguments) is updated in the POFView source. Otherwise, it sounds like if FS2 uses DirectX 8 then POFView could use DX8. I'd like to know if POFView is as "picky" about geometry as FS2 is, and it sounds like it is if it uses the same graphics engine. That could be a quicker way of testing models then putting them in game. I really need to get VC6. :)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers

 

Offline aldo_14

  • Gunnery Control
  • 213
we need a simple pof editor
Quote
Originally posted by EdrickV


Then it sounds like you may be able to integrate it with the fs2_open code, assuming the function calls it uses have remained the same. (even if the code they do/call is different.) Might need to do some makefile/project file editing to add in include files that didn't exist in the original version. Under Windows the case of the filenames shouldn't be a problem. (Unlike Linux/Cygwin.) The big thing would be to make sure any function calls POFView uses that did change (function name, return type, or arguments) is updated in the POFView source. Otherwise, it sounds like if FS2 uses DirectX 8 then POFView could use DX8. I'd like to know if POFView is as "picky" about geometry as FS2 is, and it sounds like it is if it uses the same graphics engine. That could be a quicker way of testing models then putting them in game. I really need to get VC6. :)


Being able to see clipping problems in the viewer would be the  dogs b******s

 

Offline RandomTiger

  • Senior Member
  • 211
we need a simple pof editor
Um.. unless Im mistake not enough has changed for it not to work with fs2_open. Would need a bit of time to work with my DX8 upgrade but the beginnings are there because that were I did my test research for the full upgrade.

aldo_14, I would imagine problems would be more likely to show up in pofview if it used the same gfx system as FS2.exe.

It currently uses software, I would change it to use DX8.
Only problem is it might not work for voodoo owners.

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
Quote
Originally posted by RandomTiger

It currently uses software, I would change it to use DX8.
Only problem is it might not work for voodoo owners.


If you could get it to use DX8 or Glide (set in an options dialog or command line argument) or just DX8 and Software, that might work. The best of both worlds would be to be able to chose which graphics mode of the three to use. (DX8, Glide, Software)

I assume the software mode is what FRED2 uses? Even that could be better then ModelView32, especially if it can show things like subsystems, paths, etc. (ModelView32 can't do or show paths which is annoying 'cause doing them WYSIWYG would be much easier.)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers

 

Offline Vasudan Admiral

  • Member
  • 211
    • Twisted Infinities
we need a simple pof editor
yep, it displays the models exactly as fred does, which means it's probably has the same tolerance as fred.
i fairly recently got VC6, as i plan on doing programming in a few years. :)
if anyone wants a look at pof view, get it here: http://www.geocities.com/vasudanad/Pofview.zip
no guarentees it'l work or anything, it was my first go at VC6. hope it's useful somehow. it can basicly display everything fred can and a few more things like the boundbox etc. it has a heirarchy viewer but it can't edit ships in any way. :( it also can't open vp's and is a bit unstable, but it can open more than one ship at a time .
oh, and the rotate/move ships with the same controls as fred.
Get the 2014 Media VPs and report any bugs you find in them to the FSU Mantis so that we may squish them. || Blender to POF model conversion guide
Twisted Infinities

 

Offline RandomTiger

  • Senior Member
  • 211
we need a simple pof editor
Quote
Originally posted by EdrickV


If you could get it to use DX8 or Glide (set in an options dialog or command line argument) or just DX8 and Software, that might work. The best of both worlds would be to be able to chose which graphics mode of the three to use. (DX8, Glide, Software)


Does glide run in a window?
Even if it did I wouldnt be able to develope it cos I have a GF4.
Additionally glide makes me sick.

 

Offline Bobboau

  • Just a MODern kinda guy
    Just MODerately cool
    And MODest too
  • 213
we need a simple pof editor
make sure you have a pcx named helvig.pcx in the same directory as the exe or it'll run like **** (becase it keeps trying to load it every frame
Bobboau, bringing you products that work... in theory
learn to use PCS
creator of the ProXimus Procedural Texture and Effect Generator
My latest build of PCS2, get it while it's hot!
PCS 2.0.3


DEUTERONOMY 22:11
Thou shalt not wear a garment of diverse sorts, [as] of woollen and linen together

 

Offline Joey_21

  • 28
    • http://denebsystem.cjb.net/
we need a simple pof editor
Quote
Originally posted by Vasudan Admiral
yep, it displays the models exactly as fred does, which means it's probably has the same tolerance as fred.
i fairly recently got VC6, as i plan on doing programming in a few years. :)
if anyone wants a look at pof view, get it here: http://www.geocities.com/vasudanad/Pofview.zip
no guarentees it'l work or anything, it was my first go at VC6. hope it's useful somehow. it can basicly display everything fred can and a few more things like the boundbox etc. it has a heirarchy viewer but it can't edit ships in any way. :( it also can't open vp's and is a bit unstable, but it can open more than one ship at a time .
oh, and the rotate/move ships with the same controls as fred.


:yes: :yes: Good job.

I opened it up and gave it a try and I must say I'm a bit impressed with the visuals... I wonder why :v: never compiled and released it.

 

Offline EdrickV

  • Valued
  • 29
    • http://members.aol.com/HunterComputers
we need a simple pof editor
POFView was obviously intended for in house use, not for public distribution. :) They didn't release Cfilearchiver, Cryptstring, Fonttool, HelpEd, Nebedit, or Scramble either. :) (I'm not even sure what HelpEd was used for, if it was ever even used. The one I have that came in the Freespace2_public zip looks like some sort of very simple text editor for table files, but it won't actually open any files. Maybe a reboot will change that.)
Ground - "Let me help you out, you're clear to taxi any way you can, to any runway you see."

Mesh Gallery/Downloads:
http://members.aol.com/ArisKalzar/Gallery.html
Turreting 101:
http://members.aol.com/EdrickV/FS2/Turreting.html

http://members.aol.com/HunterComputers