Author Topic: screenshot ?  (Read 1734 times)

0 Members and 1 Guest are viewing this topic.

 HI ,
 - I just want to know which key to use the keyboard to take screenshots in Freespace 2 SCP??
Thank you in advance for your help, BYE.
                                                                                        :yes:     :v-old:

 

Offline Jeff Vader

  • The Back of the Hero!
  • Moderator
  • 212
  • Bwahaha
"Prt Sc" or something like that.

Screenshots are saved in tga format to \freespace2\screenshots\ .
23:40 < achillion > EveningTea: ass
23:40 < achillion > wait no
23:40 < achillion > evilbagel: ass
23:40 < EveningTea > ?
23:40 < achillion > 2-letter tab complete failure

14:08 < achillion > there's too much talk of butts and dongs in here
14:08 < achillion > the level of discourse has really plummeted
14:08 < achillion > Let's talk about politics instead
14:08 <@The_E > butts and dongs are part of #hard-light's brand now
14:08 <@The_E > well
14:08 <@The_E > EvilBagel's brand, at least

01:06 < T-Rog > welp
01:07 < T-Rog > I've got to take some very strong antibiotics
01:07 < achillion > penis infection?
01:08 < T-Rog > Chlamydia
01:08 < achillion > O.o
01:09 < achillion > well
01:09 < achillion > I guess that happens
01:09 < T-Rog > at least it's curable
01:09 < achillion > yeah
01:10 < T-Rog > I take it you weren't actually expecting it to be a penis infection
01:10 < achillion > I was not

14:04 < achillion > Sometimes the way to simplify is to just have a habit and not think about it too much
14:05 < achillion > until stuff explodes
14:05 < achillion > then you start thinking about it

22:16 < T-Rog > I don't know how my gf would feel about Jewish conspiracy porn

15:41 <-INFO > EveningTea [[email protected]] has joined #hard-light
15:47 < EvilBagel> butt
15:51 < Achillion> yes
15:53 <-INFO > EveningTea [[email protected]] has quit [Quit: http://www.mibbit.com ajax IRC Client]

18:53 < Achillion> Dicks are fun

21:41 < MatthTheGeek> you can't spell assassin without two asses

20:05 < sigtau> i'm mining titcoins from now on

00:31 < oldlaptop> Drunken antisocial educated freezing hicks with good Internet == Finland stereotype

11:46 <-INFO > Kobrar [[email protected]] has joined #hard-light
11:50 < achtung> Surely you've heard of DVDA
11:50 < achtung> Double Vaginal Double ANal
11:51 < Kobrar> ...
11:51 <-INFO > Kobrar [[email protected]] has left #hard-light []

 
Or, if you have a French keyboard, "Impr(imer) Écr(an)" or something similar.

 

Offline Thaeris

  • Can take his lumps
  • 211
  • Away in Limbo
By the way, why is the SCP still using .tga as an output? .png would be a much better format.
"trolls are clearly social rejects and therefore should be isolated from society, or perhaps impaled."

-Nuke



"Look on the bright side, how many release dates have been given for Doomsday, and it still isn't out yet.

It's the Duke Nukem Forever of prophecies..."


"Jesus saves.

Everyone else takes normal damage.
"

-Flipside

"pirating software is a lesser evil than stealing but its still evil. but since i pride myself for being evil, almost anything is fair game."


"i never understood why women get the creeps so ****ing easily. i mean most serial killers act perfectly normal, until they kill you."


-Nuke

 

Offline The E

  • He's Ebeneezer Goode
  • Moderator
  • 213
  • Nothing personal, just tech support.
    • Steam
    • Twitter
Because noone was bothered enough by it to change the code to do png output.
If I'm just aching this can't go on
I came from chasing dreams to feel alone
There must be changes, miss to feel strong
I really need lifе to touch me
--Evergrey, Where August Mourns

 

Offline Zacam

  • Magnificent Bastard
  • Administrator
  • 211
  • I go Sledge-O-Matic on Spammers
    • Steam
    • Twitter
    • ModDB Feature

Well, except for me, but it just keeps slipping around.
Report MediaVP issues, now on the MediaVP Mantis! Read all about it Here!
Talk with the community on Discord
"If you can keep a level head in all this confusion, you just don't understand the situation"

¤[D+¬>

[08/01 16:53:11] <sigtau> EveningTea: I have decided that I am a 32-bit registerkin.  Pronouns are eax, ebx, ecx, edx.
[08/01 16:53:31] <EveningTea> dhauidahh
[08/01 16:53:32] <EveningTea> sak
[08/01 16:53:40] * EveningTea froths at the mouth
[08/01 16:53:40] <sigtau> i broke him, boys

 

Offline Fury

  • The Curmudgeon
  • 213
I don't see any advantages in changing screenshot dumping from tga to png. With tga you get fast image dumping to a file, with png you get smaller file sizes. From image quality perspective they're the same. I'd rather keep faster dumping and so tga wins. Why the difference in speed? Tga format is simpler than png and png adds compression on top of it. FSO is still single-threaded monster, making the compression really slow. To compensate you'd either have to use lowest compression setting, but then you'd have zero advantages over tga. Or create external multi-thread capable process to handle the image dumping to a file. Sounds like a lot of work for questionable gain. Even with max png compression setting, jpg files would still a lot smaller. So most random screenshots would still be better off as jpg than png, requiring you to convert the screenshots anyway.
« Last Edit: July 02, 2011, 12:58:30 am by Fury »

 

Offline Herra Tohtori

  • The Academic
  • 211
  • Bad command or file name
Well, PNG is more compatible. If you specify compression level 0, the resulting PNG is uncompressed and the image dump should take the same resources depending on overhead, but quick test with GIMP by saving a 512^2 image with zero level compression as PNG, and non-RLE TGA yielded following results:

PNG: 788 373 bytes
TGA: 786 476 bytes

The PNG has a tiny bit more overhead, but difference is negligible. Actually I don't know if the TGA takes more processing to encode as the standard start point is bottom left; don't know what start point PNG generally uses. If the framebuffer info starts from top left, then it might be faster to dump it straight to PNG without need to use bottom left as starting point for TGA compatibility reasons. How does this work, what corner does framebuffer info start from and what corner does PNG use as starting point?


The advantages of PNG are remarkable for compatibility (preview option), although ideally I would offer users option to use legacy TGA and new PNG output. POossibly even option to force compression level for the PNG for those with monster CPU's, although that would, like Fury said, ideally require multi-core support as PNG compression of large files can take quite a while.

But, like said, using PNG with level zero compression (none) wouldn't increase the resources used, so I think that should be the default setting.
There are three things that last forever: Abort, Retry, Fail - and the greatest of these is Fail.

 

Offline The E

  • He's Ebeneezer Goode
  • Moderator
  • 213
  • Nothing personal, just tech support.
    • Steam
    • Twitter
Framebuffers are filled from top left.

However, for the purposes of dumping the frame to an image, it doesn't matter. In order to do a framedump, the texture is copied, then handed over to the tga encoder, at which point it's immaterial which bytes of the image were generated first.
If I'm just aching this can't go on
I came from chasing dreams to feel alone
There must be changes, miss to feel strong
I really need lifе to touch me
--Evergrey, Where August Mourns

 

Offline Fury

  • The Curmudgeon
  • 213
HerraTohtori, you forget that users are stupid. If png with zero compression would be used, how many screenshots you'd expect end up getting uploaded as-is since users don't know better? At least when they're tga, users have to compress to jpg or png them prior to upload if they want people to view them. If png would be used, you'd have to have at least default compression level (which is afaik 6) to avoid people derping around and uploading screenshots that are practically uncompressed.

 

Offline Zacam

  • Magnificent Bastard
  • Administrator
  • 211
  • I go Sledge-O-Matic on Spammers
    • Steam
    • Twitter
    • ModDB Feature

And it's all idle speculation anyway until the actual code is written and available for testing, so rather than just making assumptions as to which is more or less efficient or what have you, let's just leave it at:

It is planned to test whether or not .PNG as a screenshot saving format is a viable option. Considerations for being "viable" are (and this is just my list):
  • Must process no slower than the current screenshot saving code (preferable that it removes the "stutter")
  • Must do so with accuracy
  • Optional: May provide some means to be able to set a level of compression (either in-game or by flag).
    Failing that, the compression levels will be tested against the above two criteria and the one that satisfies them the most wins as the default level.
Report MediaVP issues, now on the MediaVP Mantis! Read all about it Here!
Talk with the community on Discord
"If you can keep a level head in all this confusion, you just don't understand the situation"

¤[D+¬>

[08/01 16:53:11] <sigtau> EveningTea: I have decided that I am a 32-bit registerkin.  Pronouns are eax, ebx, ecx, edx.
[08/01 16:53:31] <EveningTea> dhauidahh
[08/01 16:53:32] <EveningTea> sak
[08/01 16:53:40] * EveningTea froths at the mouth
[08/01 16:53:40] <sigtau> i broke him, boys