-
Posts
1308 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Events
Everything posted by Drake7707
-
No svn or cvs ?
-
ooh once i get it to wavefront, i'll have fun with it when my raytracer is finally finished
-
programming is easy, just writing stuff down to tell the computer what to do. It's designing that the most effort is. Btw trials are prolly based on the clock when installed, so that won't work . Besides, if you wanna save stuff you opened, you have to be able to write to the disk
-
crap my version trial expired .. if you download it you can use it for 30 days (it's called Milkshape 3D)
-
i can convert those with milkshape 3D to almost any format if you want to have triangle meshes instead
-
hm, if other forms pop up, shouldn't you just use frmpopupradar.show and frmpopupradar.hide ?
-
whats wrong with talking to yourself ? i talk to myself all the time when noone is around. I have no idea what the problem is too :s
-
Woot ^^ I like our interface more than from clt (partly because i made it )
-
[v1.2.9.0][Bug] Some more bugs to squish!
Drake7707 replied to L.C.'s topic in Drake Continuum Map Editor
it must be because of the unusual warm temperature in november... because the bugs seem to keep coming -
well as the map is maximized in the mdiform, you'll have actually let it hover above it with another form, if you would just set visible to true for a while, it will shrink the maximized map again, and calls updatelevel again (well maybe if it isn't a performance issue)
-
lvz isn't all that different from regions, its just that pictures get pasted on those spots, but there has to be a way to manage lvz easily, like how are you going to access those files required for an lvz file If anyone has any suggestion concerning that matter, feel free to let us know
-
*.wtl for walltiles of dcme
-
[v1.2.9.0][Bug] Some more bugs to squish!
Drake7707 replied to L.C.'s topic in Drake Continuum Map Editor
Another bug is when you select something on the pixel level, then move it then apply the selection if you select it again, then if you move it again, it won't be on the correct spot anymore. I have no idea why this: parent.picseltemp.Cls Call BitBlt(parent.picseltemp.hDC, totalmoveX, totalmoveY, 1024, 1024, parent.pic1024selection.hDC, 0, 0, vbSrcCopy) parent.pic1024selection.Cls 'parent.picseltemp.refresh Call BitBlt(parent.pic1024selection.hDC, 0, 0, 1024, 1024, parent.picseltemp.hDC, 0, 0, vbSrcCopy) 'parent.pic1024selection.refresh is in selection mouseup, but its totally unneccesary, because it was already moved on the fly in in mousemove, if you add the totalmove AGAIN you'll move 2x (its not onpreview in mousemove, it actually moves) DCME window being out of screen when not maximized is fixed DCME can't abort operations because it didn't held the state before doing the operation on selections, you tried selecting everything around the line instead of the line itself And some more weiiiiiiird stuff If Not selectionmoved Then selstate = notdrawing Exit Sub End If in sel.mouseup This effectively screws up anything trying to select & move with magicwant, makes my selection box go nuts, and i completely fail to see for what it's used. Same goes for selectioncancelled... there is no way that can ever be true, because it's a single threaded process, if you click somewhere, while it is still in some method doing stuff, it gets added to the message queue, vb checks the queue when it goes back to the main loop behind the scenes. You can't abort an operation unless you call DoEvents to give the message a chanche to get sent, so the message can get through For the toolbar, i wanted to have an optimal space for the map itself, so i hid the toolbar when it wasn't used for anything (i'll make an option to pin/unpin the toolbar) Rotation bug has been fixed (the newboundaries that were used to redim the tmpobjects array changed afterwards because of out of map checks, tmpobjects are now redimmed after the newboundaries are final) -
it was just a test to have a bit of semi transparency, but this is also quite an extreme state; i mean, you don't create 5 regions on the same place (partly) on top of each other do you ?
-
If you show regions on the map (you cant see them on pixel level yet) then if you hover over the region you'll see a tooltiptext with the name of the region I'm saying this now or else ppl won't know about it *COUGH*TIP*COUGH*
-
Due to my *ehm* lak of */ehm* knowledge of how to draw ellipses or any non straight lines because of the more "complex" math (which i totally suck in) i just copied the ellipse code from other source code . Might be because of rounding errors tho Besides, pentagons are drawn with regular shapes instead of stars... no ? I hate having a x=0 for i = 1 to 100 x = x + 0.1 next guess what ... x doesn't equal 10 .. stupid small rounding errors at every floating point operation.. *grumble* >.>
-
hmm, no settings.dat .. hmm, although he should make one when it doesn't exist :/ . I'll look into it Edit: hmm no its not that, i deleted it and it creates one just fine. Is there any read-only, or disk full or so ?
-
what files do you got in the folder and what is the path of the folder ?
-
confirmations are only done in the tcp protocol, udp has no verification of actual arrival of data, and is thus much faster for transactions, the con of it is you get packet loss. Edit: well not "much faster", but less data transfer which keeps the lag away for a bit longer.
-
hmm, the region tool is exactly the same as selection, aside that it doesn't contain the tile data. Adding regions will be done in the tooltoolbar instead of the elvl form. I'm thinking about Add/Delete on the tool toolbar, and a small listbox, where you can select regions. Selected region will be drawn, and edited like an active selection to modify the region. The actual properties of the region (besides the name maybe) must be changed in the elvl form (a button to quick jump on the toolbar maybe) I'll see what i can do, you might wanna implement the low level methods to put/get from chunks.
-
it has add / delete region buttons ô_o. It has create from selection and Delete region. Edit: and now it has modify too
-
maybe some integer = 2 bytes instead of normal integer in other languages = 4 bytes error ? Gotta love vb for that ^^ Edit: fcking svn is down >.<
-
Shouldn't it be more like For zone server - directory server ZS:"Hi" DS:"Hi, i don't know you, gimme your info" ZS:"I am zone name, other info blah" DS:"Ok" Then in regular intervals DS:"You still there, if you are, how many players are you connected with" ZS:"Yup, nrPlayers" Then for continuum client - directory server CC:"Hi, gimme a list of the zones you have" DS:"Here's the list" If a zone is down in the client CC:"Hey, the zone is down here at this ip, is it still the correct one ?" DS:"Yes, i get connection timeouts here too" or "No, here's the correct ip"
-
well, i just finished writing the gui for elvl data on the map (it looks pretty and useful ihmo ). All we need now is sama to implement the functions from the interface i made to convert chunks to used stuff in the rest of the program and vice versa. And being able to load/save the chunks correctly and bam elvl is done.
-
a lot of mmo games let you register through the web, and play with your account at the same time, and those have even credit card data involved.