The MASM Forum

General => The Workshop => Windows API => Topic started by: daydreamer on July 12, 2023, 03:19:38 PM

Title: Gdi+ capable of isometric draw?
Post by: daydreamer on July 12, 2023, 03:19:38 PM
Hi was thinking make asm monopoly or other game
One idea is display each of fourth "roads" isometric view, my concern is text quality drawed need to be antialiased to be enough readable and can it be done by gdi+ functions?
My idea of drawing is isometric background drawn + on top moves piece (Icon)
Title: Re: Gdi+ capable of isometric draw?
Post by: NoCforMe on July 12, 2023, 03:41:28 PM
OK, I'll bite: what means "display each of fourth "roads" isometric view"?

Daydreamer, my friend, you're a master of obscurity ...
Title: Re: Gdi+ capable of isometric draw?
Post by: jj2007 on July 12, 2023, 06:59:47 PM
Gdi+ has anti-aliased text (https://learn.microsoft.com/en-us/windows/win32/gdiplus/-gdiplus-antialiasing-with-text-use). Look out for text like
invoke GdipSetSmoothingMode, gsi.jjGraphicsObj, SmoothingModeAntiAlias   ; default is SmoothingModeAntiAlias8x8
Title: Re: Gdi+ capable of isometric draw?
Post by: daydreamer on July 12, 2023, 10:03:23 PM
thanks JJ :thumbsup:
have some previous isometric drawing code,code converting text might end up sawtooth and hard to read
noCforme:
monopoly walk around is a square,my vision is in WM_PAINT
show only the one your piece is moving at a time
and switch to next and keep on moving
switch x
;view from center of board alternative from outside of board
case 1 ;view of fromgoto gotojail
case 2 ;view of vertical right "road"
case 3 ;view of lower horizontal "road"
case 4 ;view of vertical left
that way I can use same layout howto show streetnames,houses,hotels
instead of whole board on one screen=smaller and less room for details
Title: Re: Gdi+ capable of isometric draw?
Post by: NoCforMe on July 13, 2023, 12:36:46 PM
OK, so what you meant was each of four roads, not fourth. That I would've understood. Language barrier.