Thread: fireworks!

  1. #1
    Registered User
    Join Date
    May 2002
    Posts
    1

    fireworks!

    does anyone have a nice set of code that will display some fireworks? i would really appriciate it ^^

    thanks
    -Dan

  2. #2
    Registered User
    Join Date
    Apr 2002
    Posts
    249

    Re: fireworks!

    Originally posted by iglooman
    does anyone have a nice set of code that will display some fireworks? i would really appriciate it ^^

    It has been long time since I see Fireworks...

    I would like to see them in C++ too.

    I support your Idea...
    C++
    The best

  3. #3
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    Code:
    	#include <iostream.h>
    
    	int main(void)
    	{	
    		for (;;)
    		{
    			cout << "fireworks" << endl;
    		}
    		return 0;
    	}

    That should suffice.

  4. #4
    iglooman124
    Guest

    Talking

    i appriciate your input. . .but its not exactly what im looking for =)
    if no one has any actual code. . .some ideas on how to go about would even help. . .whatever you got
    till next time ^^
    -Dan

  5. #5
    If someone could pass me the fireworks in Java, I could try to convert it...

  6. #6
    I'm Back
    Join Date
    Dec 2001
    Posts
    556
    ideas -->

    use ascii chars
    use textcolor/textbackground in conio.h
    use delay in dos.h
    use gotoxy in conio.h

    mix and mash them and you get fireworks


    i know the headers and functions are compiler specific and non std. but i'll probably use them if i want to make fireworks
    -

  7. #7
    If you go to www.brackeen.com you see a link to a dos-VGA tutorial, where you learn how to make polygons and stuff... It's in c though...

  8. #8
    flashing vampire black's Avatar
    Join Date
    May 2002
    Posts
    563

    Talking Re: fireworks!

    Originally posted by iglooman
    does anyone have a nice set of code that will display some fireworks? i would really appriciate it ^^

    thanks
    -Dan
    fireworks ? I love flash more, aha~
    Never end on learning~

  9. #9
    iglooman124
    Guest
    help! i need fireworks. . . .. . . .. . . . . . . . .. . . .. . . . . . . . .. . . .. . . . . . . . .. . . .. . . . . . . . .. . . .. . . . . . . . .. . . .. . . . . .

  10. #10
    Pygmy Monkey ErionD's Avatar
    Join Date
    Feb 2002
    Posts
    408
    lol catfish

  11. #11
    Registered User Dual-Catfish's Avatar
    Join Date
    Sep 2001
    Posts
    802
    Well, pick a point on the screen, and use basic trigonometry to give it the effect of exploding in a circular fashion. I don't think it would be too difficult in the console, or even Win32.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. And so it begins...
    By Salem in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 10-15-2007, 05:50 AM