Re: Online game in bgt!

2015-09-07 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: Online game in bgt!

The lag isn't inherent to the type of game, so much as the fact that almost none of us have access to the sorts of servers that can reduce lag to a few milliseconds. You need to get a feel for the lag even when using something very simple, preferably with lots of tests from different geographic locations. Once you know how much lag ot expect in the common case, you'll have to figure out if your game can accommodate the lag.(Hint: the better the clients are at predicting what will happen, the more lag you can hide. To the extent that you should try to avoid sending anything deterministic because the clients should be able to handle those in realtime.)

URL: http://forum.audiogames.net/viewtopic.php?pid=230977#p230977




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-09-07 Thread AudioGames . net Forum — Developers room : momo7807 via Audiogames-reflector


  


Re: Online game in bgt!

HiSorry for bringing back this old post. Someone posted a topic about online games in bgt, and I have a question about this. That's why I brought back this post.If I make an online game in bgt, What can I make in bgt without a huge lag? Everything except for fps's?

URL: http://forum.audiogames.net/viewtopic.php?pid=230960#p230960




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-06-14 Thread AudioGames . net Forum — Developers room : audioracer via Audiogames-reflector


  


Re: Online game in bgt!

Ooo. Can you imagine a racing game with that? I am making a simon game bassed off BGTs memory train tutorial and Im not liking what Im hearing. Because I want to do a multiplayer mode that will go up to four players. So if I cant do it, then All I can say is screw it. And remove the multiplayer item from the main menu.

URL: http://forum.audiogames.net/viewtopic.php?pid=219910#p219910




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-06-14 Thread AudioGames . net Forum — Developers room : samtupy1 via Audiogames-reflector


  


Re: Online game in bgt!

A simon game, might... not be insainly hard, but it would be different. Thats for sure. I find that doing both online and offline modes for a game is just streesull beyond belief.

URL: http://forum.audiogames.net/viewtopic.php?pid=219912#p219912




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-05-26 Thread AudioGames . net Forum — Developers room : samtupy1 via Audiogames-reflector


  


Re: Online game in bgt!

Well like I said its up to you to find a way to make it all work. For me I do all things serverside because if you do most of it client side someone can hack your game easier and its not cool. So stick with the classes on the server sending packets to the client telling it to play sounds.

URL: http://forum.audiogames.net/viewtopic.php?pid=217843#p217843




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-05-24 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector


  


Re: Online game in bgt!

Welcome!So I speak in detail.1. I have bgt, and only bgt.2. I have a server on my computer;3. All sound files, etc are stored in kleenta the game;4. Each player is recorded in the class of users;5. When it comes into play, the object receives its activation via, for example, variable.And here is how its all done, the server, etc. I Do not Know.

URL: http://forum.audiogames.net/viewtopic.php?pid=217562#p217562




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-04-08 Thread AudioGames . net Forum — Developers room : samtupy1 via Audiogames-reflector


  


Re: Online game in bgt!

well, from what ive witnessed and making a multiplayer game my self, if you do it just right it wont be amazingly offle either. If your players can deel with like a 200 to 300 ms ping, well then you could probly do it. Its not fun though. I remember when I released survive the wild, the 200 ms held till about 10 players, then broke to a vialent 3 seconds. But I find that with bgt, what causes the loss in fpss is most people decide not to be smart, and when they fire a machine gun, it sends a packet, which the server then has to return to the rest of the players. So saying, if you had a lightning fast machine gun that can fire once every 50 ms, what would have to happen, your game would send something, then the server would take that, and if the bullet were to hit someone, it would have to send a packet with something like a pain sound, as well as the firing sound. Do you notise how in rtr, sometimes if a player goes offline or there game goes messed up some
 times you just hear them shooting non stop when they really are not? I think in rtr, he sends like start shooting, stop shooting, or something a little more dynamic than a packet every 50 ms. Because that is what causes lag. Not to mention, the server has to have a loop, nested in a loop, nested in a loop, sometimes over and over again. In the server you have your main function whare stuff gets set up, then the looptakes over. Well, you need to have it look at players which youd have to store in an array, and itd have to see what goes on with them and health and stuff, so if there health was 0 theyd die, it has to check the main stuff like connecting players, it has to check items if you were to have those, etc all in different loops. And you have to therefor make sure the loops are being called correctly. Oh boy ill never forget the time I had to decrease lag on my server, well, I sort of called a loop twice, and it caused a stack over flow. But the pr
 oblem was, server updating. My host has a thing that can chat me runtime errors and restart the server so I can fix the error and the server doesnt stay down. Well that kinda fails when you cause a stack overflow or some other odd error on startup. Yay for me being spammed like heck with skype chats. Peobly ran the host machine insain. lol. But that could cause some issues for you to is server updating, not really if people will beable to host there own servers, but, if you host one, its an exe file. Unless you can forward ports, youd need a host, and a way to update the server. And sometimes coming up with that, aint fun. And also camlern was right about the locational and internet speeds, it could be both players or servers. So I think if the network object is used just right and the server is coded correctly, and you have a good way of hosting servers and not spamming your players with packets, then I say give it a try.

URL: http://forum.audiogames.net/viewtopic.php?pid=211650#p211650




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-20 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector


  


Re: Online game in bgt!

have a goal to make the game as a swamp.;chose bgt, because only there, there is still a blitz3d have surround sound without calculations.;and now what do do?

URL: http://forum.audiogames.net/viewtopic.php?pid=209247#p209247




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-09 Thread AudioGames . net Forum — Developers room : Genroa via Audiogames-reflector


  


Re: Online game in bgt!

Why is BGT network so slow, even with unreliable packets (UDP) ?

URL: http://forum.audiogames.net/viewtopic.php?pid=208018#p208018




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Online game in bgt!

Its not BGT. Theyre all about that slow. Sometimes you can get faster, and many players will usually be down around 100-200 MS even with TCP, but thats only for people near your server geographically and on good high-end internet plans.Basically, the speed of electricity (which I believe is less than the speed of light), bouncing off satellites, packet loss, routers needing to hold your packet in a queue while they run software on it, etc. Ping various web sites. Thats about the time with TCp. Its roughly half for unreliable packets, roughly and not always and with caveats.

URL: http://forum.audiogames.net/viewtopic.php?pid=208023#p208023




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-09 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Online game in bgt!

Im not saying you cant. Im saying most players. I have been very careful to use the word most players.I am on university internet and therefore get 2 or 3 MS to Google who, judging by this number, probably has a datacenter near me. If youre on a university network, youre most likely on the very backbone of the internet. If you also ping places that are on the backbone like you are and if theyre geographically close, yes, you can get some very impressively low numbers.But most people arent on this kind of internet, let alone most blind people. Most blind people probably dont even have top-of-the line home internet. And Im pretty sure that any project youre considering cant afford to buy space in the best datacenter you can find, let alone put a server in every country. If you plan to be playable around 150-250 MS lag, youll hit a whole lot of people. I
 f you plan to be playable around 30-50 MS lag, youll hit very few people. If you geographically limit the game, you will hit few enough people you might as well not bother.And if you assume you can always and only use unreliable packets for everything, well, meet the people with 75% UDP packet loss for whom you probably have to switch to TCP or purely reliable UDP if theyre even going to play at all.Ping to my VPS in a datacenter in Denver from my highest-end-possible college backbone internet in Florida? 70 MS. It would not be possible for me to upgrade my internet to this level without inordinate amounts of money if I were in my home. It would not be possible for me to upgrade the network situation of my server much if at all for likewise inordinate amounts of money. If you can shell out $100 or so a month, you can get an actual private server in a datacenter and etc, but few of us have that and youll need another $100 or so a 
 month to get your home internet up to an equivalent in most places. Some places like Kansas have gigabit internet for reasonable prices, but these are few and far between and they still dont mean that your round-trip time is low.Im sorry to disillusion you but yes, if you do this, most players will be a quarter to a half second behind. Shared timestamps are not possible. Ive looked into that too. If you do something like SoundRTS it barely matters. If you do something like Swamp, you need to put all sorts of stuff in place to make sure the game remains playable. This is where a lot of the cheating that Swamp does in regards to whats synced and whats not comes from.

URL: http://forum.audiogames.net/viewtopic.php?pid=208034#p208034




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-09 Thread AudioGames . net Forum — Developers room : Genroa via Audiogames-reflector


  


Re: Online game in bgt!

How do you explain that I get less than 50ms ping in some professional games (using servers in countries around mine of course)

URL: http://forum.audiogames.net/viewtopic.php?pid=208028#p208028




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-09 Thread AudioGames . net Forum — Developers room : Genroa via Audiogames-reflector


  


Re: Online game in bgt!

How do you explain that I get less than 50ms ping in some professional games (using servers in countries around mine of course) And with a powerful connection (university) I can get around 5ms on some servers. yes it looks incredible but it is a fact

URL: http://forum.audiogames.net/viewtopic.php?pid=208028#p208028




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Online game in bgt!

You will probably end up using Enet, though, when all is said and done. Other languages may provide better networking, but TCP is really bad for realtime online stuff.And lag is hard. Lag is the reason we dont all have online games. If you arent using reliable packet transmission, you can assume all clients are 250 milliseconds behind the server minimum. They may not be, but be conservative because many will be. If you are using TCP, double this, at least from the servers perspective. Other forms of reliable packet transmission may or may not run faster in terms of when the client and server can see state.If you are not making an FPS, its manageable. Card games are fine. SoundRTS is fine. As soon as you say FPS, you need to start thinking about it though. There are many solutions to it. One simple one is the one Quake 3 uses. This page is in English, and I do not know where to find translations or if such even exist.Unfortunately, though, higher level wrappers are nearly impossible. This is something where most games write their own because theres not really one model that works universally. Your higher level networking stuff usually speaks a specific protocol or looks like twisted or Node.js, both of which are useful but decidedly not small or quick projects. The one BGT is providing is already a higher level than most games work at. The only thing that can be said here I think is that queues of messages are common: separate the networking into a thread and have it send deserialized messages on a to-be-processed queue and take deserialized messages for serialization and broadcasting on an outgoing queue. But even this is not universal, and it may not even be particularly common.

URL: http://forum.audiogames.net/viewtopic.php?pid=207951#p207951




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : revan via Audiogames-reflector


  


Re: Online game in bgt!

hello there,   i can say,  bgt is not good for online games,  we are using visual basic c, 6, that is more better

URL: http://forum.audiogames.net/viewtopic.php?pid=207952#p207952




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : revan via Audiogames-reflector


  


Re: Online game in bgt!

hello there,   i can say,  bgt is not good for online games,  we are using visual basic c, 6, that is more better,  see swamps server, 60 70 player connecting same time, and not more laggy!

URL: http://forum.audiogames.net/viewtopic.php?pid=207952#p207952




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Online game in bgt!

Visual basic 6 is worse than BGT. Visual basic 6 requires a bunch of special steps to run on a modern system and died something like 10 years ago. If VB6 still runs in 5 years, Ill be very astonished. Id bet on it being completely dead by Windows 10 or whatever comes after. If youre not going to use BGT for this, something which may not be a good idea for Jonikster given his questions, use Python or C# or VB.net or even java. These technologies have foreseeable futures for which people will be able to run your stuff without difficulty.But seriously, look at all the problems people periodically have getting Swamp running. If you use VB6 for new projects, you deserve everything that *will* happen to you over the next few years as the technology youre using continues to be deprecated.

URL: http://forum.audiogames.net/viewtopic.php?pid=207961#p207961




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : jonikster via Audiogames-reflector


  


Re: Online game in bgt!

but UP is made on the same bgt, and I want these games, too.;server on my computer will.;please tell me how important.

URL: http://forum.audiogames.net/viewtopic.php?pid=207880#p207880




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-08 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Online game in bgt!

UP is made in BGT, but have you ever played it and noticed that it gets terrible lag after more than three players are on? We actually had to impose a 3 player limit to get rid of it, and even then it still lags.

URL: http://forum.audiogames.net/viewtopic.php?pid=207892#p207892




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-07 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Online game in bgt!

Also, I dont recommend that you make an online game in bGT. Its not meant for it, and the network object sucks.

URL: http://forum.audiogames.net/viewtopic.php?pid=207803#p207803




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-07 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Re: Online game in bgt!

Hi Jonikster.I cant help you with this but Ill make a suggestion. You seem to have a lot of questions and youve made a whole bunch of topics. Why dont you put all your questions in one topic so you dont have to make so many topics? That way if you need to look at peoples answers again you can just go into one topic.

URL: http://forum.audiogames.net/viewtopic.php?pid=207801#p207801




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Online game in bgt!

2015-03-07 Thread AudioGames . net Forum — Developers room : Genroa via Audiogames-reflector


  


Re: Online game in bgt!

As the BGT help says, the network would need wrappers objects to have a better network management

URL: http://forum.audiogames.net/viewtopic.php?pid=207824#p207824




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector