• Home
  • Index
  • Search
  • Download
  • Server Rules
  • House Roleplay Laws
  • Player Utilities
  • Player Help
  • Forum Utilities
  • Returning Player?
  • Toggle Sidebar
Interactive Nav-Map
Tutorials
New Wiki
ID reference
Restart reference
Players Online
Player Activity
Faction Activity
Player Base Status
Discord Help Channel
DarkStat
Server public configs
POB Administration
Missing Powerplant
Stuck in Connecticut
Account Banned
Lost Ship/Account
POB Restoration
Disconnected
Member List
Forum Stats
Show Team
View New Posts
View Today's Posts
Calendar
Help
Archive Mode




Hi there Guest,  
Existing user?   Sign in    Create account
Login
Username:
Password: Lost Password?
 
  Discovery Gaming Community Discovery Development Discovery Mod General Discussion
« Previous 1 … 176 177 178 179 180 … 546 Next »
ship dimensions

Server Time (24h)

Players Online

Active Events - Scoreboard

Latest activity

Pages (2): 1 2 Next »
ship dimensions
Offline Ursus
07-17-2012, 06:56 AM,
#1
Member
Posts: 3,853
Threads: 249
Joined: Oct 2011

Is the data for length X width X height available anywhere in a form that's easy to access? In the past I have used unarmored hull + largest normal shield to determine mass, but I would like to supplement that data with dimensions to determine actual "presence"

Discovery 24/7 Negotiating Tactics:

[Image: smuggler-threat-0-1.jpg]
Reply  
Offline AeternusDoleo
07-17-2012, 07:53 AM,
#2
Ex-Developer
Posts: 5,744
Threads: 149
Joined: Nov 2009

Not to my knowledge. You can pull the information out of the model files using FLTool, but the values might not entirely be accurate. Take the AI Drone for instance - those annoying antennas to the side make the visual model a lot larger, but aren't hitboxed.

Wide awake in a world that sleeps, enduring thoughts, enduring scenes. The knowledge of what is yet to come.
From a time when all seems lost, from a dead man to a world, without restraint, unafraid and free.


Mostly retired Discovery member. May still visit from time to time.
Reply  
Offline Ursus
07-17-2012, 02:22 PM,
#3
Member
Posts: 3,853
Threads: 249
Joined: Oct 2011

Maybe dimensions of the hit box would be better

Discovery 24/7 Negotiating Tactics:

[Image: smuggler-threat-0-1.jpg]
Reply  
Offline Ursus
09-06-2012, 08:10 PM, (This post was last modified: 09-06-2012, 08:12 PM by Ursus.)
#4
Member
Posts: 3,853
Threads: 249
Joined: Oct 2011

Researching into this some more and it seems that this data can be extracted from the hardpoints in the CMP. There's at least one windows prog that will dump hardpoint location from a CMP into a text file, and also a Perl module that will create an array of them, could probably do it directly once I learn the CMP encoding.

However the Freelancer models are not consistent in terms of hardpoint types or placement. Like, there is usually a forward headlight on the nose that is useful for establishing the length of a model, but some ships dont have that hardpoint, or its inside the ship and not on the nose, etc. Similar problems with thrusters make it impossible to establish nose-to-tail length consistently. Wing span and ship height are even more impossible.

Any thoughts on establishing dummy hardpoints in the models for front, rear, top, bottom, and left/right? Once the data is in a form that can be extracted, it can be used to model things relative ship size, which can be used for things like ship classification, balance comparison, and so on. If FLhook can also read this data then some of it can automated in-game too--"ship too wide for docking ring" based on actual model data, that kind of thing.

Discovery 24/7 Negotiating Tactics:

[Image: smuggler-threat-0-1.jpg]
Reply  
Offline AeternusDoleo
09-06-2012, 11:00 PM,
#5
Ex-Developer
Posts: 5,744
Threads: 149
Joined: Nov 2009

Hardpoint data won't really help, since the hardpoints can be outside of the model (HPMount on big ships for instance, is usually below and in front of the ship). The only right way to do this, is to extract the data from the SUR file directly, using the min/max X, Y and Z coords of the various vertices in the file. Good luck getting that done however, I have no idea how to pull it off. But if you can, it gives you a box wrap of the model's hitbox.

Wide awake in a world that sleeps, enduring thoughts, enduring scenes. The knowledge of what is yet to come.
From a time when all seems lost, from a dead man to a world, without restraint, unafraid and free.


Mostly retired Discovery member. May still visit from time to time.
Reply  
Offline Champ
09-06-2012, 11:14 PM,
#6
Member
Posts: 1,499
Threads: 152
Joined: Dec 2009

Personally, I just look at the person in the cockpit for an idea of size. When I first did this, even the Starflier was bigger than I expected.

You could take a photo and estimate the ship using the pilot graphically, perhaps? It's not a neat or precise solution, but it'll probably get you numbers indicative of an approximation of size and such.

[Image: Champ17.gif]
Reply  
Offline Jinx
09-06-2012, 11:16 PM,
#7
skipasmiður
Posts: 7,685
Threads: 313
Joined: Sep 2007

harald belker - DA designer left some referrence data

the bretonian destroyer is 80 meters long - from there, we can easily measure each ships dimensions.

[Image: just_a_signature_by_sjrarj-d63yjsx.png]
Shipdesigns made for DiscoveryGC
Reply  
Offline Ursus
09-07-2012, 12:01 AM, (This post was last modified: 09-07-2012, 04:35 PM by Ursus.)
#8
Member
Posts: 3,853
Threads: 249
Joined: Oct 2011

' Wrote:Hardpoint data won't really help, since the hardpoints can be outside of the model (HPMount on big ships for instance, is usually below and in front of the ship).
That's why I suggested creating dummy hardpoints specifically for measurement. Those can be placed where they make sense for the model, and we are not overloading some other hardpoint so we know they are accurate.

Here is an example using the Bret dessie. One new hardpoint called dummyFront that is aligned to the nose and another called dummyRear that is aligned to the tail.

[Image: dessie-dummyFront-hardpoint.png]

[Image: dessie-dummyRear-hardpoint.png]

The off-sets for the hardpoints show 70m to the tail and 55m to the nose, so we are able to determine right away that the ship is 125m long. Similar hardpoints can provide width and height. This can then be used programmatically and it is good enough for almost everything and requires nothing more than arithmetic.

Also the data is in three dimensions so we can make a rudimentary polygon or ovoid if we need to calculate rudimentary volume. That is one-line calculation, a lot easier than calculating volume from triangles which is what the sur provides.

I am willing to do the dirty work of going through and add these to each model.

edit--resized original pics, browser cache may show old ones

Discovery 24/7 Negotiating Tactics:

[Image: smuggler-threat-0-1.jpg]
Reply  
Offline Ursus
09-07-2012, 04:38 PM, (This post was last modified: 09-07-2012, 04:40 PM by Ursus.)
#9
Member
Posts: 3,853
Threads: 249
Joined: Oct 2011

' Wrote:Also the data is in three dimensions so we can make a rudimentary polygon

example using all 6 extreme points to the bret dessie

front by the nose = 0, -5, -55
rear by the flying tail = 0, 10, 70
top heavy turret platform = 0, 14.5, 47.5
bottom under the chin = 0, -52.5, -45
left by the lower side turret = -31.5, -41, -42.5
right by the opposite turret = 31.5, -41, -42.5

Then added the vertices to MS3D and created triangles

[Image: dessie-dummy-hardpoints.png]

Pretty good representation of the ship's "presence" in space.

Discovery 24/7 Negotiating Tactics:

[Image: smuggler-threat-0-1.jpg]
Reply  
Offline Govedo13
09-07-2012, 05:22 PM, (This post was last modified: 09-07-2012, 05:23 PM by Govedo13.)
#10
Member
Posts: 4,663
Threads: 97
Joined: Jul 2009

Ursus you might consider joining the Dev team,this would help a lot in balancing I hope. Really great work.

€œ
(10-09-2013, 10:51 AM)Knjaz Wrote: Official faction players that are often accused of elitism, never deploy them and have those weird, immersion killing "fair fight/dueling" suicidal hobbies. (yes, i've seen enough of those lolduels, where house military with overwhelming force on the field willingly loses a pilot in a duel. ffs.)

Reply  
Pages (2): 1 2 Next »


  • View a Printable Version
  • Subscribe to this thread


Users browsing this thread:
1 Guest(s)



Powered By MyBB, © 2002-2025 MyBB Group. Theme © 2014 iAndrew & DiscoveryGC
  • Contact Us
  •  Lite mode
Linear Mode
Threaded Mode