Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 Simple Yet Cool Loading Screen (No not a stupid little bar)
Index -> Programming, Turing -> Turing Submissions
Goto page 1, 2  Next
View previous topic Printable versionDownload TopicRate TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
the_short1




PostPosted: Tue Nov 02, 2004 8:09 pm   Post subject: Simple Yet Cool Loading Screen (No not a stupid little bar)

i was extremely bored in tech design class today (drafting) and was looking in start menu.. foudn TURING!.. and i just finisehd seing this cool little loading screen for a dos program and decided to replicate for my future uses..

not complex at all.. but looks cool and feel free to use it in all ur loading screens.. just dont take credit for it..

ENJOY!
Sponsor
Sponsor
Sponsor
sponsor
Neo




PostPosted: Tue Nov 02, 2004 9:00 pm   Post subject: (No subject)

I like it very much. Good work!!!
wtd




PostPosted: Tue Nov 02, 2004 9:13 pm   Post subject: (No subject)

Minor improvements. Smile

code:
module RotatingLoader
    export displayLoader

    procedure displayLoader (rotations, barLength, delayLength : int)
        loop
            for a : 1 .. barLength
                for b : 1 .. rotations
                    locate (1, a)
                    put "\\" ..
                    Time.Delay (delayLength)
                    locate (1, a)
                    put "|" ..
                    Time.Delay (delayLength)
                    locate (1, a)
                    put "/" ..
                    Time.Delay (delayLength)
                    locate (1, a)
                    put "-" ..
                    Time.Delay (delayLength)
                end for
            end for
        end loop
    end displayLoader
end RotatingLoader

RotatingLoader.displayLoader (4, 10, 125);
chunginator




PostPosted: Mon Nov 15, 2004 11:05 am   Post subject: (No subject)

hahaha kinda looks like the loading screen of Windows XP hahaha
nice job
zomg




PostPosted: Mon Nov 15, 2004 12:01 pm   Post subject: (No subject)

lol looks like the loading screen of xp?
lmao, did u even look at this program or are just posting randomly hoping to get ur status and bitage up

nice program btw
the_short1




PostPosted: Mon Nov 15, 2004 11:32 pm   Post subject: (No subject)

wtd.. why do u try to make thigns so complicated for no reason>??? this is mainly for begineers to spruce up their progies to make em look cool..

but ur rite.. its a imrovement.. in case u wanted to add to programs without a bunch of code.. u coudl easily turn that into a .tu..

anyways.... wereu talkjing to me shadow....?? cuz... really.. i post cool things i make.. that i think will benefit the begineers..* see my thread about cool ways to clear screen.. <<exactly what i do... well until i am in compsci again..
zomg




PostPosted: Tue Nov 16, 2004 11:38 am   Post subject: (No subject)

no i am just commenting on chuginator's comment
the_short1




PostPosted: Mon Nov 22, 2004 8:37 pm   Post subject: (No subject)

ahh. i c now.. i musta been outa it then..
Sponsor
Sponsor
Sponsor
sponsor
wtd




PostPosted: Tue Nov 23, 2004 1:09 am   Post subject: (No subject)

the_short1 wrote:
wtd.. why do u try to make thigns so complicated for no reason>??? this is mainly for begineers to spruce up their progies to make em look cool..

but ur rite.. its a imrovement.. in case u wanted to add to programs without a bunch of code.. u coudl easily turn that into a .tu..


I made it more "complicated" because it's an improvement. Would you rather copy and paste the original into a document everywhere you want a loader, or...? Smile

code:
RotatingLoader.displayLoader (4, 10, 125);
the_short1




PostPosted: Tue Nov 23, 2004 4:34 pm   Post subject: (No subject)

now.. name me five ppl in their first month in comp sci that would acually KNOW how to load and use turing units Razz .. hahah.... but good point... yea../..hence i said 'easily turn that into a nice turing unit'... gj..

edit*** next time i think ill post the noob edition.. and a pro edition with turing unit Razz !! good plan!
wtd




PostPosted: Tue Nov 23, 2004 11:13 pm   Post subject: (No subject)

And this is why students should be introduced very early on to means of reusing code and properly packaging it up (records, functions, procedures, modules, classes).

Probably the biggest problem I see programmers here having is related to writing spaghetti code and trying to tackle big complicated problems all at once, rather than breaking them down into smaller, simpler problems.

Small, simple problems, have small, simple solutions. Big, messy problems have big messy solutions.

The three virtues of a good programmer are laziness, impatient, and hubris (they want an easy way out, they want it now, and they believe they're good enough to devise one). Nowhere in there does it say they're sloppy.
MattyGG




PostPosted: Thu Nov 25, 2004 11:51 am   Post subject: (No subject)

Hey that's pretty cool, man...i think i saw it on some version of linux...but it don't matter...i think what you've done here is great
Viper




PostPosted: Thu Nov 25, 2004 12:31 pm   Post subject: (No subject)

they both look the same 2 me but ne ways thats kool
MyPistolsIn3D




PostPosted: Tue Nov 30, 2004 5:40 pm   Post subject: (No subject)

Man, i still dont know how to use modules and stuff. Hmmmm, search function.... hello.
omar




PostPosted: Wed Dec 01, 2004 8:34 am   Post subject: (No subject)

This is far too simple how long did it take u? 10 mins?
Display posts from previous:   
   Index -> Programming, Turing -> Turing Submissions
View previous topic Tell A FriendPrintable versionDownload TopicRate TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 2  [ 17 Posts ]
Goto page 1, 2  Next
Jump to:   


Style:  
Search: