Powered by Invision Power Board

 
  Pages: (30) « First ... 3 4 [5] 6 7 ... Last » ( Go to first unread post ) Reply to this topicStart new topicStart Poll

> PM2 Character Component Sheets
United States
Retriever II
Posted: Apr 25 2005, 06:05 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


QUOTE (Lightning @ Apr 25 2005, 06:53 PM)

what's the japanese name inthe list? (My tool does transparencies to my specifications so it would be less work than converting the alpha channel)


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
United States
Retriever II
Posted: Apr 25 2005, 06:06 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


Never mind, I found it by chance finally


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 06:08 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


=P Yeah, any Goomba seems to have Kuribo in the name
EDIT: By the way, what tool ? =P

This post has been edited by Lightning on Apr 25 2005, 06:08 PM


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
United States
Retriever II
Posted: Apr 25 2005, 06:09 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


I wrote my own.


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 06:13 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


What a coincidence, I'm working on my own tool too =) Not done yet, but it would've made the whole process a whole lot easier


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
United States
Retriever II
Posted: Apr 25 2005, 06:14 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


How far have you gotten on it?


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 06:19 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


QUOTE (Retriever II @ Apr 25 2005, 06:14 PM)
How far have you gotten on it?

CODE
int unpackColour(int type, int colour);

struct tplFileHeader // Very beginning of the file
{
long identifyingBytes; // 0x30AF2000
long textureCount; // Number of textures in the file
long headerSize; // 0x0000000C
};
struct tplOffsetHeader // Repeats tplFileHeader.textureCount times after it
{
long textureHeaderOffset; // Points to the tplTextureHeader
long paletteHeaderOffset; // Points to the tplPaletteHeader if there is one
};
struct tplTextureHeader // Pointed to by tplOffsetHeader.textureHeaderOffset
{
short height; // Height of the texture
short width; // Width of the texture
long type; // Format of the texture data stored
 /*//
  0  I4  (4 bit intensity, 8x8 tiles)
  1  I8  (8 bit intensity, 8x4 tiles)
  2 IA4  (4 bit intensity with 4 bit alpha, 8x4 tiles)
  3  IA8  (8 bit intensity with 8 bit alpha, 4x4 tiles)
  4  RGB565 (4x4 tiles)
  5  RGB5A3 (4x4 tiles - RGB5 if color value is negative and RGB4A3 otherwise.)
  6  RGBA8 (4x4 tiles in two cache lines - first is AR and second is GB)
  8  CI4  (4 bit color index, 8x8 tiles)
  9  CI8  (8 bit color index, 8x4 tiles)
  10  CI14X2 (14 bit color index, 4x4 tiles)
  14  CMP  (S3TC compressed, 2x2 blocks of 4x4 tiles)
 //*/
long textureOffset; // Points to image data
long wrapS;
long wrapT;
long minFilter;
long magFilter;
float lodBias;
char edgeLod;
char minLod;
char maxLod;
char unpacked;
};
struct tplPaletteHeader // Pointed to by tplOffsetHeader.paletteHeaderOffset
{
short paletteCount; // Number of palettes
char unpacked;
char pad;
long type; // Format of the palette
 /*//
   0  IA8
  1  RGB565
  2  RGB5A3 (RGB5 if color value is negative and RGB4A3 otherwise.)
 //*/
long palleteOffset; // Points to the palette data
};

int unpackColour(int type, int colour)
{
if(type == 0) // I4
 return colour | (colour << 0x04) | ((colour << 0x04) << 0x08)
  | (((colour << 0x04) << 0x08) << 0x10);
else if(type == 1) // I8
 return colour | (colour << 0x08) | ((colour << 0x08) << 0x10);
else if(type == 2) // IA4
 return ((colour & 0x0F) | ((colour & 0x0F) << 0x04)
  | (((colour & 0x0F) << 0x04) << 0x08))
  | (((colour & 0x0F) | ((colour & 0x0F) << 0x04)
  | (((colour & 0x0F) << 0x04) << 0x08)) << 0x08)
  | ((colour & 0xF0) << 0x18) | ((colour & 0xF0) << 0x14);
else if(type == 3) // IA8
 return ((colour & 0x00FF) | ((colour & 0x00FF) << 0x08)
  | ((colour & 0x00FF) << 0x10) | ((colour & 0xFF00) << 0x10));
else if(type == 4) // RGB565
 return (((colour & 0xF800) >> 0x08) | ((colour & 0xE000) >> 0x0D)
  | ((colour & 0x07E0) << 0x05) | ((colour & 0x0600) >> 0x01)
  | ((colour & 0x001F) << 0x13) | ((colour & 0x001C) << 0x0E))
  | 0xFF000000;
else if(type == 5) // RGB5A3
 if(colour & 0x8000) // RGB5
  return (((colour & 0x7C00) >> 0x07) | ((colour & 0x7000) >> 0x0C)
   | ((colour & 0x03E0) << 0x06) | ((colour & 0x0380) << 0x01)
   | ((colour & 0x001F) << 0x13) | ((colour & 0x001C) << 0x0E))
   | 0xFF000000;
 else // RGB4A3
  return ((colour & 0x0F00) >> 0x04) | ((colour & 0x0F00) >> 0x08)
   | ((colour & 0x00F0) << 0x08) | ((colour & 0x00F0) << 0x04)
   | ((colour & 0x000F) << 0x14) | ((colour & 0x000F) << 0x10)
   | ((colour & 0x7000) << 0x11) | ((colour & 0x7000) << 0x0D);
return 0;
}

That far. *huggles YAGCD*
Then stupid school ate my time and I haven't worked on it in weeks ;.;


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
United States
Retriever II
Posted: Apr 25 2005, 06:21 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


Have fun with the S3TC decompression


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 06:22 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


I will. xD


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
Canada
Random Talking Bush
Posted: Apr 25 2005, 06:26 PM
Quote Post


is cow!
[*]

Group Icon
Group: Members
Posts: 468
Member No.: 838
Joined: 18-February 05

Status: (0d) [--]


QUOTE (Parakarry @ Apr 25 2005, 06:37 PM)
Moko Moko I think was Ratton.

No, it's Lumpy. His name is Lumpy. I played Paper Mario 2 again and checked.

...Anyway, this Paper Mario 2 graphic ripping ish cool. cool2.gif


--------------------
user posted image
user posted imageuser posted image
user posted image
user posted image: I'll get back to whatever I was working on soon enough.
PMEmail PosterAOLYahooMSN
Top
United States
Parakarry
Posted: Apr 25 2005, 06:30 PM
Quote Post


Mail call!
[S][*][*][*][*]
[*][*][*][*][*]
[*]

Group Icon
Group: Site Staff
Posts: 30359
Member No.: 34
Joined: 13-October 03

Status: (0d) [--]


QUOTE (Random Talking Bush @ Apr 25 2005, 08:26 PM)
No, it's Lumpy. His name is Lumpy. I played Paper Mario 2 again and checked.

...Anyway, this Paper Mario 2 graphic ripping ish cool. cool2.gif

Or wasn't ratton his species name?


--------------------
user posted imageuser posted imageuser posted imageuser posted imageuser posted image
user posted image
DIAMOND FRIEND CODE:
2320 2606 8172
PMEmail PosterUsers Website
Top
United States
Boo Mansion
Posted: Apr 25 2005, 07:02 PM
Quote Post


Lawl M&L2 Petey
[*]

Group Icon
Group: Members
Posts: 4861
Member No.: 493
Joined: 1-July 04

Status: (0d) [--]


What about Merlon and the others? Anyone know his jap name?


--------------------
user posted imageuser posted imageuser posted image
user posted imageWon a Delichan award for stealing one.
user posted image Won a Luigi award for an awesome radio.
PMEmail PosterUsers WebsiteAOLYahooMSN
Top
Canada
Random Talking Bush
Posted: Apr 25 2005, 07:03 PM
Quote Post


is cow!
[*]

Group Icon
Group: Members
Posts: 468
Member No.: 838
Joined: 18-February 05

Status: (0d) [--]


QUOTE (Parakarry @ Apr 25 2005, 07:30 PM)
Or wasn't ratton his species name?

I'm not really sure, but you could be right about that. I'll have to play the game all over again to see if I can find out. (I already completed it, and started a second game)


--------------------
user posted image
user posted imageuser posted image
user posted image
user posted image: I'll get back to whatever I was working on soon enough.
PMEmail PosterAOLYahooMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 07:28 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


EDIT: Removed ;-;
Oh, no! Kay rah blah blah blah blah.

This post has been edited by Lightning on Apr 26 2005, 06:31 PM


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
Unspecified
Morshu McPhereson
Posted: Apr 25 2005, 07:31 PM
Quote Post


Who's got the sweetest disposition?
[*]

Group Icon
Group: Members
Posts: 20184
Member No.: 685
Joined: 23-November 04

Status: (0d) [--]


sad.gif I don't know how to build the magikoopa.
PMEmail Poster
Top
United States
Retriever II
Posted: Apr 25 2005, 07:33 PM
Quote Post


Catalyst
[H][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 18290
Member No.: 52
Joined: 13-October 03

Status: (0d) [--]


QUOTE (Magikoopa Mason @ Apr 25 2005, 08:31 PM)
sad.gif I don't know how to build the magikoopa.

Klobber was saying there was something weird about it. Like one of the pieces are not sized correctly


--------------------

PMEmail PosterUsers WebsiteICQAOLMSN
Top
Unspecified
Lightning
Posted: Apr 25 2005, 07:33 PM
Quote Post


Ignorance isn't stupidity but choosing to remain ignorant is
[*][*]

Group Icon
Group: IRC Operators
Posts: 6381
Member No.: 583
Joined: 31-August 04

Status: (0d) [--]


QUOTE (Magikoopa Mason @ Apr 25 2005, 07:31 PM)
sad.gif I don't know how to build the magikoopa.

Want one in your colour?


--------------------
click here to change my avatar. / gosh why are you even here lightning
hacker, n.an individual who enjoys learning computer system details and how to capitalize on his or her capabilities...not a criminal.
(from webster's new world hacker dictionary)
fedora linux 10
Fedora 10 Final!

Download today!
quality web comics (stories):
  1. girl genius: adventure! romance! mad science!
  2. punch an' pie: try a slice of life, then swallow.
  3. dresden codak: most interesting comic ever
quality web comics (one-shots):
  1. a softer world: truth and beauty bombs
  2. smbc: saturday morning breakfast cereal
  3. buttersafe: pictures and probably some words
"Religion is comparable to a childhood neurosis." - Sigmund Freud
“It is not by delusion, however exalted, that mankind can prosper, but only by unswerving courage in the pursuit of truth.” - Bertrand Russell
“To kill an error is as good a service as, and sometimes better than, the establishing of a new truth or fact.” - Charles Darwin
PMUsers WebsiteMSN
Top
Unspecified
Klobber
Posted: Apr 25 2005, 07:34 PM
Quote Post


hands off the yo-yo
[*][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 26140
Member No.: 61
Joined: 14-October 03

Status: (0d) [--]


Does anyone know what this is? Was it even in the original game?

Attached Image
Attached Image
PMEmail PosterAOL
Top
Unspecified
Morshu McPhereson
Posted: Apr 25 2005, 07:35 PM
Quote Post


Who's got the sweetest disposition?
[*]

Group Icon
Group: Members
Posts: 20184
Member No.: 685
Joined: 23-November 04

Status: (0d) [--]


QUOTE (Lightning @ Apr 25 2005, 07:33 PM)
Want one in your colour?

Yes please biggrin.gif
PMEmail Poster
Top
Unspecified
Klobber
Posted: Apr 25 2005, 07:36 PM
Quote Post


hands off the yo-yo
[*][*][*][*][*]
[*][*][*][*][*]


Group Icon
Group: Members
Posts: 26140
Member No.: 61
Joined: 14-October 03

Status: (0d) [--]


QUOTE (Retriever II @ Apr 25 2005, 07:33 PM)
Klobber was saying there was something weird about it. Like one of the pieces are not sized correctly

I'm going to attempt to build it again later. I might've messed up somehow, but it did seem a bit odd.
PMEmail PosterAOL
Top
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

  Topic Options Topic Options Pages: (30) « First ... 3 4 [5] 6 7 ... Last » Reply to this topicStart new topicStart Poll

 




[ Script Execution time: 0.0957 ]   [ 13 queries used ]   [ GZIP Enabled ]   [ Server Load: 1.24 ]