But as a complete noob, how does one know what libraries are available, how to use them, or even what libraries are? I'm sure it's possible to do, but I think that the learning curve from complete noob to "look at my first game" is going to be significantly higher in C++. Also, there's still the point that if one is making indie games, c++ probably isn't the language of choice these days, so why start with it?But lets also be real and you can get a "game" up and running in C++ just as quickly. You may need to know the IDE a bit more but it isn't exactly hard to get 3d objects complete with physics working in C++ with the breadth of libraries freely available.
Any engine he uses to build his game is going to have a learning curve. C++ has been around for a very long time and the number resources available are incredible.But as a complete noob, how does one know what libraries are available, how to use them, or even what libraries are? I'm sure it's possible to do, but I think that the learning curve from complete noob to "look at my first game" is going to be significantly higher in C++. Also, there's still the point that if one is making indie games, c++ probably isn't the language of choice these days, so why start with it?
To piggy back onto that, you can make some very enjoyable game content without much technical knowledge by making a mod for Skyrim or Fallout New Vegas. All the tools and documentation and community is there and you're more likely to get someone to play the damn thing if you spend 1000 hours making a cool dungeon in Skyrim/FNV than if you spend 1000 making a piece of shit game.I'll go against most of the advice here and say that you shouldn't start with c++. If you were going to train yourself to be a proper programmer, you'd have already done so. You don't want to program. You want to make games (and programming them is the means to your desired end).
Install Date Model Manufacturer Warranty
Location 1
Location 2
Location 3
______________________________________________________________
\Switches/
Do it in javaHijacking this thread because I can't find a "General Purpose Programming" question thread. So am going to try to crowd source this.
Doing a side project at work that involves inventory of devices for about 1,200 different locations spread across 6 different OpCos. Each opco has their own Excel inventory workbook.
These inventory books are organized, basically, by each tab representing a different device type. So there are tabs for "Routers," "Switches," "Servers," and so forth that are common across all workbooks. Each device tab has a number of columns like "install date," "warranty date," "model" and many more. Not all tabs contain the same columns or in the same order.
Devices are organized on each tab by a unique key representing a physical location. So a tab for "Switches" would read something like:
Code:Install Date Model Manufacturer Warranty Location 1 Location 2 Location 3 ______________________________________________________________ \Switches/
Location is unique across all tabs. So I want to run a script or something to organize all this info by Location instead of Device.
It just isn't useful to me to organize this by device type. I'd much rather have each tab represent a site or some export that just represents the devices at Location X in a table with a few of the important columns I need.... like Model and Manufacturer.
Tried Pivot tables but can't really get there, so started digging in to more on the lookup and offset side of the house, then some VB stuff... Anyways, not really important but thought I'd throw it out there. Maybe I can pay someone $20 on one of those websites to write me something.
Hijacking this thread because I can't find a "General Purpose Programming" question thread. So am going to try to crowd source this.
Was wondering why I suddenly got a notification someone worfed a post of mine from almost 9 years ago...
Is your game done yet?