Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 18:36

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Development]FDOBot [CZ/SK/EN]

Discussion on [Development]FDOBot [CZ/SK/EN] within the DarkOrbit forum part of the Browsergames category.

Closed Thread
 
Old 04/12/2014, 14:24   #31
 
CrazyLazyGuy's Avatar
 
elite*gold: 70
Join Date: Jun 2012
Posts: 440
Received Thanks: 126
C->C++->Java->C#
Differences -> C with C++ -> C++ can be used in both ways procedure(I'm not sure if I wrote it correctly) and object oriented.
C++ with Java -> Java is fully object oriented and it's much easier to learn.
Java to C# -> C# = I LOVE MICROSOFT and has some advantages, while java is I LOVE EVERYONE and it's catching up C# with the lambdas and etc.
C TO C# and Java -> Syntax may be similar nothing else.
C++ compared to Java and C# -> Decide what amount of memory you are going to use(you can control the memory), C# and Java -> they decide what memory is going to be used, that's the reason for C++ to be used in games, you can optimize it much more then the other 2.
CrazyLazyGuy is offline  
Thanks
1 User
Old 04/12/2014, 14:56   #32
 
hawk799's Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 743
Received Thanks: 358
Veľa štastia .....
hawk799 is offline  
Old 04/12/2014, 17:28   #33
 
elite*gold: 0
Join Date: Apr 2014
Posts: 17
Received Thanks: 1
Quote:
Originally Posted by hawk799 View Post
Veľa štastia .....
Díky
Sn1per9CZE is offline  
Old 04/12/2014, 21:10   #34
 
TheFallenAngel's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 479
Received Thanks: 272
Quote:
Originally Posted by CrazyLazyGuy View Post
C->C++->Java->C#
Differences -> C with C++ -> C++ can be used in both ways procedure(I'm not sure if I wrote it correctly) and object oriented.
C++ with Java -> Java is fully object oriented and it's much easier to learn.
Java to C# -> C# = I LOVE MICROSOFT and has some advantages, while java is I LOVE EVERYONE and it's catching up C# with the lambdas and etc.
C TO C# and Java -> Syntax may be similar nothing else.
C++ compared to Java and C# -> Decide what amount of memory you are going to use(you can control the memory), C# and Java -> they decide what memory is going to be used, that's the reason for C++ to be used in games, you can optimize it much more then the other 2.
does seriously no one know anything about programming?
C++ is NOT object oriented. not completely. a simple google search even reveals this.

java is object oriented yes. but has many many security flaws.

C# is java updated. has some additional functionality and is pay to use(microsoft).

and your last statement is completely wrong. you can set memory and computer resource usage limits in all of the languages it is in thier syntax. C is the best one to do this with however
TheFallenAngel is offline  
Old 04/12/2014, 21:28   #35


 
elite*gold: 1091
Join Date: Jun 2007
Posts: 19,836
Received Thanks: 7,180
Quote:
Originally Posted by TheFallenAngel View Post
C++ is NOT object oriented. not completely. a simple google search even reveals this.
C++ can and should be used when it comes to OOP. You can use that language with classes and references and you can use it with some old C structs, raw pointers and buffers. Though that doesn't make any sense at all. Why drive an 30 year old car with 50 PS when you can have a new, fast car with 150 PS which is much more comfortable when driving?

Quote:
Originally Posted by TheFallenAngel View Post
and your last statement is completely wrong. you can set memory and computer resource usage limits in all of the languages it is in thier syntax. C is the best one to do this with howeve
You can do that in C but that's definetely not the language to go when you have the possiblity to use C++. As pointed out earlier, why drive an old car when you can have a new car?

Quote:
Originally Posted by TheFallenAngel View Post
and is pay to use(microsoft).
No it is not. Merely the IDE is pay to use which is not bad at all.

Quote:
Originally Posted by TheFallenAngel View Post
does seriously no one know anything about programming?
Seems that you do not.
Mostey is offline  
Thanks
8 Users
Old 04/13/2014, 01:16   #36
 
TheFallenAngel's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 479
Received Thanks: 272
Quote:
Originally Posted by Mostey View Post
C++ can and should be used when it comes to OOP. You can use that language with classes and references and you can use it with some old C structs, raw pointers and buffers. Though that doesn't make any sense at all. Why drive an 30 year old car with 50 PS when you can have a new, fast car with 150 PS which is much more comfortable when driving?



You can do that in C but that's definetely not the language to go when you have the possiblity to use C++. As pointed out earlier, why drive an old car when you can have a new car?



No it is not. Merely the IDE is pay to use which is not bad at all.



Seems that you do not.

the pay for microsoft IDE is what i meant. visual studio is a joy to use.

C is closer to the hardware level. so when getting down into the dirt like setting resources and memory stuff C is the way to go. C++ is better for some stuff but if u wanna go basic without it turning into gibberish like setting hex's and using assembly then C is what you use. that was the point i was getting at.
the closer you get to the hardware the more options you have when you want to do something

essentially you just agreed with me and told me i was wrong
TheFallenAngel is offline  
Old 04/13/2014, 12:50   #37


 
elite*gold: 1091
Join Date: Jun 2007
Posts: 19,836
Received Thanks: 7,180
Quote:
Originally Posted by TheFallenAngel View Post
C is closer to the hardware level
How did you come to this decision? You can nearly do everything in C++ while being close to the hardware.

Quote:
Originally Posted by TheFallenAngel View Post
. so when getting down into the dirt like setting resources and memory stuff C is the way to go. C++ is better for some stuff but if u wanna go basic without it turning into gibberish like setting hex's and using assembly then C is what you use.
You are completely wrong. Why is C++ better for "some stuff" and why do you think that C++ can't handle things you want to do?

Quote:
Originally Posted by TheFallenAngel View Post
the closer you get to the hardware the more options you have when you want to do something
That's correct but the closer you are, the harder and expensive (in terms of time) it gets.


Quote:
Originally Posted by TheFallenAngel View Post
essentially you just agreed with me and told me i was wrong
I did not agree with you, I told you that you can do that but that'd not make any sense too me. Again: Why do you prefer programming without comfort, more safety, wrappers, libraries and stuff when you can use that?

I'm assuming that you know what the old plain malloc function does. For example, this procedure is covered in C++ as a keyword called new. Therefore, you can move your stuff on the heap as you'd do with the malloc function and some extra operations with less code at the same time.

Well, another one would be the string wrapper. Why use plain char * buffers when you can have the string wrapper class with several advantages? You can even convert that string back to the cstring (const char*) if necessary.
Mostey is offline  
Thanks
8 Users
Old 04/17/2014, 12:57   #38
 
Roman852's Avatar
 
elite*gold: 0
Join Date: Dec 2011
Posts: 475
Received Thanks: 53
Ak chceš testerov tak mi napíš na skype: bestSVK7.

Osobne si tiež myslím že programovat to v Jave nebude moc mudre ale pokusit sa môžeš. Nepoznám tvoje schopnosti . Každopádne sa ozvi.
Roman852 is offline  
Old 04/17/2014, 22:50   #39
 
elite*gold: 0
Join Date: Dec 2013
Posts: 4
Received Thanks: 0
I want be one of this testers if you want. I am from Czech Republic, too.
buhcska is offline  
Old 04/18/2014, 08:33   #40



 
jarit's Avatar
 
elite*gold: 190
Join Date: Nov 2009
Posts: 3,839
Received Thanks: 1,196
Quote:
Originally Posted by melikhan View Post
Make a thread when the bot is done
#closed
jarit is offline  
Thanks
1 User
Closed Thread




All times are GMT +1. The time now is 18:37.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.