Welcome to Emulationworld

Forum Index | FAQ | New User | Login | Search

Make a New PostPrevious ThreadView All ThreadsNext Thread*Show in Threaded Mode


SubjectHP 568 problems Reply to this message
Posted byAnonymous (129.175.7.56)
Posted on01/09/02 04:23 AM



Hi,

I've notice 2 problems whith my french HP568:

1st, buttons are not mapped. This is because the "set_device_manufacturer()" function only check for USEnglish machines... Comparing only 15 1st chars ("HP, Jordana 565") makes it OK.

2nd, the right edge of the screen is not displayed.
Actually, it is not copied from bitmap to screen. I've modified internal loop in DrawToScreen() (added +10) :

for (pixel = 0; pixel < iwidth+10; pixel++)
{
*DestLine = *(pal16 + *base++);
DestLine += m_pitchX;
}

Cheers,

Vincent (the Yeti)




SubjectRe: HP 568 problems new Reply to this message
Posted byTekhmaster
Posted on01/09/02 11:39 PM



> Hi,
>
> I've notice 2 problems whith my french HP568:
>
> 1st, buttons are not mapped. This is because the "set_device_manufacturer()"
> function only check for USEnglish machines... Comparing only 15 1st chars ("HP,
> Jordana 565") makes it OK.
>
> 2nd, the right edge of the screen is not displayed.
> Actually, it is not copied from bitmap to screen. I've modified internal loop in
> DrawToScreen() (added +10) :
>
> for (pixel = 0; pixel < iwidth+10; pixel++)
> {
> *DestLine = *(pal16 + *base++);
> DestLine += m_pitchX;
> }
>
> Cheers,
>
> Vincent (the Yeti)
>
1. Good advice i'll look at using only the short string.
2. Screen centering is my biggest task write now. I'll take a look at the code and see if I can work in your sugestion on +10. This may only fix s few games and break a few others however :)

we'll see what happens.


Cheers,
-Techmaster


SubjectRe: HP 568 problems, one more thing Techmaster!! new Reply to this message
Posted byAnonymous (65.56.187.145)
Posted on01/10/02 09:37 AM



Techmaster,

When you get a chance for a future release could you revisit the landscape portion of the code. It seems like games where the horizontal resolution is greater than 320 pixels it will not rotate the screen. I guess if it is too big to rotate it won't even bother. A good example is Pang or Buster Bros, and Lode Runner. Even if these games are too wide for landscape mode if they were centered it would still make the games more than playable versus portrait mode. Otherwise your centering code has made a vast improvement for many other games and landscape mode works for most other games where the horizontal res is less than 320. Thanks for keeping the project alive.

Ottoman


> > Hi,
> >
> > I've notice 2 problems whith my french HP568:
> >
> > 1st, buttons are not mapped. This is because the "set_device_manufacturer()"
> > function only check for USEnglish machines... Comparing only 15 1st chars
> ("HP,
> > Jordana 565") makes it OK.
> >
> > 2nd, the right edge of the screen is not displayed.
> > Actually, it is not copied from bitmap to screen. I've modified internal loop
> in
> > DrawToScreen() (added +10) :
> >
> > for (pixel = 0; pixel {
> > *DestLine = *(pal16 + *base++);
> > DestLine += m_pitchX;
> > }
> >
> > Cheers,
> >
> > Vincent (the Yeti)
> >
> 1. Good advice i'll look at using only the short string.
> 2. Screen centering is my biggest task write now. I'll take a look at the code
> and see if I can work in your sugestion on +10. This may only fix s few games
> and break a few others however :)
>
> we'll see what happens.
>
>
> Cheers,
> -Techmaster
>





SubjectRe: HP 568 problems new Reply to this message
Posted byAnonymous (217.125.114.164)
Posted on01/10/02 11:37 AM



Could you make a patch for the keymapping problem of international versions asap in your web?
I'm getting excited about playing your great conversion in my spanish J568.

> > Hi,
> >
> > I've notice 2 problems whith my french HP568:
> >
> > 1st, buttons are not mapped. This is because the "set_device_manufacturer()"
> > function only check for USEnglish machines... Comparing only 15 1st chars
> ("HP,
> > Jordana 565") makes it OK.
> >
> > 2nd, the right edge of the screen is not displayed.
> > Actually, it is not copied from bitmap to screen. I've modified internal loop
> in
> > DrawToScreen() (added +10) :
> >
> > for (pixel = 0; pixel {
> > *DestLine = *(pal16 + *base++);
> > DestLine += m_pitchX;
> > }
> >
> > Cheers,
> >
> > Vincent (the Yeti)
> >
> 1. Good advice i'll look at using only the short string.
> 2. Screen centering is my biggest task write now. I'll take a look at the code
> and see if I can work in your sugestion on +10. This may only fix s few games
> and break a few others however :)
>
> we'll see what happens.
>
>
> Cheers,
> -Techmaster
>





SubjectRe: HP 568 problems, one more thing Techmaster!! new Reply to this message
Posted byAnonymous (217.128.121.33)
Posted on01/11/02 11:05 AM



>Just want to know how to change easily the key mapping for french jornada

Thanks in advance




Techmaster,
>
> When you get a chance for a future release could you revisit the landscape
> portion of the code. It seems like games where the horizontal resolution is
> greater than 320 pixels it will not rotate the screen. I guess if it is too big
> to rotate it won't even bother. A good example is Pang or Buster Bros, and Lode
> Runner. Even if these games are too wide for landscape mode if they were
> centered it would still make the games more than playable versus portrait mode.
> Otherwise your centering code has made a vast improvement for many other games
> and landscape mode works for most other games where the horizontal res is less
> than 320. Thanks for keeping the project alive.
>
> Ottoman
>
>
> > > Hi,
> > >
> > > I've notice 2 problems whith my french HP568:
> > >
> > > 1st, buttons are not mapped. This is because the "set_device_manufacturer()"
> > > function only check for USEnglish machines... Comparing only 15 1st chars
> > ("HP,
> > > Jordana 565") makes it OK.
> > >
> > > 2nd, the right edge of the screen is not displayed.
> > > Actually, it is not copied from bitmap to screen. I've modified internal
> loop
> > in
> > > DrawToScreen() (added +10) :
> > >
> > > for (pixel = 0; pixel {
> > > *DestLine = *(pal16 + *base++);
> > > DestLine += m_pitchX;
> > > }
> > >
> > > Cheers,
> > >
> > > Vincent (the Yeti)
> > >
> > 1. Good advice i'll look at using only the short string.
> > 2. Screen centering is my biggest task write now. I'll take a look at the code
> > and see if I can work in your sugestion on +10. This may only fix s few games
> > and break a few others however :)
> >
> > we'll see what happens.
> >
> >
> > Cheers,
> > -Techmaster
> >
>





Previous ThreadView All ThreadsNext Thread*Show in Threaded Mode