Tom

681
Reputation
199 views

Registered User

Name Tom
Member for 11 months
Seen 1 hour ago
Website
Location
Age
Nov
23
comment When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?
What if it's draining too much resources to continue using your system, which is what you prefer to do at that time, though you could still do some lower priority job using a pencile and paper?
Nov
23
asked When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?
Nov
19
awarded  Popular Question
Nov
16
comment How to run, monitor and stop a PHP script using SSH on a shared webserver?
Tried, it returns nothing.
Nov
16
comment How to run, monitor and stop a PHP script using SSH on a shared webserver?
When I try "pidof php" I get "command not found".
Nov
16
comment How to run, monitor and stop a PHP script using SSH on a shared webserver?
Quote: "I tried to use the command "top", but it only listed actual top level processes, not PHP scripts." No PHP processes are listed there, as far as I've seen. Should I try something like "top php" ?
Nov
16
comment How to run, monitor and stop a PHP script using SSH on a shared webserver?
Is it not possible to run the script under the same user as the SSH session?
Nov
16
asked How to run, monitor and stop a PHP script using SSH on a shared webserver?
Nov
15
comment PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)?
I simply want a function which returns false when the given string contains any characters other than the given characters a-z, A-Z, 0-9, #, -, . and $
Nov
14
comment PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)?
the string "0test1#test1#a1.0.000$" returns false for both your functions, should I inverse their returns?
Nov
14
comment PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)?
why wait for problems to arise when they can be addressed now without too much hassle? there's not that many functions to do it I believe so it shouldn't be too much of a hassle, right?
Nov
14
asked PHP: fastest way to check for invalid characters (all but a-z, A-Z, 0-9, #, -, ., $)?
Nov
12
comment Key press issue in ActionScript 3
FYI: you can also fire an event on the flash client when it's loosing focus, no need to use javascript for that.
Nov
12
answered Can XMLSocket send more than once in a frame?
Nov
11
comment How to achieve Comet using Flash
I personally prefer the Socket class as it provides more options.
Nov
11
comment copy+paste from eclipse to flash does not work
sounds like it's a bug in Flash CS4 as the code is on your clipboard.
Nov
11
answered copy+paste from eclipse to flash does not work
Nov
11
answered How to achieve Comet using Flash
Nov
10
comment How do you stop a setInterval function?
That should work, can you post more code?
Nov
9
comment Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
Oh sorry, I must've misread.
Nov
9
comment Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
Wish I could accept both answers, afraid RC was a bit earlier though. Thanks for the code elaboration too!
Nov
9
asked Why self::function() and $self->variable or self::$variable even though there is $this->function() and $this->variable (PHP)?
Nov
7
comment How to control sound in a pure DHTML game
Alright, didn't know about it. I guess it's a better approach for the OP as it has probably already been tested and documented well.
Nov
6
answered How to control sound in a pure DHTML game
Nov
6
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
I still don't get it, I never said that I thought you were talking about round trip times. It's indeed the time where the server receives it, and like I said before, this can vary. So when the first message is received in 100ms and the second in 25ms that will cause trouble. I still don't see where your system is solving that issue.
Nov
6
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
Thanks for the clarification but it doesn't make much sense to me as I am already using the time when the server receives the message, not when it is being processed. In your example everything works fine sure, but when the first package is being delayed it will show position 1 at time 50 instead of 1, for example. Then when the second package has no delay, it will have position 3000 at time 100. That's 50 time difference, which could make it detect it as cheating. I don't see how your system is solving this as you are using the time when the package is received by the server.
Nov
6
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
I don't see how your system can take care of synchronisation correction, as the other clients do not know the exact position of the corresponding client. If you want to let the server calculate the position and then send it to the client, see the responses I made to Mads.
Nov
5
comment UDP real-time games in Flash/Flex available Open source RTMFP implementation
Good question! Fiftheen.
Nov
4
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
It might be that small-scale multiplayer games do choose such method, I am not very experienced there. I'm thinking about a massive multiplayer game, and so far they all seem to let the client do the resource expensive calculations while letting the server verify it (less resource intensive). Could you elaborate the "Enforce the rule that one worldframe means one client packet. Ignore packets from the future and packets from the (ancient) past."? When exactly would you ignore certain messages and why? It sounds interesting but I'm lost here. Thanks in advance.
Nov
4
comment Howto avoid people from having multiple accounts in a free to play multiplayer game?
I am in peace with the closure, as the answer has been given and accepted regardless. Though personally, I don't think my question is a duplicate of the one linked above.
Nov
3
awarded  Organizer
Nov
3
comment Un-grant access to webcam
Someone might want to move this to SuperUser.
Nov
3
revised Un-grant access to webcam
edited tags
Nov
3
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
Interesting, so I would have to combine several methods. Yours and mine. I am not completely convinced that having multiple samples is going to solve the problem though, as there will also be multiple lag occasions which could imbalance the time differences.
Nov
3
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
Mads, all my summary says is that the game sends the server movement (location) information. This is true, even with my button state system. Like I said earlier, these locatin information updates are there to synchronize the clients in case there has been lag. A client could send an invalid location update which would lead to invalid correction, so he could teleport. This is where the anti-cheating comes in at the server's side. I disagree that all movement should be calculated by the server, professional multiplayer games haven't chosen this path either.
Nov
3
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
That would mean that they can 1) teleport far away and then 2) teleport back and the anti-cheating system would not kick in. That's not acceptable.
Nov
3
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
1) I am using button states, the location updates are only there for corrections which are needed because of lag 2) I do not trust the client, because if I would I would not be verifying it - just sending button states will not keep players synchronized.
Nov
2
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
I don't think that answers what to do when there's less than 3 recordings. Sorry about the confusion but I'm not sure how to implement it otherwise.
Nov
1
comment Using TCP for real-time commands: Nagle arithmetic causes huge delays, what should I do?
That's confusing, two people having the same name in one thread.
Nov
1
comment Multilingual alert messages in JavaScript
Wouldn't it be better to store the dictionary server-side so that the client doesn't have to download a whole dictionary including messages that he will never see?
Nov
1
comment Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
A potential flaw in your system could exist in the beginning of the game. If you only have two position updates so far, you'd have to use the previous one. If that is a lag spike, it would kick you. If you ignore the first few updates at the server side, that would mean that players can always teleport by restarting the game and then teleport once each restart. Any ideas on that?
Nov
1
asked Howto take latency differences into consideration when verifying location differences with timestamps (anti-cheating)?
Oct
30
asked Howto avoid people from having multiple accounts in a free to play multiplayer game?
Oct
30
answered Selecting good, non-conflicting keybindings for a game
Oct
30
accepted How to Prevent SWF from Decompiling?
Oct
29
answered is String.replace any faster than String.split … String.join in as3?
Oct
29
answered How to Prevent SWF from Decompiling?
Oct
27
asked Balance between fast and secure: time sensitive password encryption algorithm
Oct
26
revised How to let the server inform game clients about other nearby visible players in an efficient way?
added 109 characters in body; added 4 characters in body; added 41 characters in body
Oct
26
asked How to let the server inform game clients about other nearby visible players in an efficient way?