High velocity / High density projectiles gun
Moderators: winston, another_commander
High velocity / High density projectiles gun
I am very surprised that there is no gun with high velocity/high density projectiles for Elite, what army calls kinetic energy high penetration weapon.
It will had a very low accuracy at long range but however high range (>25km) and high destructive power. It is a balistic weapon and as so, it takes a small while before the impact. For dog fight at less than 2-3km, it will be an interesting weapon, forcing to anticipate the movements of the opponent. Also a limited number of rounds will be available, something like 1000, basically small pellets of depleted uranium shot at speed of 2000 to 3000 m/s (we are in the future) using a multistage coilgun (thus taking part of the energy).
Consequently, at 2-5 km range, there will be 1-2 sec before the impact, giving a nice chance to the target.
It will had a very low accuracy at long range but however high range (>25km) and high destructive power. It is a balistic weapon and as so, it takes a small while before the impact. For dog fight at less than 2-3km, it will be an interesting weapon, forcing to anticipate the movements of the opponent. Also a limited number of rounds will be available, something like 1000, basically small pellets of depleted uranium shot at speed of 2000 to 3000 m/s (we are in the future) using a multistage coilgun (thus taking part of the energy).
Consequently, at 2-5 km range, there will be 1-2 sec before the impact, giving a nice chance to the target.
There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live.
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
Re: High velocity / High density projectiles gun
A kinetic weapon has been proposed before. The main problem is that the code really only knows lasers as primary weapons (if you don't count the twin plasma cannons, which are like lasers, but different). This means that a kinetic weapon isn't doable as an OXP. It needs code changes, and (1) we're in a feature freeze, and (2) I don't even know whether the developers would be willing to do it.
By the way: with a little effort (read: a huge effort) you can already use kinetic weapons in Oolite. You just have to find an asteroid and start to gently push it. Each gentle push increases its speed. But don't push too hard, because it could become dust (or you, for that matter). Admittedly, aiming is a little difficult, but if you hit, it'll be worth your while.
Works with cargopods as well, by the way (just be careful not to scoop them instead of pushing them).
By the way: with a little effort (read: a huge effort) you can already use kinetic weapons in Oolite. You just have to find an asteroid and start to gently push it. Each gentle push increases its speed. But don't push too hard, because it could become dust (or you, for that matter). Admittedly, aiming is a little difficult, but if you hit, it'll be worth your while.
Works with cargopods as well, by the way (just be careful not to scoop them instead of pushing them).
- Mauiby de Fug
- ---- E L I T E ----
- Posts: 847
- Joined: Tue Sep 07, 2010 2:23 pm
Re: High velocity / High density projectiles gun
Theoretically, it might be able to be done via an oxp...
Use the missile pylons/special trunk equipment key (these seem to my go-to methods for things in my head at the moment) to "fire" it. Use this to add them using add ships, and give them a spawn location and trajectory based upon the player ship's position at the moment of firing. Getting the kill registered to the player might take a bit of fiddling about with, though. Possibly using a combination of the ship.target property, and the shipDestroyedTarget() and/or shipCollided methods?
I don't know if this would work though, nor whether having a large number of such ship scripts running would slow down Oolite.
Use the missile pylons/special trunk equipment key (these seem to my go-to methods for things in my head at the moment) to "fire" it. Use this to add them using add ships, and give them a spawn location and trajectory based upon the player ship's position at the moment of firing. Getting the kill registered to the player might take a bit of fiddling about with, though. Possibly using a combination of the ship.target property, and the shipDestroyedTarget() and/or shipCollided methods?
I don't know if this would work though, nor whether having a large number of such ship scripts running would slow down Oolite.
Re: High velocity / High density projectiles gun
It could be done the same way as a plasma cannon, surely, firing metallic bits instead of glowing balls?
Re: High velocity / High density projectiles gun
Something like this at least as an NPC entity rather than a ship weapon?
It could be done, but as a weapon it will be lousy.
It could be done, but as a weapon it will be lousy.
My OXPs via Boxspace or from my Wiki pages .
Thargoid TV
Dropbox Referral Link
Thargoid TV
Dropbox Referral Link
Re: High velocity / High density projectiles gun
Is it not possible to do a missile with a straight trajectory and a high velocity ?
There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live.
- ClymAngus
- ---- E L I T E ----
- Posts: 2514
- Joined: Tue Jul 08, 2008 12:31 am
- Location: London England
- Contact:
Re: High velocity / High density projectiles gun
Well that depends. if you've got any variables then you might be able to alter them. If you have no variables (hard coded numerics, embedded in core code) then some ****er has to code an extraction that doesn't kill the program and make sure they don't clash with any existing variables.tonyhippy wrote:It could be done the same way as a plasma cannon, surely, firing metallic bits instead of glowing balls?
That's not specific to oolite I would mention, just my experience of "newfeature-itus". Talk is cheap! Code is god! Code take time, cut slack must!
Ok I like this, questions, that's cool. Take a look at the code for pylons that takes a one shot missile mount point and turns it into a 3 mount crapper missile mount point (no offence). Take that anger and turn it into action. Don't just stand there and shout it. Do something about it.Makandal wrote:Is it not possible to do a missile with a straight trajectory and a high velocity ?
Make something, be part of (make) the game instead of just being a player.
The rewards for creation are infinite.
- JensAyton
- Grand Admiral Emeritus
- Posts: 6657
- Joined: Sat Apr 02, 2005 2:43 pm
- Location: Sweden
- Contact:
Re: High velocity / High density projectiles gun
Not trivially. For a small, high-speed projectile you’d need to implement custom collision detection code in JavaScript, because the bullets would otherwise skip over the target.Makandal wrote:Is it not possible to do a missile with a straight trajectory and a high velocity ?
E-mail: [email protected]
- ClymAngus
- ---- E L I T E ----
- Posts: 2514
- Joined: Tue Jul 08, 2008 12:31 am
- Location: London England
- Contact:
Re: High velocity / High density projectiles gun
I stand very much corrected.Ahruman wrote:Not trivially. For a small, high-speed projectile you’d need to implement custom collision detection code in JavaScript, because the bullets would otherwise skip over the target.Makandal wrote:Is it not possible to do a missile with a straight trajectory and a high velocity ?
Re: High velocity / High density projectiles gun
It is do-able (it's roughly how the anti-missile system now in Armoury.oxp works) but it's a pain in the rear view.
But it's also next to useless unless you want to have a missile that's several times larger than your ship is. Or else actually hitting anything at more than point-blank range with a non-maneuvering projectile is of very low probability.
I know this, as yes I have experimented with it, and not just with the Goliath...
But it's also next to useless unless you want to have a missile that's several times larger than your ship is. Or else actually hitting anything at more than point-blank range with a non-maneuvering projectile is of very low probability.
I know this, as yes I have experimented with it, and not just with the Goliath...
My OXPs via Boxspace or from my Wiki pages .
Thargoid TV
Dropbox Referral Link
Thargoid TV
Dropbox Referral Link
Re: High velocity / High density projectiles gun
I'd settle for point-blank range only for when my laser/s are overheated.
(Just make the ammo for it reasonably cheap and plentiful per missile slot...)
(Just make the ammo for it reasonably cheap and plentiful per missile slot...)
Re: High velocity / High density projectiles gun
Definetly a low tech cheap weapon. But useful for laser overheat.
However, I understand this is a technically difficult solution.
However, I understand this is a technically difficult solution.
There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live.
- Cholmondely
- Archivist
- Posts: 5365
- Joined: Tue Jul 07, 2020 11:00 am
- Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
- Contact:
Re: High velocity / High density projectiles gun
Thargoid wrote: ↑Fri Feb 18, 2011 7:46 pmIt is do-able (it's roughly how the anti-missile system now in Armoury.oxp works) but it's a pain in the rear view.
But it's also next to useless unless you want to have a missile that's several times larger than your ship is. Or else actually hitting anything at more than point-blank range with a non-maneuvering projectile is of very low probability.
I know this, as yes I have experimented with it, and not just with the Goliath...
I've up a wiki page for the Goliath.oxp
cbr, can you tell me anything more about it? Or give details of your tweaks so I can include them on the page?
(Edited after page went up)
Goliath firing gigantic sugar-cubes! Is this an add-on to Smiv's Cup-of-Tea?
Comments wanted:
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?