Rotate option
Rotate option
Hi guyz, I don't understand why some core vertical games have to rotate clockwise because normally it's counter clockwise, is it possible to add a feature for rotating in the both ways??? I think I'm not the only one who use rotating screen who just allow quarter circle , thanks
-
- Posts: 33
- Joined: Mon Dec 28, 2020 11:46 pm
- Has thanked: 1 time
- Been thanked: 7 times
Re: Rotate option
I agree it’s annoying that some games are rotated clockwise (those crt’s are heavy to rotade ). But isn’t there an option to flip screen in most cores? There has been in a few that I’ve tried at least.
Re: Rotate option
It's because arcade games were not consistent about the rotation direction, and the cores are simulating the arcade hardware. Some arcade games had a dip switch to flip it, but others didn't. It's probably a bit more annoying on Mister because a lot of the arcade cores are 'older' and there was less consistency in the early days of arcade games.
Just think of it this way: Mister is so accurate it is simulating the actual annoyance of trying to run multiple 'classic' arcade games in a single cabinet!
Just think of it this way: Mister is so accurate it is simulating the actual annoyance of trying to run multiple 'classic' arcade games in a single cabinet!
-
- Posts: 109
- Joined: Wed May 27, 2020 11:33 pm
- Has thanked: 101 times
- Been thanked: 15 times
- LamerDeluxe
- Top Contributor
- Posts: 1239
- Joined: Sun May 24, 2020 10:25 pm
- Has thanked: 887 times
- Been thanked: 284 times
Re: Rotate option
What I remember is that some arcade cores expect the vertical blank at the other side of the display, which is why it wouldn't be trivial to change the direction.
I put my CRT on its side to play vertical games, but turning it upside down for some cores isn't a good idea because handling CRTs that are still warm can damage them.
I put my CRT on its side to play vertical games, but turning it upside down for some cores isn't a good idea because handling CRTs that are still warm can damage them.
-
- Top Contributor
- Posts: 1311
- Joined: Mon Jul 06, 2020 9:37 pm
- Has thanked: 634 times
- Been thanked: 308 times
Re: Rotate option
I was going to start a new thread, but I guess this one will suffice.
Is there a keyboard shortcut to rotate the MiSTer menu? When my screen is on its side, it would be nice to not have to turn my head on its side to read the menus. I know I can program this per core in the MiSTer.ini file, but it would be nice if there was a way to press a key on the keyboard and rotate it 90 degrees at a time on the fly.
Thanks!
Is there a keyboard shortcut to rotate the MiSTer menu? When my screen is on its side, it would be nice to not have to turn my head on its side to read the menus. I know I can program this per core in the MiSTer.ini file, but it would be nice if there was a way to press a key on the keyboard and rotate it 90 degrees at a time on the fly.
Thanks!
Re: Rotate option
...but Gorf has a cocktail mode where the game either way ina 2 player game so why is it not possible to rotate this output for P1 the same way as for P2?LamerDeluxe wrote: ↑Mon Jan 25, 2021 8:52 am What I remember is that some arcade cores expect the vertical blank at the other side of the display, which is why it wouldn't be trivial to change the direction.
As the display code exists in the rom it may be possible to hack the rom slightly to e.g. display P1 and P2 cocktail mode the same way
- LamerDeluxe
- Top Contributor
- Posts: 1239
- Joined: Sun May 24, 2020 10:25 pm
- Has thanked: 887 times
- Been thanked: 284 times
Re: Rotate option
I didn't think of this. That is an interesting idea. Would be great if that would work.Vic20-Ian wrote: ↑Tue Mar 30, 2021 7:25 pm...but Gorf has a cocktail mode where the game either way ina 2 player game so why is it not possible to rotate this output for P1 the same way as for P2?LamerDeluxe wrote: ↑Mon Jan 25, 2021 8:52 am What I remember is that some arcade cores expect the vertical blank at the other side of the display, which is why it wouldn't be trivial to change the direction.
As the display code exists in the rom it may be possible to hack the rom slightly to e.g. display P1 and P2 cocktail mode the same way
Re: Rotate option
Maybe someone smarter than me can hunt for these calls in the rom and patch it?
https://groups.io/g/ballyalley/message/16710
;******************************************************************************************
; ( UPSIDE DOWN RELABS ROUTINES FOR COCKTAIL MODE USE )
; SUBR cockrel norrel CALL, XCHG, 3FBF H LXI, A ANA,
; D DSBC, C A MOV, 0C0 XRI, A C MOV, RET,
; SUBR cockff ffnorrel CALL, XCHG, 3FBF H LXI, A ANA,
; D DSBC, C A MOV, 0C0 XRI, A C MOV, RET,
; -->
;******************************************************************************************
call norrel
ex de,hl
ld hl,$3FBF
and a
sbc hl,de
ld a,c
xor $C0
ld c,a
ret
call $05B2
ex de,hl
ld hl,$3FBF
and a
sbc hl,de
ld a,c
xor $C0
ld c,a
ret
https://groups.io/g/ballyalley/message/16710
;******************************************************************************************
; ( UPSIDE DOWN RELABS ROUTINES FOR COCKTAIL MODE USE )
; SUBR cockrel norrel CALL, XCHG, 3FBF H LXI, A ANA,
; D DSBC, C A MOV, 0C0 XRI, A C MOV, RET,
; SUBR cockff ffnorrel CALL, XCHG, 3FBF H LXI, A ANA,
; D DSBC, C A MOV, 0C0 XRI, A C MOV, RET,
; -->
;******************************************************************************************
call norrel
ex de,hl
ld hl,$3FBF
and a
sbc hl,de
ld a,c
xor $C0
ld c,a
ret
call $05B2
ex de,hl
ld hl,$3FBF
and a
sbc hl,de
ld a,c
xor $C0
ld c,a
ret