Emuforums.com

Go Back   Emuforums.com > Handheld Emulation > VBA-M Discussion
Home Register Downloads FAQ Members List Calendar Arcade Mark Forums Read


Reply
 
LinkBack Thread Tools Display Modes
Old November 27th, 2007   #221 (permalink)
Banned
 
Join Date: Feb 2007
Location: Lost.
Posts: 1,767
Thanks for the files. Uploaded to SVN.
mudlord is offline   Reply With Quote

Advertisement [Remove Advertisement]
Old December 5th, 2007   #222 (permalink)
DS Cheat Code Hacker
 
Dualscreenman's Avatar
 
Join Date: Jun 2007
Location: New Hampshire, USA
Posts: 677
Was poking around the source and found an else if statement which I promptly transformed into a nicer switch statement. ;D
Attached Files
File Type: zip vbam-RTC.cpp-elseif-replace.diff.zip (464 Bytes, 9 views)
Dualscreenman is offline   Reply With Quote
Old December 5th, 2007   #223 (permalink)
Banned
 
Join Date: Feb 2007
Location: Lost.
Posts: 1,767
Thanks, I applied your RTC emulation patch to the current source.
mudlord is offline   Reply With Quote
Old December 6th, 2007   #224 (permalink)
DS Cheat Code Hacker
 
Dualscreenman's Avatar
 
Join Date: Jun 2007
Location: New Hampshire, USA
Posts: 677
Two more, heh.
Attached Files
File Type: zip vbam-debugger.c-elseif-replace.diff.zip (620 Bytes, 7 views)
Dualscreenman is offline   Reply With Quote
Old December 6th, 2007   #225 (permalink)
Banned
 
Join Date: Feb 2007
Location: Lost.
Posts: 1,767
Noted and patch applied
mudlord is offline   Reply With Quote
Old December 12th, 2007   #226 (permalink)
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,845
@Spacey
You broke full screen with your menu 'fix'

when you go full screen the black bar where the menu is supposed to be is still there forcing the entire screen down.
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.
Squall-Leonhart is offline   Reply With Quote
Old December 12th, 2007   #227 (permalink)
GBA emulator developer
 
Spacy's Avatar
 
Join Date: Mar 2005
Location: Germany
Posts: 392
Quote:
Originally Posted by Squall-Leonhart View Post
@Spacey
You broke full screen with your menu 'fix'

when you go full screen the black bar where the menu is supposed to be is still there forcing the entire screen down.
What render mode? What resolution?
__________________

Spacy is offline   Reply With Quote
Old December 13th, 2007   #228 (permalink)
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,845
OpenGL, resolution doesn't matter.

also,
can we get some consistancy with the render modes?

the ShowSpeed should be either Blue in both modes, or Red (which is easier to read on most games) and there should be a way to set where we want it positioned on the screen. (incase it overlaps other games)
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.

Last edited by Squall-Leonhart; December 13th, 2007 at 03:44..
Squall-Leonhart is offline   Reply With Quote
Old December 24th, 2007   #229 (permalink)
Banned
 
Join Date: Feb 2007
Location: Lost.
Posts: 1,767
Yes, we can get consistancy. Might need to work more on these.

Also, new SVN build will be uploaded today. Includes:

* No longer requires GLEW32.DLL
* Supports video compression (no support for YUV yet)
* Buffer selection in OpenAL audio driver
* GLSL shaders should support samplers now, as well as a uniform constant for monochrome colours
* Now sound pauses when moving window properly
* Improved DirectSound output driver
* Improved debugging build speed by 20%
* Optimized texture copying

..and loads other updates which I forgot.


Merry Christmas everyone!
mudlord is offline   Reply With Quote
Old December 24th, 2007   #230 (permalink)
GBA emulator developer
 
Spacy's Avatar
 
Join Date: Mar 2005
Location: Germany
Posts: 392
Further info:

- Recorded AVI misses something that keeps audio/video in sync when playing it back in a media player, so when I create CPU load while playing back, A/V gets async. Maybe the old Video for Windows API is just bad?

- Missing support for YUV output to video encoder results in some codecs not working (DivX, MS MPEG, ...). However, ffdshow works perfectly fine, because it supports RGB16/24 input.

- When VBA runs in 16bit mode, AVIs will be recorded in 16bit colors which reduces the size of uncompressed video streams. Of course the best way would be to let the user chose, the only advantage is that it reduces CPU overhead when recording in 16bit.

- New sound pauses have been added, but when the user clicks the MainWindow non-client area, sound will still get asynchronous because I have not found a way to handle this window message. Maybe MFC is bad?

- Texture copying (for D3D & DDraw) was not really optimized, I just found out that the current (my old) assembler code was as fast as the pure C code, so I just deleted the assembler and rewrote the routines a bit. Well, maybe I got a little speed improvement, but nothing major.
__________________


Last edited by Spacy; January 1st, 2008 at 14:36..
Spacy is offline   Reply With Quote
Old December 25th, 2007   #231 (permalink)
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,845
aww, logging still not working in the release builds
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.
Squall-Leonhart is offline   Reply With Quote
Old January 1st, 2008   #232 (permalink)
Banned
 
Join Date: Feb 2007
Location: Lost.
Posts: 1,767
It should be now.

SVN build uploaded. Has hardware motion blur and Jonas's GBA graphics core optimizations.
mudlord is offline   Reply With Quote
Old October 7th, 2008   #233 (permalink)
Registered User
 
Join Date: Mar 2008
Location: Gastonia, North Carolina
Posts: 1
Can we get that new build of VBA-H (hackers edition)
GameboySP9000 is offline   Reply With Quote
Old October 8th, 2008   #234 (permalink)
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,845
unless you plan on working on VBA-M with the guys, don't post to this thread.
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.
Squall-Leonhart is offline   Reply With Quote
Old December 22nd, 2008   #235 (permalink)
*aLoneKei*
 
aLoneKei's Avatar
 
Join Date: Dec 2008
Location: Mexico/Ags
Posts: 2
i would like to be a tester.
i know C 'n' C++.
I use Xp and Linux, but i can test in x64.
aLoneKei is offline   Reply With Quote
Old December 23rd, 2008   #236 (permalink)
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,845
anyone can test, same as with pcsx2 and dolphin.
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.
Squall-Leonhart is offline   Reply With Quote
Old December 24th, 2008   #237 (permalink)
*aLoneKei*
 
aLoneKei's Avatar
 
Join Date: Dec 2008
Location: Mexico/Ags
Posts: 2
so i only goin' to post bugs?
ok.
aLoneKei is offline   Reply With Quote
Old 3 Weeks Ago   #238 (permalink)
Registered User
 
Ethereal's Avatar
 
Join Date: Oct 2009
Location: Brazil/SP
Posts: 1
I have some experience in php, and people say C++ and php have similar syntax.

I would love to help and improve my programming skills.

PM me with more information. Even better: send me an e-mail.

Thanks
__________________
Quit fighting, make friends
Ethereal is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 04:49.

© 2006 - 2008 Emu Forums | About Emu Forums | Legal | A member of the Crowdgather Forum Community


Powered by vBulletin® Version 3.7.6
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5