主题 : 【求助】DC里常见文件的格式!
级别: 模拟专家
UID: 79366
精华: 0
发帖: 295
威望: 0 星
金钱: 1846 浮游币
贡献值: 0 点
好评度: 75 点
人气: 0 点
在线时间: 10(时)
注册时间: 2005-11-19
最后登录: 2014-04-25
楼主  发表于: 2006-03-23 20:15

【求助】DC里常见文件的格式!

光盘里的文件都是什么格式的?都是什么功能
级别: 模拟之星
UID: 74308
精华: 1
发帖: 449
威望: 1 星
金钱: 2937 浮游币
贡献值: 0 点
好评度: 1145 点
人气: 0 点
在线时间: 103(时)
注册时间: 2005-10-24
最后登录: 2020-06-23
沙发  发表于: 2006-03-23 20:23

忘记是从那个网站上弄的,反正电脑上保存这。

向原作者道歉



acx       多个adx音频的联合 (类式于afs格式)

adx       CRI 压缩格式音频

afs       多个adx 音频的联接

als       adx 文件列表

bin       DC的可执行文件(大家都很熟悉了!)

elf       DC的可执行和可联接格式dc elf file (executable and linkable format)我也不知道什么意思

nja       ninja model file

pvm     dreamcast model files?? (power vr model)

pvr       dreamcast texture files (power vr texture format)贴图纹理

san       picture file by CRI图型文件

sfa       CRI sofdec audio软编码音频

sfd       CRI sofdec movie and audio multiplexed file软编码动画

sfv       cri mpeg sofdec video for dreamcast视频文件

spr       sprite file (contains pvr)贴图纹理

str       streaming file (for streaming movie or audio)动画

tb       sega tone bank file (for midi stuff)音乐
本帖最近评分记录:
  • 金钱:3(YZB)
  • 最喜欢的游戏:FC 超级马力,MD 幽游白书(魔强统一战),DC 斑鸠.最不喜欢的游戏:所有RPG游戏和网络游戏.
    SF3.3,修炼中~~~~
    YZB
    无广告位,看帖子签名
    级别: 超级版主

    UID: 12451
    精华: 6
    发帖: 19014
    威望: 173 星
    金钱: 51 浮游币
    贡献值: 9859 点
    好评度: 54632 点
    人气: 4322 点
    在线时间: 18745(时)
    注册时间: 2004-10-02
    最后登录: 2024-05-02
    板凳  发表于: 2006-03-23 20:24

    呵呵,那站我也看过了`

    地址忘记了


    -------------------------
    acx file format
    -------------------------
    0        8        n = number of seperate adx files in acx file
    8        4        offset from start of file of adx file
    12        4        size of adx file
    etc etc
    ...
    n*8 + 8            adx files



    -------------------------
    adx file format (VERY similar to an sfa file except for offset 16)
    -------------------------
    0        1        0x80 (some kind of magic number maybe??)
    1-3        3        off = offset after this number of the audio data
    4        4        0x03120402
    8        4        sampling rate (in hertz)
    12        4        offset withing file of audio data?!?!?!?!?!
    16        4        0x01F40300
    20        4        0 or 1 (maybe a loop flag??)
    24        4        0 or 1 (maybe a loop flag??)
    28        4        start of loop?    (only if first loop flag is 1)
    32        4        end of loop?    (only if first loop flag is 1)
    36        4        start of loop?    (only if first loop flag is 1)
    40        4        end of loop?    (only if first loop flag is 1)
    ...
    off-6    6        (c)CRI
    off        ?        audio data


    -------------------------
    afs file format
    -------------------------
    0        4        AFS(0x00)
    4        4        n = number of seperate adx files in the afs file
    8        4        offset from start of file of adx file
    12        4        size of adx file
    etc etc
    ...
    n*8 + 8            adx files


    -------------------
    pvr file format
    -------------------

    [OPTIONAL GBIX (global index) HEADER]

    -------------------------
    offset    length    description
    --------------------------
    0-3        4        "GBIX" (ascii text)
    4-7        4        4 byte number for length of GBIX header from offset 8 onwards
    8-11    4        global index
    till end of GBIX length (offset 4-7) is filled with spaces (0x20)


    [REST OF FILE]
    -------------------------
    offset    length    description
    --------------------------
    0-3        4        "PVRT" (ascii text)
    4-7        4        length of rest of file in bytes (not counting these 4 bytes)
    8-11    4        type of pvr file (see below)
    12-13    2        width
    14-15    2        height
    16-end    ?        texture data


    [TYPE]
    there are 4 bytes set aside for the pvr type. it seems that only the first
    2 bytes are actually being used at the moment though.
    the first 2 bytes are as follows:

    byte 1 (pixel format):
    0x00 = ARGB1555 (bilevel translucent alpha 0,255)
    0x01 = RGB565 (no translucent)
    0x02 = ARGB4444 (translucent alpha 0-255)
    all other values N/A

    byte 2:
    0x00 = N/A
    0x01 = TWIDDLD
    0x02 = MIPMAP & TWIDDLD
    0x03 = VQ
    0x04 = VQ & MIPMAP
    0x09 = RECTANGLE
    0x10 = SMALL_VQ
    0x11 = SMALL_VQ & MIPMAP

    -------------------------
    san file format
    -------------------------
    0        5        'SAN 8'
    5        3        0x000000
    8        4        'YU0M'
    12        4        1
    16        4        width in pixels
    20        4        height in pixels
    24        4        length of pixel data
    28        4        length of pixel data
    32        4        0
    36        4        1
    40        16        0
    56        4        'DATA'
    60        4        length of pixel data



    -------------------------
    sfa file format (VERY similar to an adx file except for offset 16)
    -------------------------
    0        1        0x80
    1        3        off = offset after this number of compressed audio data
    4        3        0x031204
    7        1        number of channels (1=mono 2=stereo)
    8        4        sampling rate (in hertz)
    12        4        offset within file of audio data?!?!?!?!?!
    16        4        0x01F40500
    20        4        0 or 1 (maybe a loop flag??)
    24        4        0 or 1 (maybe a loop flag??)
    28        4        start of loop?    (only if first loop flag is 1)
    32        4        end of loop?    (only if first loop flag is 1)
    36        4        start of loop?    (only if first loop flag is 1)
    40        4        end of loop?    (only if first loop flag is 1)
    ...
    off-6    6        (c)CRI
    off        ?        audio data

    -------------------------
    sfd file format - v1.01b
    (this format changes depending on the version of the encoder used to encode it...)
    -------------------------

    [HEADER]

    0        32        'Sofdec Stream '
    32        128        comment string
    160        12        name of this file! (.sfd) (if filename is less than 8 chars it is padded with spaces)
    172        4        year it was made in (in ascii)
    176        2        month is was made in (in ascii)
    178        2        day it was made on (in ascii)
    180        4        time it was made (in ascii)
    184        488  &nbs
    [ 此帖被YZB在2009-03-31 10:57重新编辑 ]
    级别: 模拟小生
    UID: 116520
    精华: 0
    发帖: 24
    威望: 0 星
    金钱: 2568 浮游币
    贡献值: 1 点
    好评度: 64 点
    人气: 0 点
    在线时间: 115(时)
    注册时间: 2006-03-23
    最后登录: 2023-01-06
    地板  发表于: 2006-03-23 21:01

    YZB
    无广告位,看帖子签名
    级别: 超级版主

    UID: 12451
    精华: 6
    发帖: 19014
    威望: 173 星
    金钱: 51 浮游币
    贡献值: 9859 点
    好评度: 54632 点
    人气: 4322 点
    在线时间: 18745(时)
    注册时间: 2004-10-02
    最后登录: 2024-05-02
    草席  发表于: 2006-03-23 22:12

    是啊,嘿嘿~
    已收藏啦`
    谢谢~
    级别: 模拟小生
    UID: 98320
    精华: 0
    发帖: 83
    威望: 0 星
    金钱: 2547 浮游币
    贡献值: 0 点
    好评度: 244 点
    人气: 0 点
    在线时间: 0(时)
    注册时间: 2006-01-23
    最后登录: 2006-07-04
    5楼  发表于: 2006-03-24 12:22

    哈哈,错过无数次,这次一定要收藏了
    级别: 模拟专家
    UID: 79366
    精华: 0
    发帖: 295
    威望: 0 星
    金钱: 1846 浮游币
    贡献值: 0 点
    好评度: 75 点
    人气: 0 点
    在线时间: 10(时)
    注册时间: 2005-11-19
    最后登录: 2014-04-25
    6楼  发表于: 2006-03-24 20:19

    谢谢了
    级别: 模拟小生
    UID: 98421
    精华: 0
    发帖: 9
    威望: 0 星
    金钱: 2517 浮游币
    贡献值: 0 点
    好评度: 27 点
    人气: 0 点
    在线时间: 0(时)
    注册时间: 2006-01-24
    最后登录: 2006-10-11
    7楼  发表于: 2006-04-05 08:56

    收藏
    级别: 模拟小生
    UID: 119458
    精华: 0
    发帖: 163
    威望: 0 星
    金钱: 2490 浮游币
    贡献值: 0 点
    好评度: 376 点
    人气: 0 点
    在线时间: 0(时)
    注册时间: 2006-04-06
    最后登录: 2009-02-15
    8楼  发表于: 2006-04-08 15:33

    总算明白了
    级别: 模拟小生
    UID: 125412
    精华: 0
    发帖: 35
    威望: 0 星
    金钱: 2596 浮游币
    贡献值: 0 点
    好评度: 90 点
    人气: 0 点
    在线时间: 0(时)
    注册时间: 2006-06-20
    最后登录: 2007-02-25
    9楼  发表于: 2006-06-20 20:15

    good
    YZB
    无广告位,看帖子签名
    级别: 超级版主

    UID: 12451
    精华: 6
    发帖: 19014
    威望: 173 星
    金钱: 51 浮游币
    贡献值: 9859 点
    好评度: 54632 点
    人气: 4322 点
    在线时间: 18745(时)
    注册时间: 2004-10-02
    最后登录: 2024-05-02
    10楼  发表于: 2006-06-20 20:31

    楼上朋友注意回复别太短,有灌水嫌疑....