Metagames


Précédent   Metagames > Univers Playstation > Playstation Portable
Accueil S'inscrire Blogs FAQ Communauté Calendrier Téléchargements Messages du jour Recherche

Playstation Portable Console portable, sortie en 2005 (PSP), 2007 (PSP Slim & Lite), 2008 (PSP 3000), 2009 (PSP Go), 2011 (PSP Street)

Réponse
 
Outils de la discussion Modes d'affichage
Vieux 09/02/2007, 07h37   #1 (permalink)
Profil
Membre
Ancienneté  68%
Ancienneté 68%
 
Date d'inscription: décembre 2006
Âge: 36
Pays :
Messages: 53
Téléchargements: 0
Uploads: 0
Merci: 0
Remercié 0 fois dans 0 Posts
Par défaut [News] Daedalus R10 dispo

Daedalus R10

test de jeux par Thairacer : ICI

This is a few hours later than I'd hoped, but here's R10:

http://downloads.sourceforge.net/dae...p_R10_v100.zip
http://downloads.sourceforge.net/dae...p_R10_v150.zip
http://downloads.sourceforge.net/dae...sp_R10_src.zip

This is the changelist:


[+] Added frameskip option.
[+] Added framerate limiting option.
[+] Added adjustable stick deadzone.
[+] Allow pause menu to be activated even when rom emulation has hung.
[!] Fix crash when no roms found, added explanatory message.
[!] Fix flickering when small number of roms found.
[^] Fix texture hash frequency check.
[^] Finally got code compiling with -O3 optimisation flag in GCC.
[^] Use VFPU for InvSqrt (thanks hlide!)
[^] Improved VFPU code for clipping and tnl (thanks Raphael!)
[^] Improved inlining of AddTri.
[^] Reduced time spent searching for overridden blend modes.
[~] Remove debug console in public release builds (smaller footprint and slight speedup.)



I'll post tomorrow with details on what I want to work on for R11. In the meantime, enjoy!

-StrmnNrmn





Citation:
[30/03/07=NEWS]

R10 countdown


I'm in the process of tidying up my current build so that I can release R10 over the next few days.

There are a number of features/optimisations still on my TODO list, but as I promised last month, I'd like to release R10 by the end of March. I think frequent, small updates are better than keeping everyone waiting months between releases.

Although R10 will be a smaller update than R9, there are some great improvements (most of which I've already talked about):


* An approximate 10-15% speedup
* Frameskip, framerate limiting and stick deadzone tuning
* Various small bugfixes



I'm hoping to have everything ready by Sunday afternoon at the latest.

One feature which might not make it is the Expansion Pak support. I mentioned that I'd finally fixed the bug that was preventing this from working, but I've been having difficulty resolving the various memory issues that it causes when enabled. Rather than delay R10, I'd prefer to disable the Expansion Pak support for now and release R11 early - as soon as I've fixed the underlying problem. I'll keep you posted.

-StrmnNrmn

Citation:
Weekend Update

"It's been a busy week at work, what with catching up after my week off and GDC, so I've not managed to post as many updates as I'd have liked.

On Daedalus I've been starting to take a look at the list of potential optimisations I listed and working out what to tackle first. To help me do this my first job is to do some work on Daedalus's profiler, to try and figure out where the biggest wins are going to come from. Hopefully I'll be able to report back with some interesting findings this weekend.

On a related note, I've spent the morning looking at converting the source control I'm using at sourceforge from CVS to Subversion. I've been meaning to do this for some time. I've never really been a fan of CVS, and as I'm using Subversion for other projects at work and at home I thought it made sense to migrate Daedalus over too.

So you can now access the latest Daedalus source* through Subversion:


svn co https://daedalus-n64.svn.sourceforge...alus-n64/trunk daedalus-n64


With CVS I usually only updated the source alongside every release. Ideally the repository would contain an up-to-date copy of my local build, but I've had problems in the past where people have distributed 'intermediate' builds of Daedalus PSP, bugs and all. I only ever release new builds when I think there are enough new features and its stable enough to make it worthwhile for people to download and install; updating a source a bit less frequently gives me a bit more control and helps prevent everyone's time being wasted with intermediate builds. I think that I'm going to continue with this policy for the time being. We'll see how it goes.

-StrmnNrmn

*This is still just the R8 source which I lifted from CVS today. I'm in the process of testing whether this compiles OK, then I'll refresh the repository with all the changes from R9. I'll update this post when the R9 source is available.

Edit: R9 source commited to Subversion, all seems to be compiling OK."
Citation:
StrmnNrmn de retour de vacances, nous fait part de son plan d'action concernant la release 10 (R10) de son émulateur N64 pour PSP

"R10 Plan of Action,

Before I went away on holiday I asked you what you thought I should look at working on for the next release of Daedalus. Over 200 of you replied, and I've greatly enjoyed reading what you've had to say. There were some brilliant suggestions, so many thanks for your contributions.

It seems pretty clear to me that speed is the single biggest issue that most people want to see addressed. Many people also mentioned compatibility and savestate or save game support, but in nowhere near the same kind of numbers as those wanting speed improvements.

Based on your feedback my current plan is to release Daedalus R10 at the end of March, focusing mostly on speed improvements. If I can fit in any easy compatibility fixes, I'll do this too*.

Several people have asked what possibilities remain for optimisation. Here's a short list of things I know need more work:

* In many games, a lot of the time spent executing dynamically recompiled code is doing things which can potentially be emulated at a high level. For instance, over 5% of the time spent executing dynarec code in Mario64 is just converting matrices from floating point to fixed point format. Another 4-5% of the time is spent in a loop invalidating areas of the data cache (which is irrelevent in an emulator.)
* Some of the most expensive fragments are those which branch to themselves (i.e. those doing many loops). I can optimise for this to avoid loading and flushing cached registers on each iteration through the loop.
* I can implement a frameskip option (I had intended to implement this for R9, but forgot!)
* I can make use of the Media Engine (as Exophase suggested in conversation, as the ME can't access VRAM, it might make more sense to execute Audio and Display Lists on the main CPU, and run the N64 CPU emulation on the PSP ME)
* There are certain situations where I fail to create fragments in the dynamic recompiler - for instance if the code being recompiled writes to a hardware register, this triggers an interrupt and causes fragment generation to be aborted. I should be able to deal with situations such as this more gracefully.
* The fragment generator can do a lot more to improve register caching, and eliminating redundant 64-bit operations.
* There are many situations where N64 roms busy wait. I detect very simple occurances of this, but not all of them. If I manually identify more complex examples I can have the fragment generator optimise them away.
* Some roms are causing the dynarec fragment cache to be repeatedly dumped and recreated (I think Banjo Kazooie is one example of this). Fixing this may just involve tweaking a couple of magic numbers.
* I currently optimise memory accesses under the assumption that most accesses are in the range 0x80000000 - 0x80800000, which is incorrect in the case of roms that make heavy use of virtual memory, or access RAM through the mirrored range at 0xa0000000. I can improve the trace recorder to collect information on which range a memory access fell in, and generate code to speculatively optimise for this.
* Now that the dynarec engine is producing much better code, the cost of display list processing is becoming more significant, and may finally be worth profiling and optimising.

That's quite a big list, so I doubt I'll be able to work on these things before the end of March, but I think it shows there's still a lot of scope for further optimisation.

-StrmnNrmn

*Just this morning, I figured out why the Expansion Pak support was broken, so Majora's Mask and a couple of other games relying on this are booting correctly now

Citation:
Envoyé par kenji_16 Voir le message
StrmnNrmn est de retour à travers son blog et pendant son absence, il a pas chomé^^

voici les liens pour daedalus R9, enjoy^^

Daedalus PSP R9 for v1.00 Firmware
Daedalus PSP R9 for v1.50+ Firmware
Daedalus PSP R9 Extras
Daedalus PSP R9 Source

"Wow, it's been a long time since the last update. A really long time. How did that happen?

I've always found it quite hard to find the time to update the blog. Usually when I have some free time in the evenings (that's free time spent doing things other than eating, socialising, and getting stuff ready for work), the choices I have are:

* Do some new development on Daedalus
* Play games/watch TV/relax
* Reply to a few emails/comments, post a new entry here

Unfortunately over the past half year or so the first two bullet points have won out. So, apologies for neglecting the 'outside world' for so long. On the plus side, the existance of the first bullet points means that I have lots of exciting new developments to talk about over the next few days

I'm going to finish off this reintroduction with a broad overview of some of the stuff I've been working on. This is all stuff that will be present in R9, which I'd like to release this month.

* Added support for RGBA 4444 and 5551 textures, saving a bunch of memory in the front end.
* Tidied up all the texture conversion code, fixing a few bugs in the process
* Fixed the width/height of FillRect calls in 1 and 2 cycle mode (fixed a few small graphical issues)
* Fixed a blending bug (fixed a few small graphical issues)
* Use 16-bit textures on the PSP to represent 16-bit N64 textures. Saves time converting, saves memory, and faster rendering
* Added mirrored texture support (this fixes lots of small graphical glitches)
* Fixed a LoadTile bug, allowing a couple of hacks to be removed (this also fixes various small graphical glitches)
* Added some new blend modes for various roms
* Fixed the Tri2 command for F3DLX microcodes
* Fixed a bug in busy-wait detection (this wasn't working correctly with dynarec code, net result is a small speedup)
* Fixed a few dynarec stability issues (relating to exceptions occuring mid-trace)
* Added audio support

* Added the ability to dump textures (developer builds only at the moment)
* Fixed screenshots. Again.
* Implemented cmp.s, cvt.s, cvt.w, mtc1, mfc1, bc1f, bc1t, j, cfc1, ctc1, daddu, trunc.w.s, bc1t, bc1f, bc1tl, bcifl, bnel, beql, blezl, bgtzl, bltzl, blezl in dynarec (this gives a decent speedup)
* Avoid setting the branch delay flag and current PC in generated dynarec code unless ********ly necessary (this gives another small speedup)
* Much better memory access handling in dynamically recompiled code (this gives a BIG speedup
* Use a second code buffer for generated dynarec code, to avoid polluting the instruction cache (this gives another small speedup)
* Further improve the memory access handling in generated dynarec code (another small speedup)
* Fix register usage analysis for lwc1/swc1/mfc1/mtc1 which was preventing base registers used in these instructions from being cached (another small speedup)
* Have compensation blocks restore nobbled registers, so on-trace code does't need to reload (another small speedup)


There's quite a lot in that list, so I highlighted the two most significant points. In summary R9 will be much faster, with audio support. I'll write a bit more about these changes in particular over the next few days (promise!)

-StrmnNrmn"
source : http://strmnnrmn.blogspot.com/

On retiendra surtout l'apport du son dans son émulateur et un bon level up de la vitesse (qui était déjà honorable lors de la R8), bref vivement la release^^

Dernière modification par kenji_16 ; 03/04/2007 à 23h49.
kenji_16 est déconnecté   Réponse avec citation
Vieux 09/02/2007, 08h03   #2 (permalink)
Profil
Otaku Style
Ancienneté  72%
Ancienneté 72%
 
Avatar de milouk
 
Date d'inscription: mai 2006
Localisation: Akihabara
Pays :
Messages: 4 764
Téléchargements: 0
Uploads: 0
Entrées dans le blog: 1
Merci: 0
Remercié 26 fois dans 22 Posts
Envoyer un message via MSN à milouk
Par défaut

P*t**n,génial.

ca c'est de la news au réveil.

Espérons que ce sera pour ce week end
milouk est déconnecté   Réponse avec citation
Vieux 09/02/2007, 08h09   #3 (permalink)
Profil
Membre
Ancienneté  82%
Ancienneté 82%
 
Avatar de vegeta n°1
 
Date d'inscription: mai 2006
Âge: 32
Genre : Homme
Pays :
Messages: 2 962
Téléchargements: 10
Uploads: 0
Merci: 40
Remercié 15 fois dans 12 Posts
Envoyer un message via MSN à vegeta n°1
Par défaut

je commencai a m'inquieter pour lui^^

mais bon sa c'est de la bonne news des le matin j'espere que la release sera dispo tres bientot
__________________
Materiel :
Spoiler
vegeta n°1 est déconnecté   Réponse avec citation
Vieux 09/02/2007, 08h53   #4 (permalink)
Profil
Membre
Ancienneté  74%
Ancienneté 74%
 
Avatar de xam91
 
Date d'inscription: mai 2006
Âge: 34
Messages: 329
Téléchargements: 0
Uploads: 0
Merci: 0
Remercié 0 fois dans 0 Posts
Par défaut

Voilà la seule chose qui m'intéresse encore dans le monde de l'underground PSP. Si cette release apporte autant qu'apporter la derniére ça va être énorme.
Au moins un dév qui apporte des nouveautés avant de lancer une release.
__________________

Un petit forom où la prise de tête n'a pas sa place




xam91 est déconnecté   Réponse avec citation
Vieux 09/02/2007, 10h29   #5 (permalink)
Profil
Membre
Ancienneté  89%
Ancienneté 89%
 
Avatar de F Destroyer
 
Date d'inscription: mai 2006
Âge: 37
Pays :
Messages: 8 315
Téléchargements: 0
Uploads: 0
Merci: 7
Remercié 71 fois dans 51 Posts
Envoyer un message via MSN à F Destroyer
Par défaut

HOOOOOOOOOOO Le retour de mon idole!!

Je le croyais bel et bien mort son projet!

Quelle bonne nouvelle!!

Vas y strnm!!! GO !!
F Destroyer est déconnecté   Réponse avec citation
Vieux 09/02/2007, 10h59   #6 (permalink)
Profil
Gamer toujours !
Ancienneté  85%
Ancienneté 85%
 
Avatar de Link14
 
Date d'inscription: mai 2006
Localisation: Nord (59)
Âge: 34
Genre : Homme
Pays :
Messages: 5 419
Téléchargements: 3
Uploads: 0
Entrées dans le blog: 1
Merci: 97
Remercié 84 fois dans 63 Posts
Par défaut

Je l'avais oublié mais il est de retour! Respect pour cet homme qui est le seul à bosser sur un ému vraiment dur (voire le plus dur).
__________________

Link14 - La collection, PS3 et compagnie

Profil PSN :
Link14_fr - Si seulement je pouvais bien bosser en cours au lieu de jouer...
Link14 est déconnecté   Réponse avec citation
Vieux 09/02/2007, 12h19   #7 (permalink)
Profil
Membre
Ancienneté  76%
Ancienneté 76%
 
Avatar de Nepto
 
Date d'inscription: mai 2006
Messages: 5 449
Téléchargements: 0
Uploads: 0
Merci: 80
Remercié 52 fois dans 39 Posts
Par défaut

Vivement !!! J'ai hâte de tester cette version.

Je ne m'attends pas à du fullspeed, mais si il y a du son, c'est déjà un bon résultat.

Enfin une bonne news PSP, ca fait plaisir
__________________
XBOX360 : Nepto123
PSN : Nepto

Nepto est déconnecté   Réponse avec citation
Vieux 09/02/2007, 13h00   #8 (permalink)
Profil
Membre
Ancienneté  71%
Ancienneté 71%
 
Date d'inscription: mai 2006
Localisation: Amiens
Genre : Homme
Pays :
Messages: 144
Téléchargements: 0
Uploads: 0
Merci: 0
Remercié 0 fois dans 0 Posts
Par défaut

Dans un an on aura un emulateur FULL SPEED !!!
__________________
Choisis une signature plus appropriée stp.
Shanks est déconnecté   Réponse avec citation
Vieux 09/02/2007, 13h22   #9 (permalink)
Profil
Gamer toujours !
Ancienneté  85%
Ancienneté 85%
 
Avatar de Link14
 
Date d'inscription: mai 2006
Localisation: Nord (59)
Âge: 34
Genre : Homme
Pays :
Messages: 5 419
Téléchargements: 3
Uploads: 0
Entrées dans le blog: 1
Merci: 97
Remercié 84 fois dans 63 Posts
Par défaut

Peut-etre pas quand même, ca fait déja pas mal de temps que StrmnNrmn bosse sur son ému. Faut voir à la prochaine version si la vitesse a gagné beaucoup en vitesse.
__________________

Link14 - La collection, PS3 et compagnie

Profil PSN :
Link14_fr - Si seulement je pouvais bien bosser en cours au lieu de jouer...
Link14 est déconnecté   Réponse avec citation
Vieux 09/02/2007, 13h47   #10 (permalink)
Profil
Membre
Ancienneté  71%
Ancienneté 71%
 
Avatar de nRoK
 
Date d'inscription: mai 2006
Pays :
Messages: 367
Téléchargements: 0
Uploads: 0
Merci: 0
Remercié 0 fois dans 0 Posts
Par défaut

Excellent, merci de la news
__________________

Mieux vaut ne rien dire et passer pour un con que de parler et ne plus laisser de doute a ce sujet


nRoK est déconnecté   Réponse avec citation
Réponse
Précédent   Metagames > Univers Playstation > Playstation Portable


Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are non
Pingbacks are non
Refbacks are non


Discussions similaires
Discussion Auteur Forum Réponses Dernier message
[NEWS] Patch FR Tales Of Eternia dispo ! shadow-devil Playstation Portable 129 17/06/2007 01h02
Daedalus R11 dispo ;) silentbob Playstation Portable 22 08/05/2007 10h48
[NEWS] info sur daedalus r11 shasha Playstation Portable 5 24/04/2007 07h56
Daedalus R9 dispo :) albandu51 Playstation Portable 6 22/02/2007 09h52
News : Super Mario bros dispo sur la Virtual Console Fed Wii 18 06/01/2007 18h33


Fuseau horaire GMT +1. Il est actuellement 21h41.


© 2003-2018 MetaGames. Tous droits réservés.