Problems with movie pack.....

For all the help you need with Armagetron!
User avatar
Phytotron
Formerly Oscilloscope
Posts: 5042
Joined: Thu Jun 09, 2005 10:06 pm
Location: A site or situation, especially considered in regard to its surroundings.
Contact:

Post by Phytotron »

Oscilloscope wrote:And then I'm having an issue with one I tried to throw together earlier. Simple color designs, sized to the same wall and floor dimensions as in the default moviepack (e.g., 256x256 for the walls), saved them as png's, replaced them. But then when I launched the game they were all nearly black. I can tell the images are there, but it's as though the saturation and brightness were turned down to nearly zero, ya know.
So I'm not sure why this acted as a cure, but instead of making images from scratch, I opened the wall and floor png's in the default moviepack and just pasted those color designs on top, merged the layers, and saved. That worked. So that's why I'm wondering about whether the type of PNG is the issue.
User avatar
Phytotron
Formerly Oscilloscope
Posts: 5042
Joined: Thu Jun 09, 2005 10:06 pm
Location: A site or situation, especially considered in regard to its surroundings.
Contact:

Post by Phytotron »

OK, can someone just simply explain to me, break down, this code for me, so's I know exactly how it works:

Code: Select all

MOVIEPACK_HACK 0         bring the cycle models in the "right" position

#MOVIEPACK_FLOOR_RED .19   floor color (with moviepack)
#MOVIEPACK_FLOOR_GREEN .25 floor color (with moviepack)
#MOVIEPACK_FLOOR_BLUE .46  floor color (with moviepack)

MOVIEPACK_FLOOR_RED 1   floor color (with moviepack)
MOVIEPACK_FLOOR_GREEN 1 floor color (with moviepack)
MOVIEPACK_FLOOR_BLUE 1  floor color (with moviepack)

MOVIEPACK_WALL_STRETCH 4 relative length of wall segmnents

GRID_SIZE_MOVIEPACK 2    the grid size same for moviepack
What's with the two sets of RGB's? Why the different values in each set? Why don't they behave in the same manner as with cycles (e.g.; R-15, G-15, B-0 doesn't equal yellow)?

And lastly, when I, on my Mac, stick in a floor texture it shows up fine when set on 'textured plane.' But when someone with a Windows version uses the same floor.png, and the same settings.cfg, the floor is colored, apparently, by those floor color settings. So, it may be blue, or black, or whatever. What should the settings be so that the floor.png texture is left unaffected by the floor color? Or is there some other cause altogether?

And please, no condescension.
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Code: Select all

#MOVIEPACK_FLOOR_RED .19   floor color (with moviepack)
#MOVIEPACK_FLOOR_GREEN .25 floor color (with moviepack)
#MOVIEPACK_FLOOR_BLUE .46  floor color (with moviepack)
#es are comments for the rest of the line.

Code: Select all

MOVIEPACK_FLOOR_RED 1   floor color (with moviepack)
MOVIEPACK_FLOOR_GREEN 1 floor color (with moviepack)
MOVIEPACK_FLOOR_BLUE 1  floor color (with moviepack)
Multiplied with the floor texture by OpenGL.

Code: Select all

MOVIEPACK_WALL_STRETCH 4 relative length of wall segmnents
Wall texture is stretched this far horizontally. If you want square texels (texture pixels), use width/height.

Code: Select all

GRID_SIZE_MOVIEPACK 2    the grid size same for moviepack
Same as above, but for both dimensions on the floor.
Oscilloscope wrote:What should the settings be so that the floor.png texture is left unaffected by the floor color?
The identity, 1.
ˌɑrməˈɡɛˌtrɑn
User avatar
Fonkay
Match Winner
Posts: 776
Joined: Fri Jul 08, 2005 4:24 pm
Location: eh?
Contact:

Post by Fonkay »

Jonathan wrote:
Oscilloscope wrote:What should the settings be so that the floor.png texture is left unaffected by the floor color?
The identity, 1.
If I set all the numbers at 1, it still comes out blue. Why?
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Because the texture is?
ˌɑrməˈɡɛˌtrɑn
User avatar
Fonkay
Match Winner
Posts: 776
Joined: Fri Jul 08, 2005 4:24 pm
Location: eh?
Contact:

Post by Fonkay »

This is the texture.
And what it looks like on my computer.
Attachments
floor.png
Screenshot (sky is fixed now)
Screenshot (sky is fixed now)
User avatar
Lucifer
Project Developer
Posts: 8743
Joined: Sun Aug 15, 2004 3:32 pm
Location: Republic of Texas

Post by Lucifer »

What version of the client are you using? The blue moviepack floor bug was fixed in 0.2.7.1, but present in 0.2.7.0
Check out my YouTube channel: https://youtube.com/@davefancella?si=H--oCK3k_dQ1laDN

Be the devil's own, Lucifer's my name.
- Iron Maiden
User avatar
Jonathan
A Brave Victim
Posts: 3391
Joined: Thu Feb 03, 2005 12:50 am
Location: Not really lurking anymore

Post by Jonathan »

Did you edit the correct FLOOR_* or MOVIEPACK_FLOOR_*? Could there be something in another config file? (hint: try the console)

Edit: Yes, 0.2.7.0 is likely.
ˌɑrməˈɡɛˌtrɑn
User avatar
Fonkay
Match Winner
Posts: 776
Joined: Fri Jul 08, 2005 4:24 pm
Location: eh?
Contact:

Post by Fonkay »

I have 2.7.0 (I think) But I've also tried it on my 2.8, with no luck there either.

Jonathan wrote:Did you edit the correct FLOOR_* or MOVIEPACK_FLOOR_*? Could there be something in another config file? (hint: try the console)

Edit: Yes, 0.2.7.0 is likely.
I don't know what that means.... I'm computer dumb, which is why I'm asking these questions.
User avatar
Fonkay
Match Winner
Posts: 776
Joined: Fri Jul 08, 2005 4:24 pm
Location: eh?
Contact:

Post by Fonkay »

Ok, forget what I just said. The grass didn't work with 0.2.8, but this new moviepack works fine. Apparently I have the older version. who knew?

Thank you very much Luci for your help. You're a doll. :D
User avatar
TiTnAsS
Match Winner
Posts: 655
Joined: Sun Jan 23, 2005 2:44 am
Location: Reppin the Bay Area!

Post by TiTnAsS »

side note: I really like that movie pack witht he water, the mirror makes it look like a pool...lol
Damn, it sure has been a while!
User avatar
Phytotron
Formerly Oscilloscope
Posts: 5042
Joined: Thu Jun 09, 2005 10:06 pm
Location: A site or situation, especially considered in regard to its surroundings.
Contact:

Post by Phytotron »

Just a note on Fonkay's screenshots, if anyone's wondering: I stole those images from a GLTron artpack called Sakura and reworked them as necessary to fit with AA. (I did transfer the original ReadMe to it, for credit.)

Side note: Me thinks the AA developers should get together with GLTron (since it's open source too), and combine the gameplay of AA with the graphics of GLTron, which are—without knocking AA—a lot nicer, and fancier in the way they do it. Plus, even though they're better graphics, I actually get a better framerate with everything on in GLTron than with everything off in AA (though I know more than just the graphics alone can affect fps). Two cents.
User avatar
Revan
Core Dumper
Posts: 134
Joined: Mon Aug 01, 2005 11:30 am
Location: War Zone.
Contact:

Post by Revan »

Tank Program wrote:In the 'Misc Stuff' settings menu, did you enable the moviepack?
\

Sorry for not responding...

Yes I did enable the movie pack I even maually went into the console commands and put moviepack = 1

I'll try your sugestions after I'm done reading them...:D

Also I did post this topic originally with 2.7.1 but now I have upgraded to 2.8 beta 2(HORRIBLE ON CHRISTIES SERVER!!)
User avatar
Z-Man
God & Project Admin
Posts: 11710
Joined: Sun Jan 23, 2005 6:01 pm
Location: Cologne
Contact:

Post by Z-Man »

Revan wrote: now I have upgraded to 2.8 beta 2(HORRIBLE ON CHRISTIES SERVER!!)
You'll have to be a teeeny bit more specific if you want us to do anything about it. Best is a recording, together with screenshots of the situations that were horrible.
User avatar
Phytotron
Formerly Oscilloscope
Posts: 5042
Joined: Thu Jun 09, 2005 10:06 pm
Location: A site or situation, especially considered in regard to its surroundings.
Contact:

Post by Phytotron »

It could be that Revan simply has the textures turned off. Though, the shape of the cycle would still be apparent.... I dunno.

Oh, and also, didn't I read that 0.2.8[yadda yadda] ships sans moviepack?
Post Reply