Homebrew sur Xbox 360 ?


Newserator
 Share

Messages recommandés

Le HD-DVD n'est plus, et pourtant il se pourrait que celui-ci soit une des portes d'entrée possible au homebrew sur Xbox 360.

Le site That Gaming Site a en effet mis en ligne une méthode alternative au XNA (qui nécessite un abonnement) qui permettrait aux développeurs de proposer des applications en utilisant une des fonctions liée au HD-DVD, le HDi (ou iHD).

hdi.jpg

Le HDi était précédemment utilisé avec le HD-DVD de Toshiba, il s'agissait du système de navigation. Et il est possible d'utiliser le HDi à notre avantage du fait de son potentiel, de sa simplicité d'utilisation et surtout celui-ci peut être utilisé de manière simple pour porter des applications. Il ne serait pas surprenant qu'entre de bonnes mains certains pourraient lancer Doom ou proposer un émulateur NES en utilisant le HDi.

Mais comment utiliser le HDi sur Xbox 360 ? La méthode la plus simple consiste à utiliser le lecteur HD-DVD si vous en possédez un. La seconde méthode serait d'utiliser l'émulateur HD-DVD qui a été proposé publiquement il y a quelques mois.

Voici un exemple de code pour un jeu de Blackjack :

<?xml version=”1.0″ encoding=”UTF-8″?><Playlist xmlns=”http://www.dvdforum.org/2005/HDDVDVideo/Playlist” majorVersion=”1″ minorVersion=”0″>  <Configuration>    <StreamingBuffer size=”0″/>    <Aperture size=”1920×1080″/>    <MainVideoDefaultColor color=”107F7F”/>  </Configuration>  <MediaAttributeList>    <VideoAttributeItem index=”1″ codec=”VC-1″/>    <VideoAttributeItem index=”2″ codec=”AVC”/>    <VideoAttributeItem index=”3″ codec=”MPEG-2″/>    <AudioAttributeItem index=”1″ codec=”DD+”/>    <AudioAttributeItem index=”2″ codec=”AC-3″/>    <SubpictureAttributeItem index=”1″ codec=”8bitRLC”/>  </MediaAttributeList>  <TitleSet timeBase=”60fps”>    <Title titleNumber=”1″ titleDuration=”00:05:00:00″ id=”MainMovie” displayName=”Main Movie” onEnd=”MainMovie”>      <!–      <PrimaryAudioVideoClip src=”file:///dvddisc/HVDVD_TS/EVOB001.MAP” titleTimeBegin=”00:00:00:00″ titleTimeEnd=”00:05:00:00″>        <Video angleNumber=”1″ mediaAttr=”1″ track=”1″/>        <Audio mediaAttr=”1″ streamNumber=”1″ track=”1″/>      </PrimaryAudioVideoClip>      –>      <ApplicationSegment titleTimeBegin=”00:00:00:00″ titleTimeEnd=”00:05:00:00″ src=”file:///dvddisc/ADV_OBJ/blackjack.aca/manifest.xmf” zOrder=”0″>        <ApplicationResource priority=”1″ size=”13186214 ” multiplexed=”false” src=”file:///dvddisc/ADV_OBJ/blackjack.aca” />      </ApplicationSegment>      <ScheduledControlList>        <PauseAt titleTime=”00:00:01:00″/>      </ScheduledControlList>    </Title>  </TitleSet></Playlist>

Si le développement HDi vous intéresse, vous pouvez retrouver l'article complet sur That Gaming Site.

Lien vers article original : http://x360.gx-mod.com/modules/news/article.php?storyid=1851

Lien vers le commentaire
Partager sur d'autres sites

ça à l'air accessible.

Voici quelques specification pour le fichier .aca (fichier type zip sans compresssion et avec un header particulier)

We'll start with an ACA FAQ that our team put together:

1. Is it required to create and use an ACA file when creating your Advanced Content HD-DVD?

No. It is used to increase the load time of your application(s). Each application will only require one disc IO instead many (images, xmu, scripts etc).

2. What is an ACA File?

An ACA file is just all your files placed into one file with a special type of binary header at the beginning of the ACA file that defines what is in the ACA file.

3. How big can my ACA File be?

There is a maximum of 64MB which can be read in at a time. You can create ACA files larger then 64MB but you wont’ be able to use them in your HD-DVD.

4. Does the ACA use any compression methods?

No.

5. What section in the spec talks about the ACA format?

Section 6.5.4

6. What non authoring tools can create and/or extract ACA files? (if you know others please post them here)

Microsoft’s CreateACA.exe (for more visit Amy’s post: http://blogs.msdn.com/amyd/archive/2007/05...ur-friend.aspx)

NetBlender’s DoACA.exe (for more visit: http://www.dvd1one.net)

7. How is the AACS related to the ACA?

ACA is a specific file format that has nothing to do with AACS. The AACS define possible encryption/encapsulation methods for the content that can be packaged inside the ACA. However, when you have a file that is using one of the 5 supported encryption/encapsulation methods the mime type for that file will changed to "application/x-data" mine type.

8. What MIME Types are supported by the official ACA spec?

You can package any file you want see question 9. However there are specific MIME Type Codes that are part of the ACA specification. Here they are:

XPL, xpl

XMF, xmf

XMU, xmu

XTS, xts

XAS, xas

XSS, xss

JS, js

EVO, evo

MAP, map

JPG, jpg

PNG, png

MNG, mng

CVI, cvi

CDW, cdw

WAV, wav

OTF, otf

TTC, ttc

TTF, ttf

9. What files can be packaged into the ACA?

There are no limitations to the types of files that can be packaged inside an ACA. However there are limitations to the file formats supported by the HD-DVD specification.

10. In my XPL (Play List File) how do I reference files inside my ACA? (for more visit Amy’s post: http://blogs.msdn.com/amyd/archive/2007/05...ur-friend.aspx)

Code Snippet <ApplicationSegment autorun="true" titleTimeBegin="00:00:00:01" titleTimeEnd="23:59:59:59" src="file:///dvddisc/ADV_OBJ/hello.aca/manifest.xmf" zOrder="0" sync="hard">

11. In my XMU file how do I reference files inside my ACA.

The only files you need to reference in you XMU file directly is your font files. Here is an example of how to do that:

Code Snippet <input id="labelappStatusText" style:width="100%" style:height="100%" style:font="file:///dvddisc/ADV_OBJ/main.aca/Linds.ttf" style:fontSize="100%" style:color="rgba(255, 0, 0, 255)" state:value="Application Status" style:wrapOption="no-wrap" style:opacity="1.0" mode="display" />

12. In my XMF (manifest file) how do I reference files inside my ACA.

All you have to do is include the aca file you are using like this:

Code Snippet<Resource src="file:///dvddisc/ADV_OBJ/main.aca" /><Resource src="file:///dvddisc/ADV_OBJ/main.aca" />

Lien vers le commentaire
Partager sur d'autres sites

Salut

Dite c'est pas une voie pour le hack du lite-on. Parce que il y a peut être moyen de récupéré la clef CPU ou DVD via cette méthode.

Qu'est ce que vous en pensez ?

Lien vers le commentaire
Partager sur d'autres sites

Salut

Dite c'est pas une voie pour le hack du lite-on. Parce que il y a peut être moyen de récupéré la clef CPU ou DVD via cette méthode.

Qu'est ce que vous en pensez ?

J'en doute très sincèrement c'est comme sur ps3, on a pas accès a grand chose.

Lien vers le commentaire
Partager sur d'autres sites

Le site pour DL l'émulateur est mort! Si quelqu'un l'a, peut il me l'envoyer en MP ou bien me donner une adresse de site correct, merci. En tout cas, intéressante news :D ....

va faloir trouver cette emulateur . sa doit étre légale de le mettre en téléchargement maintenant qu'il est gratuit

Modifié par hyndrid
Lien vers le commentaire
Partager sur d'autres sites

Créer un compte ou se connecter pour commenter

Vous devez être membre afin de pouvoir déposer un commentaire

Créer un compte

Créez un compte sur notre communauté. C’est facile !

Créer un nouveau compte

Se connecter

Vous avez déjà un compte ? Connectez-vous ici.

Connectez-vous maintenant
 Share