flat assembler
Message board for the users of flat assembler.

Index > Windows > A small advertisement for Fasm?

Author
Thread Post new topic Reply to topic
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 28 Jan 2006, 19:54
a Fasm program of course !


Description:
Download
Filename: AsmGges_Animate.zip
Filesize: 2.47 KB
Downloaded: 358 Time(s)

Post 28 Jan 2006, 19:54
View user's profile Send private message Visit poster's website Reply with quote
Plue



Joined: 15 Dec 2005
Posts: 151
Plue 28 Jan 2006, 20:19
Nice, perfectly smooth animation with no visible cpu load.
Post 28 Jan 2006, 20:19
View user's profile Send private message Reply with quote
RedGhost



Joined: 18 May 2005
Posts: 443
Location: BC, Canada
RedGhost 29 Jan 2006, 02:08
Plue wrote:
Nice, perfectly smooth animation with no visible cpu load.


same for me, very cool

_________________
redghost.ca
Post 29 Jan 2006, 02:08
View user's profile Send private message AIM Address MSN Messenger Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 31 Jan 2006, 15:29
Fasm, button, icon, bitmap


Description: New version
Download
Filename: AsmGges_Button2.zip
Filesize: 2.03 KB
Downloaded: 250 Time(s)



Last edited by asmgges on 01 Feb 2006, 10:40; edited 1 time in total
Post 31 Jan 2006, 15:29
View user's profile Send private message Visit poster's website Reply with quote
vid
Verbosity in development


Joined: 05 Sep 2003
Posts: 7105
Location: Slovakia
vid 31 Jan 2006, 15:55
for the first one: Nice, window doesn't move while animating, and button. It seems you aren't even accepting window messages during that time. Think about that...
Post 31 Jan 2006, 15:55
View user's profile Send private message Visit poster's website AIM Address MSN Messenger ICQ Number Reply with quote
Vasilev Vjacheslav



Joined: 11 Aug 2004
Posts: 392
Vasilev Vjacheslav 01 Feb 2006, 12:55
it is from masm package i think, but in fasm
Post 01 Feb 2006, 12:55
View user's profile Send private message Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 01 Feb 2006, 14:13
Yes cooked AsmGges Fasm v165.10
Post 01 Feb 2006, 14:13
View user's profile Send private message Visit poster's website Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 03 Feb 2006, 13:54
This example was in a masm package but Hutch had no approval of Bicrosoft(Tm). Wink


Description: Updated
Download
Filename: AsmGges_Exx.zip
Filesize: 17.89 KB
Downloaded: 220 Time(s)

Post 03 Feb 2006, 13:54
View user's profile Send private message Visit poster's website Reply with quote
RedGhost



Joined: 18 May 2005
Posts: 443
Location: BC, Canada
RedGhost 04 Feb 2006, 04:44
vid wrote:
for the first one: Nice, window doesn't move while animating, and button. It seems you aren't even accepting window messages during that time. Think about that...


vid is right, i did not notice before but as it moves the window does not handle messages.. e.g. if you move the window while the image is in motion the window will not move untill the image has stopped moving (causing a sort of lag), you should re-work the loop with a window timer or smth

_________________
redghost.ca
Post 04 Feb 2006, 04:44
View user's profile Send private message AIM Address MSN Messenger Reply with quote
Vortex



Joined: 17 Jun 2003
Posts: 318
Vortex 04 Feb 2006, 08:17
asmgges,

Nice work.

_________________
Code it... That's all...
Post 04 Feb 2006, 08:17
View user's profile Send private message Visit poster's website Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 04 Feb 2006, 10:05
Vortex,
Thank at you for all your utility programs very well made Cool

RedGhost,
Quote:

vid is right, i did not notice before but as it moves the window does not handle messages.. e.g. if you move the window while the image is in motion the window will not move untill the image has stopped moving (causing a sort of lag), you should re-work the loop with a window timer or smth

It's true, but the ceaseless passage in the main proc of Windows during a pixels copy is not really good for the execution speed
And the goal of an pub, you have to look till the end without intervening or to be distracted by other thing Wink
Post 04 Feb 2006, 10:05
View user's profile Send private message Visit poster's website Reply with quote
Reverend



Joined: 24 Aug 2004
Posts: 408
Location: Poland
Reverend 04 Feb 2006, 11:00
If you want the window to react while it's animating you must put the animation procedure in another thread
Post 04 Feb 2006, 11:00
View user's profile Send private message Visit poster's website Reply with quote
vid
Verbosity in development


Joined: 05 Sep 2003
Posts: 7105
Location: Slovakia
vid 04 Feb 2006, 16:28
reverend: you can handle messages during animating i think.
Post 04 Feb 2006, 16:28
View user's profile Send private message Visit poster's website AIM Address MSN Messenger ICQ Number Reply with quote
Madis731



Joined: 25 Sep 2003
Posts: 2139
Location: Estonia
Madis731 04 Feb 2006, 23:17
Code:
;We've got out buttonpush
loopThis
call animateFrame
call checkForAnyIntervention
cmp [endOfAnimation],1
jne  loopThis
;Do other stuff like wait for another buttonpush
    
Post 04 Feb 2006, 23:17
View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 06 Feb 2006, 14:16
Complete rewriting and programming

Now total control on the window
Animate on/off
Regulation of the animation speed
New timer

Very fast animation same if small processor


Description:
Download
Filename: AsmGgesAnimSp.zip
Filesize: 3.87 KB
Downloaded: 222 Time(s)

Post 06 Feb 2006, 14:16
View user's profile Send private message Visit poster's website Reply with quote
Mad_Overclocker



Joined: 11 Jan 2005
Posts: 20
Location: France,Earth
Mad_Overclocker 11 Feb 2006, 15:51
asmgges nice work.
ou plutot : joli boulot Very Happy

_________________
http://bakkap.free.fr/
Post 11 Feb 2006, 15:51
View user's profile Send private message Reply with quote
FrozenKnight



Joined: 24 Jun 2005
Posts: 128
FrozenKnight 12 Feb 2006, 10:49
Nice work but it has a vrey prominate cpu load on my computer i checked it while i had task manager open. and the bars jumped all the way up to 99%. the Sp version does better hovering between 6% and 50% untill you get to the super fast speeds where it goes all the way up to 99% and i begin noticing lag across the system.
Post 12 Feb 2006, 10:49
View user's profile Send private message Reply with quote
Matrix



Joined: 04 Sep 2004
Posts: 1166
Location: Overflow
Matrix 17 Feb 2006, 00:46
asmgges wrote:
a Fasm program of course !



hi!

nice program you have there,

hmm, but same here, on my 933MHz it takes 110% cpu, and a bit lagging.
i know.. but my comp should be engough for this effect.
Post 17 Feb 2006, 00:46
View user's profile Send private message Visit poster's website Reply with quote
asmgges



Joined: 17 Jun 2003
Posts: 86
Location: France
asmgges 11 May 2006, 12:45
Hi! Very Happy
For infos.

My site updated.

french/english Fasm page

A lot of Fasm v166 programs + full source code
And others soon..

http://www.chez.com/asmgges/index.htm

Good programming.
AsmGges
Post 11 May 2006, 12:45
View user's profile Send private message Visit poster's website Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  


< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.