Re: why are developers moving towards python?

2020-11-01 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: why are developers moving towards python?

@11Yes, we do.  And it's going to keep happening until people stop trying to use BGT first, then realize that it's a dead end because you can't even get it past antivirus.

URL: https://forum.audiogames.net/post/585383/#p585383




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


Re: why are developers moving towards python?

2020-11-01 Thread AudioGames . net Forum — Developers room : zakc93 via Audiogames-reflector


  


Re: why are developers moving towards python?

Lol, it feels like we have this discussion at least once a month.

URL: https://forum.audiogames.net/post/585339/#p585339




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: why are developers moving towards python?

For some perspective, I use 3 at work.  On the same day even.  Rarely 4.  Work has 6 total that I can think off offhand, but I think there's some Lua somewhere, so it's probably 7, and if we count the sdks that we rarely have to touch and the couple things that only one or two devs ever deal with, it's somewhere around 10.In a professional capacity, it's very hard to get below two on the same project if only because anything that's going to use the browser has no choice but to use _javascript_.Languages solve specific problems, especially nowadays when making a new one is only ever done to solve a specific problem anyway, since there's so many general ones.  Python is just a good, neutral choice.  Not the fastest.  Not the most expressive.  Maybe not even the most productive for a particular problem.  It's like buying an oven vs that weird thing for pealing boiled eggs.  No, the oven isn't going to do much to help you with your boiled egg problem, but you get way more out of the oven and can peal the egg with your fingers.  Go the other way and there's no way you're having chicken for dinner.  Only one of them gives you a super functional kitchen.

URL: https://forum.audiogames.net/post/585070/#p585070




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: why are developers moving towards python?

People seem to have a sense of anxiety around the percieved "speed" of Python, but as with many things it depends on a number of factors. Generally speaking, Python isn't slow, most programs rely on support libraries that are often written in more heavily optimized lower level languages anyway, and with any kind of programming what kind of performance you get really depends on implementation and optimization, regardless of language.Granted, Python is better for some things than others from an effort standpoint, but thats also true for any language. In much the same way that you wouldn't use python for writing lower level CPU code, the same is said for writing higher level code with Assembler or C. Most programmers usually end up learning and using more than one langauge based on their needs, Python just happens to be a good place to start and branch out from.

URL: https://forum.audiogames.net/post/585061/#p585061




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : ogomez92 via Audiogames-reflector


  


Re: why are developers moving towards python?

Hell, we can even run nice audiogames on smartphones, remember papa sangre? Maybe you like accessible hangman? I'm making another game now, and it uses a lot more audio than my 2 previous games, and it runs perfectly fine on my mom's iPhone 7.

URL: https://forum.audiogames.net/post/585042/#p585042




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: why are developers moving towards python?

Yeah I mean, pretty much.  Speed in audiogames just isn't necessary.  Shades of Doom was written something like 15 years ago and ran fine on low-end machines and audiogames basically haven't advanced since then while computers have gotten something like 1000 times faster, so it just doesn't matter anymore.  Use the slowest language you can find and you'll still be fine.

URL: https://forum.audiogames.net/post/584995/#p584995




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : Lucas1853 via Audiogames-reflector


  


Re: why are developers moving towards python?

Something something doesn't matter something something audiogames don't need speed anyways something something.

URL: https://forum.audiogames.net/post/584989/#p584989




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : Dragonlee via Audiogames-reflector


  


Re: why are developers moving towards python?

python is slower than Java, just as virtually all interpreted language are compared to compiled ones, however a lot of the time you don't care whether your program finishes a task in 10 ms or 100ms, but the fact the program automates a task for you that manually takes you 30 minutes to do.personally, most of the time I use python for automation and there is a really good reason I use it and not Java. 1. writing a simple program in python is way way faster than in java. literally just write a single file and then run it.2. Java really sucks for short running programs that you typically envoke from a command line because of latencythe latter point is due to java being a just-in-time compiled language, meaning when you envoke a java program, it actually needs to warm up by compiling the java byte code to the platform's native machine code. so for such programs python will actually give you better performance anyway.edit: also two other reasons many programmers choose python over java is its relatively cleaner syntax and the fact python is dynamicly typed whereas java is statically typed.many programmers just don't like static typing and so just prefer a language like python. personally I love static typing, although I have to say Java's type system is aweful and probably a major reason why a lot of programmers are put off by static typing in general, even though it is technically superior when combined with automatic type inference like it is in Scala, typescript, Haskell, Elm, and others.lastly, this issue isn't black and white. most programmers end up using different languages for different things. so it isn't uncommon for a programmer to use both java and python.

URL: https://forum.audiogames.net/post/584958/#p584958




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : Dragonlee via Audiogames-reflector


  


Re: why are developers moving towards python?

python is slower than Java, just as virtually all interpreted language are compared to compiled ones, however a lot of the time you don't care whether your program finishes a task in 10 ms or 100ms, but the fact the program automates a task for you that manually takes you 30 minutes to do.personally, most of the time I use python for automation and there is a really good reason I use it and not Java. 1. writing a simple program in python is way way faster than in java. literally just write a single file and then run it.2. Java really sucks for short running programs that you typically envoke from a command line because of latencythe latter point is due to java being a just-in-time compiled language, meaning when you envoke a java program, it actually needs to warm up by compiling the java byte code to the platform's native machine code. so for such programs python will actually give you better performance anyway.

URL: https://forum.audiogames.net/post/584958/#p584958




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: why are developers moving towards python?

Having tried both Java and Python, Python is just better for games. Java comes with better geometry than you can get from Pygame, and better 2d graphics, and both have extensive 3rd party libraries... But the things you have to do to get good and distributable games from Java are more troublesome (particularly for the end user) than the equivalents for Python. In addition, programming with Python is much easier, and your packages and exception handling, etc, are not overly elaborate series of needlessly verbose class and package names with two lines of content that could have fit into a couple Python functions.That said, Java does have several features that I prefer, and I do like me some free java.awt.geom (or whatever they replaced perfectly functional stuff with since I abandoned it for BGT and Python). But Java's whole "it's cross-platform!" selling point fails in practice, and speed is irrelevant for all but the edgiest of edge cases. Are we doing complex real-time 3d rendering, particle effects, simulations, or giant servers with absurd numbers of operations per second? If not, we don't need to worry about the speed differences among programming languages.One speed-relevant application for audio games would be 3d audio, and you'll find that 3d audio libs are in C++ and called through dlls anyway, rendering the high-level language calling them moot.

URL: https://forum.audiogames.net/post/584947/#p584947




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector


  


Re: why are developers moving towards python?

Having tried both Java and Python, Python is just better for games. Java comes with better geometry than you can get from Pygame, and better 2d graphics, and both have extensive 3rd party libraries... But the things you have to do to get good and distributable games from Java are more troublesome (particularly for the end user) than the equivalents for Python. In addition, programming with Python is much easier, and your packages and exception handling, etc, are not overly elaborate series of needlessly verbose class and package names with two lines of content that could have fit into a couple Python functions.That said, Java does have several features that I prefer, and I do like me some free java.awt.geom (or whatever they replaced perfectly functional stuff with since I abandoned it for BGT and Python). But Java's whole "it's cross-platform!" selling point fails in practice, and speed is irrelevant for all but the edgiest of edge cases. Are we doing complex real-time 3d rendering, particle effects, simulations, or giant servers with absurd numbers of operations per second? If not, we don't need to worry about the speed differences among programming languages.

URL: https://forum.audiogames.net/post/584947/#p584947




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : bhanuponguru via Audiogames-reflector


  


Re: why are developers moving towards python?

agree with @2it has great features. comparing to those, slow is just a peace for me. that's why i love python and i use python, and, and, um i don't know what to say now. i love python

URL: https://forum.audiogames.net/post/584938/#p584938




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : ogomez92 via Audiogames-reflector


  


Re: why are developers moving towards python?

Python's very good for a lot of things, I never used it for games myself but don't make the mistake of saying that a language isn't good because its slow. I've used python a lot at work lately, it's really good when it comes to data science and machine learning.

URL: https://forum.audiogames.net/post/584931/#p584931




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


Re: why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : ogomez92 via Audiogames-reflector


  


Re: why are developers moving towards python?

Python's very good for a lot of things, I never used it for games myself but don't make the mistake of saying that a language isn't good because tis slow. I've used python a lot at work lately, it's really good when it comes to data sciece and machine learning.

URL: https://forum.audiogames.net/post/584931/#p584931




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


why are developers moving towards python?

2020-10-31 Thread AudioGames . net Forum — Developers room : blindLightning via Audiogames-reflector


  


why are developers moving towards python?

i understand python is significantly betterr than bgt, but in the skeme of thing, python is slow. why don't developers use languages like Java which run a lot faster than python.

URL: https://forum.audiogames.net/post/584929/#p584929




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