Computer Science Canada Does anyone has this program? |
Author: | DBZ [ Fri Nov 21, 2003 7:47 pm ] |
Post subject: | Does anyone has this program? |
Hey i am looking for a program with planes in it, of any kind. if anyone does have a program like thisplease send it to me. Thanx! |
Author: | santabruzer [ Fri Nov 21, 2003 7:49 pm ] |
Post subject: | |
I know there's the space program... i think it's available at school as examples... |
Author: | Andy [ Fri Nov 21, 2003 7:56 pm ] |
Post subject: | |
wow sad... if i were an mod, soo many of you lame kids would be banned |
Author: | poly [ Fri Nov 21, 2003 8:00 pm ] |
Post subject: | |
OH ya a program with planes in it.... I have one of them *** quickly places virus into zip file with "supposably" a plane program |
Author: | Tony [ Fri Nov 21, 2003 8:08 pm ] |
Post subject: | |
dodge_tomahawk wrote: if i were an mod, soo many of you lame kids would be banned
then maybe its a good thing that dodge is not a mod |
Author: | Andy [ Fri Nov 21, 2003 8:46 pm ] |
Post subject: | |
lol.. i thought it was cuz of my history as a spammaholic |
Author: | Mazer [ Fri Nov 21, 2003 10:51 pm ] |
Post subject: | |
i was going to point out a space game, but then i realized what he probably wanted it for. would it look bad if i nominated dodge for moderatorship? hyptothetically speaking, of course. |
Author: | AsianSensation [ Fri Nov 21, 2003 11:54 pm ] |
Post subject: | |
quick mazer, give him a copy of Evasive Manuever, maybe he'll try to take credits for that, lol. |
Author: | Tony [ Sat Nov 22, 2003 12:46 am ] |
Post subject: | |
heh. Well if one was to try to pull EM as their project, I doubt it will work, seeing as it is soo freaking amazing... and besides, it would take more work to understand the program and change enough stuff to even begin pretending its one's program, then to write a new one |
Author: | Mazer [ Sat Nov 22, 2003 8:43 am ] |
Post subject: | |
heh, i'd like to see someone try to take credit for evasive maneuvers. yeah, i'd really like to see them explain the picture for abilities 5 and 6... also, how they would explain that name that keeps showing up in the credits too |
Author: | rizzix [ Sat Nov 22, 2003 3:02 pm ] |
Post subject: | |
is the name in ASCII or an Image ? if it's ascii. u could fix that, just hack it. if it's an image.. edit the file, well unless the image is hardcoded into the program |
Author: | Tony [ Sat Nov 22, 2003 3:49 pm ] |
Post subject: | |
well if its gonna be open-sourced, ofcourse someone could always edit it enough to call it their own. But with a game like EM, someone with enough skills to take the program appart and put it back together wouldn't be in need of stealing Mazer's project |
Author: | rizzix [ Sat Nov 22, 2003 6:27 pm ] |
Post subject: | |
well i'm still trying to figure out how to detect the location of a hardcoded image in a compiled program.. gonna have some fun then |
Author: | Tony [ Sat Nov 22, 2003 8:58 pm ] |
Post subject: | |
rizzix - my sujestion would be to search for the binary representation of ASCII values of the string in question |
Author: | rizzix [ Sun Nov 23, 2003 12:39 am ] |
Post subject: | |
heh good tip.. just figured that a Bit map will begin with a string "BM" interesting.. and 10 bytes after will tell be the offset to start reading the image. and 8 bytes after will tell me the height, and 4 bytes after will tell me the width. multiply the two will tell me how many bits i can change from the offset onwards! twisted! heh i can plagiarize anyones work now |
Author: | StrikerMagazine [ Sun Nov 23, 2003 9:08 am ] |
Post subject: | |
*pats back* you're well on the way to being a fullfledged assembly programmer (!) uh... say, with all the time you would take trying to hex edit EM you could very well make your own prog and not get a zero for plagiarism (...) |
Author: | rizzix [ Sun Nov 23, 2003 10:07 am ] |
Post subject: | |
don't worry man i don't do such stuff.. anywayz there is no point after all i have to show the source code if i intend to hand anything in PS: wha assembly? no way. i hate assembly, i'll just stick to c++ if i have to. prefer java anyday. the only thing good about assembly is that u can read one bit at a time? i dunno !?! |
Author: | StrikerMagazine [ Sun Nov 23, 2003 12:18 pm ] |
Post subject: | |
i'm not a man XD hehe, assembly is really hard to read but you work really close to the machine.. i guess it'd be useful if you needed your prog to control certain things about the actual hardware. X_X (a really ugly language but so useful) also.. *pats back for not plagiarising* ^^ |
Author: | rizzix [ Sun Nov 23, 2003 12:22 pm ] |
Post subject: | |
maybe.. but if it reads one bit at a time it's still worth learning just for that reason. u've got to see how annoying it is to read a byte and then checking the bits 1 by 1.. all 8 of them... when ur app gets a little bit more complex ! woah.. though luck debugging java uses an object called a BitSet.. which eases this pain a bit (not much really).. but it still won't let u read a bit at a time |
Author: | Tendulkar [ Tue Nov 25, 2003 1:27 pm ] |
Post subject: | Re: Does anyone has this program? |
DBZ wrote: Hey i am looking for a program with planes in it, of any kind. if anyone does have a program like thisplease send it to me.
Thanx! Hey Mubeen Here is your program % FROM HERE YOUR PROGRAM STARTS [b][color=green] setscreen ("offscreenonly") var plane1:int:=Pic.FileNew ("c:/My Documents/plane.jpg") for i:1..maxx Pic.Draw (plane1,i,50,picMerge) View.Update cls end for [/color][/b][/b][/color] %And once you enter this code, make sure you have a picture of plane in your hard drive or in same directory where your program is. So that's all you have to do now. |