Jump to content

Discussion-> Which programming language you use.


Recommended Posts

Posted

It's nice and I am trying to learn step by step. C ---> C++ , Java ---> Visual Basic,Visual C.

Nice, that's a good "line" to learn . Since you learn C , C++, java and visual C will be easy . Visual Basic will be a bit hard cause of it's syntax but you will learn it  ;D
Posted

Well, i'm coding in JAVA, C++ but mainly in Java.

Reason? maybe its because u can handle the GUI way easier/better in java than any other programming language(imo).

 

So this time my code challenge is to create my own java layout manager and put it to use.

Previous works was... uhm.. lemme see... Avora Messenger(a.k.a msn clone : challenge for udp/tcp packages(call action, pm and stuff), Game engine (camera mode, cellpaths you know like the one that l2 uses.. tho i stopped it (not much interested after a part)), 3D game w/ JME3 engine (thought i lacked gfxers and stuff so.. i stopped at the npc table coding))

That's all, i think.

 

Edit: Oh i didnt mention the l2j thinggies, but no biggie.

Posted

For those who will start learning coding now, I advise you to start with C++. After learning C++ all the another languages except VB will be very easy to learn.

Posted

For those who will start learning coding now, I advise you to start with C++. After learning C++ all the another languages except VB will be very easy to learn.

Visual basic isnt a language for begginers?

Posted

Visual basic isnt a language for begginers?

Νο.

It's a good language to begin(yes) but you can learn it whenever you want and you can do many things with Visual Basic. Personally i don't like it :P , i prefer the family of C languages

Posted

Nice, that's a good "line" to learn . Since you learn C , C++, java and visual C will be easy . Visual Basic will be a bit hard cause of it's syntax but you will learn it  ;D

Also I am learning octave(open-source matlab).

Posted

Never heard about it , what exactly you do with that?

Well it's basically used for mathematic calculations and we use it as electronic engineers for the signals.

Posted

A little tip.

You may think that maths wouldn't be a problem since u decided to become a programmer but...

 

You see, you're totally wrong. (i was wrong as well  :o)

When i came up with the idea of creating my own game engine i've had a lot of trouble coding the Camera functions because i just didn't know the proper maths for it.

Anyway, ill skip the chiti-chat.

Here's a part of a code that needs MATH knowledge in order to move forward(w/ camera):

 

It's actually spherical coordinates maths (A camera is like a coordinate system means its composed of 3 vectors X, Y and Z)

        double xMovement = magnitude * Math.cos(pitch) * Math.cos(yaw); 
        double yMovement = magnitude * Math.sin(pitch);
        double zMovement = magnitude * Math.cos(pitch) * Math.sin(yaw);

 

Being a programmer ain't so easy afterall.

Hope you get what i mean. GL  8)

Posted

A little tip.

You may think that maths wouldn't be a problem since u decided to become a programmer but...

 

You see, you're totally wrong. (i was wrong as well  :o)

When i came up with the idea of creating my own game engine i've had a lot of trouble coding the Camera functions because i just didn't know the proper maths for it.

Anyway, ill skip the chiti-chat.

Here's a part of a code that needs MATH knowledge in order to move forward(w/ camera):

 

It's actually spherical coordinates maths (A camera is like a coordinate system means its composed of 3 vectors X, Y and Z)

        double xMovement = magnitude * Math.cos(pitch) * Math.cos(yaw); 
        double yMovement = magnitude * Math.sin(pitch);
        double zMovement = magnitude * Math.cos(pitch) * Math.sin(yaw);

 

Being a programmer ain't so easy afterall.

Hope you get what i mean. GL  8)

Computer Programming has a really close relationshop with Maths. If you want dont know maths then computer programming is not for you.
Posted

Computer Programming has a really close relationshop with Maths. If you want dont know maths then computer programming is not for you.

That's exactly what i said.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • I talk with him everyday how is that possible? xD
    • Okay, I understand. First, to get started by contributing to open projects and learning along the way. Then, when you mention starting my own project privately, do you mean taking a free datapack like L2jMobius and trying to make it functional for an online server? Great, thank you very much — all this information is really helpful. I’ve been reaching out to several server admins here in Argentina, but it seems like none of them have the time or interest to take on an intern or assistant. xd   P.S.: Are you the creator of Hopzone? Brings back memories of when I was a kid, downloading servers at the cyber café. For two dollars, I could spend the whole day playing and eating candy like crazy.   Another question: between L2jMobius, L2jServer, and aCis, which one has ALL of its code free? As you probably noticed, I'm using ChatGPT to help me translate things, lol, and it suggested the following: Project Status Open Source Accepts Juniors? Difficulty L2JMobius Very active Semi-closed Partially (with patches) Medium-High L2JServer Active Fully open Yes (directly on GitHub) Medium aCis Semi-active Unofficial Not very clear Low
    • @Logan22 Are you logan from mmo-dev forum?
    • That's exactly how it’s designed — everything important is handled on the API server side, for example, processing requests to the game server. Each website has its own token/key for authentication; without it, there will be no interaction with the game server. Some data can be stored both on my side and on the server side to avoid making frequent requests to the server, which is logical.   Yes, there’s a lot of old, unused code that just needs to be cleaned up. It was used before, but after major rewrites it was left lying around. It doesn’t interfere with anything — it’s just there and doesn’t affect the system's operation.   Beaver meme kurwa is my favorite. Unfortunately, you don't know Russian — otherwise, you would’ve spotted even more Easter eggs. 😂   I said it’s been installed over 250 times on different domains. You can join my Telegram, there are almost 200 people there — and those are just the ones who entered the chat — and we’ll have a good laugh together at your doubts! 😂😂😂
  • Topics

×
×
  • Create New...