Computer Science Canada A Map Maker |
Author: | darkangel [ Thu Feb 28, 2008 5:12 pm ] | ||
Post subject: | A Map Maker | ||
Because no one has posted in the Turing board for several days now i figured, why not? This is a basic map creation program i made, it has: -Snap to grid -Helpful Undo Command -If wanted, a guideline to show you your partialy made polygon. -Saves to a file, EFFICIENTLY <b>Instructions:</b>
<b>Right Click (HOLD)</b>: draws the partially drawn polygon <b>Middle Click</b>: Saves and Exits. <b>Ctrl Z</b>: Undo PS: You can change the amount of points in each polygon in the variable "poly" and changing the upper of the variable in record "coo"
|
Author: | that-guy [ Thu Apr 03, 2008 5:13 pm ] |
Post subject: | Re: A Map Maker |
I don't mean to be mean here or anything but there are a lot of things in this code that I know a more efficient way of doing. Also, when you save to file, use the write command. Writing works much faster than putting. (Use an array with it). good job though i guess. |
Author: | Tony [ Thu Apr 03, 2008 7:02 pm ] |
Post subject: | Re: A Map Maker |
that-guy @ Thu Apr 03, 2008 5:13 pm wrote: there are a lot of things in this code that I know a more efficient way of doing.
This is where you list what those things are... |
Author: | Tallguy [ Tue Apr 15, 2008 9:50 am ] |
Post subject: | RE:A Map Maker |
thats a cool idea, good job, i can several ways u can apply this to different programs |
Author: | r.m_spy [ Sat Apr 19, 2008 7:45 pm ] |
Post subject: | RE:A Map Maker |
I don't understand what this is for? |
Author: | darkangel [ Sun Apr 20, 2008 5:03 pm ] |
Post subject: | Re: A Map Maker |
Basically lets say you wanted to make a overhead shooter game. Instead of making a picture and doing the very inefficient whatdotcolor() method of collision, you are able to do Math() functions because you know the corners (points) of your obstacles. plus if you want to make lots of maps for your overhead shooter, whats going to be easier to distribute? A 5-10 kb file? or a 5-10mb BMP? (my overhead shooter uses big maps too) |
Author: | Nick [ Sun Apr 20, 2008 5:08 pm ] |
Post subject: | RE:A Map Maker |
maybe I'll put my map maker on soon |
Author: | darkangel [ Sun Apr 20, 2008 5:09 pm ] |
Post subject: | Re: RE:A Map Maker |
nick @ Sun Apr 20, 2008 5:08 pm wrote: maybe I'll put my map maker on soon
maybe you should. |