Kuribo64
Views: 19,996,426 Home | Forums | Uploader | Wiki | Object databases | IRC
Rules/FAQ | Memberlist | Calendar | Stats | Online users | Last posts | Search
04-20-24 01:06 AM
Guest:

Main - Posts by FinalShroom81

Pages: 1 2 3
FinalShroom81
Posted on 11-01-16 07:00 PM, in What kind of skills do I need? Link | #79395
Thank you Sparsite

FinalShroom81
Posted on 11-08-16 05:56 PM, in [BUG] Images display upside down at random when viewing a post. Link | #79565
So I was viewing some posts today when I came across a glitch that for some reason made ever user's profile image including mine appear upside down. This seems to happen whenever I view a post. It's nothing major and is easily fixed with a refresh of the page but I thought It might be helpful for you to know.

FinalShroom81
Posted on 11-10-16 02:07 AM, in [BUG] Images display upside down at random when viewing a post. (rev. 2 of 11-10-16 02:09 AM) Link | #79608
Posted by Tahcryon
what if I don't want to click refresh. sb needs to fix his broken ass code that he probably copypasted off some random website.

That is pure savage. RIP stapleButter :(

(post in restricted forum)

FinalShroom81
Posted on 11-28-16 10:00 PM, in Out of curiosity when did SMG2.5 end? Link | #80023
It was a really cool project, so out of curiosity, when did the Super mario galaxy 2.5 project end?

FinalShroom81
Posted on 12-21-16 11:24 PM, in Can I store programs on a flash drive to be used anywhere? Link | #80490
I hope this correct forum for this question. So I am currently learning C++ and I want to code at school. Is it possible for me to install an IDE on my flashdrive so that I can code and run my programs at my school? just curious. Thanks in advance.

FinalShroom81
Posted on 12-22-16 12:13 AM, in Can I store programs on a flash drive to be used anywhere? Link | #80495
Posted by StapleButter
if you're talking about Visual Studio, forget about it, that IDE is a behemoth that relies on system DLLs, registry keys and whatnot.

that's an example, but generally IDEs aren't exactly lightweight programs.

What about Turbo C++? It looks old so I would assume that it is not that heavy of an IDE

(post in restricted forum)

FinalShroom81
Posted on 12-29-16 10:01 PM, in What do you think about StackOverflow? Link | #80617
StackOverflow has really been frustrating to deal with ever since I first joined the site. I really hate how they prevent you from asking a question for a whole week just because one or two questions were not received well by the community. That's not all. The people there often times are jerks! Sometimes you get your question closed for the dumbest of reasons. Worst of all, if people their have a high enough reputation they can edit YOUR question without your permission. Its pure bullshit. I can't be the only one who thinks this way. That is why I put this poll together. I want to see who shares the same opinion or differs. Sharing why you chose what you chose would be helpful as well.

FinalShroom81
Posted on 01-13-17 07:26 PM, in Super Mario Odyssey Link | #80907
Personally I think the Mario game looks great. The Mario in the real world part does not bother me but I have to admit that is does not fit very well with Mario. However if you watched the Switch event last night(which I did with Etika) then you would see the other cool levels that were in the trailer. It's an Odyssey: A long journey full of adventures. I already pre-ordered my switch and can't wait for the game. I hope your not going to be too disappointed with the game staplebutter.

FinalShroom81
Posted on 01-15-17 10:06 PM, in Opinions on Game Engines? Link | #80948
So I am aware that people on this site are mostly rom hackers. However I myself do not rom hack. Instead I create games from scratch. So I want to hear your opinions on Game engines. The Engine I use for developing my games is Unity 5. It's a great engine in my opinion. What do you prefer and why?

FinalShroom81
Posted on 01-16-17 07:42 PM, in Opinions on Game Engines? Link | #80960
Posted by Yami
So, is that from scratch, or using Unity?
Can't be both...

I use Unity myself, my last time I used it was here:


Unity allows you to create any game very easily for any platform, that's why I love this engine so much.
However, I've lately become more interested to learn to make games from scratch (so C++, and either OpenGL or SFML, although Vulkan looks promising).

When I say "from scratch" I mean that in terms of an empty project in Unity. Creating games from absolute scratch is cool but takes much more time. If I were to do something like that I would probably make my own game engine.

FinalShroom81
Posted on 01-17-17 09:36 PM, in Opinions on Game Engines? Link | #80971
Posted by Spacey
Unreal is the best of the engines in my opinion, and godot is pretty cool too, but then again im awful at using engines and always tend to fair better when starting from absolutley nothing. Im not sure why that is exactly, but engines just dont click with me as easily as making it from nothing does.

What do you use to make a game from scratch?, you know like sfml or OpenGL, something like that?

FinalShroom81
Posted on 01-25-17 11:24 PM, in Error C2084 visual C++ Link | #81091
This may or may not be the right place for this but I have a problem that I need to get fixed. So I was writing a program in C++ when I came across an annoying error. The error is C2084. You can click here for more info about the error. I have looked through many stackoverflow posts to find an answer but to no success. But I have some clues. First I know that this error is a runtime error and has nothing to do with syntax. Second, My program has two classes and both include many header files which may be the source of my problem. I have a whole video on this error. click here to watch it. For some reason, I feel like this error is specific to the visual C++ compiler and if I were to try it in another compiler(e.g. GNU GCC or G++) then it would compile and run just fine. I have yet to try it but I will if I don't find a solution soon.

So here is the code were the error is occuring:(Terminal.cpp)
#include "stdafx.h"
#include "Terminal.h"
#include <iostream>
#include <string>
#include <conio.h>
#include "StringReverse.h"


Terminal::Terminal()
{
}

Terminal::~Terminal()
{
}

void Terminal::Setup()
{
system("title Cooper City High Showcase Program by Javier Martinez 2017");
//.c_str() is for converting the std::string to const char*
system(_lightGreen.c_str());
}

void Terminal::RenderMainMenu()
{
std::string input;
std::cout << "\tMAIN MENU\t" << "Type number to select option:\n\n";
std::cout << "1. Preferences\n\n";
std::cout << "2. Word Reversal\n\n";
std::cout << "3. Description\n\n";
std::cout << "4. Exit Program\n\n";
std::cout << "________________________\n\n";
std::cin >> input;
Terminal::NavigateBasedOnSelection(input);
}

void Terminal::NavigateBasedOnSelection(std::string in)
{
if (in == "1")
{
Terminal::RenderPreferencesMenu();
}
else if (in == "2")
{
Terminal::NotImplementedNotification();
}
else if (in == "3")
{
Terminal::DisplayDescription();
}
else if (in == "4")
{
system("EXIT");
}
else
{
Terminal::ResetBackToMainMenu();
}
}

void Terminal::ResetBackToMainMenu()
{
std::cout << "Invalid Selection, Please try again.";
_getch();
system("cls");
Terminal::RenderMainMenu();
}

void Terminal::RenderPreferencesMenu()
{
system("cls");
std::string input;
std::cout << "\tPREFERENCES MENU\t" << "Change the font color:\n";
std::cout << "1. Gray\n\n";
std::cout << "2. Blue\n\n";
std::cout << "3. Light Green\n\n";
std::cout << "4. Aqua\n\n";
std::cout << "5. Light Aqua\n\n";
std::cout << "6. Light Red\n\n";
std::cout << "7. Light Purple\n\n";
std::cout << "8. Yellow\n\n";
std::cout << "9. Return to Main Menu\n";
std::cout << "____________________________\n\n";
std::cin >> input;
Terminal::ColorSwitchBasedOnSelection(input);
}

void Terminal::ColorSwitchBasedOnSelection(std::string in)
{
if (in == "1")
{
system(_gray.c_str());
Terminal::BasicReset();
}
else if (in == "2")
{
system(_blue.c_str());
Terminal::BasicReset();
}
else if (in == "3")
{
system(_lightGreen.c_str());
Terminal::BasicReset();
}
else if (in == "4")
{
system(_aqua.c_str());
Terminal::BasicReset();
}
else if (in == "5")
{
system(_lightAqua.c_str());
Terminal::BasicReset();
}
else if (in == "6")
{
system(_lightRed.c_str());
Terminal::BasicReset();
}
else if (in == "7")
{
system(_lightPurple.c_str());
Terminal::BasicReset();
}
else if (in == "8")
{
system(_yellow.c_str());
Terminal::BasicReset();
}
else if (in == "9")
{
/*Not a color switch but brings the user back
to the main menu of the program*/
Terminal::BasicReset();
}
else
{
std::cout << "Invalid Selection, please try again.";
_getch();
RenderPreferencesMenu();
}
}

void Terminal::BasicReset()
{
system("cls");
Terminal::RenderMainMenu();
}

void Terminal::NotImplementedNotification()
{
system("cls");
std::cout << "This feature has not yet been Implemented.";
_getch();
BasicReset();
}

void Terminal::DisplayDescription()
{
system("cls");
std::cout << _description << "\n\n1/6/2017 - 1/14/2017";
_getch();
Terminal::BasicReset();
}

void Terminal::RenderWordReversal()
{
std::string input;
std::cout << "\tWORD REVERSAL\t" << "Type in a word and press return:\n\n";
std::cout << "Type anything then press enter:\t";
std::cin >> input;
std::string reverInput = StringReverse::ReverseWord(input);
std::cout << "\n\nThe word in reverse:\t" << reverInput << "\n\n";
_getch();
Terminal::BasicReset();
}
If you all need anymore info then I will be happy to give it to you. Thank you all in advance, I truly appreciate every response I can get.

FinalShroom81
Posted on 01-26-17 09:14 PM, in Error C2084 visual C++ Link | #81110
Does anyone know of any sites I can post my full code on? I want to do this so that you can get the full context and help me figure out the source of this error. Also, I have not tried anything with GNU GCC or G++ yet. I said that I feel like it would work. As for using "system()" in c++ I have my reasoning for using it. First, I don't know of any other way to execute windows commands right now. Second, This is a windows console application and I won't be running this program on any other operating system. I will post more code here on this post for the time being.

FinalShroom81
Posted on 01-26-17 09:19 PM, in Error C2084 visual C++ Link | #81112
Here is all of my Terminal.h code
#pragma once
#include <iostream>
#include <string>
#include "StringReverse.h"

class Terminal
{

public:
Terminal() {}
~Terminal();
static void Setup();
static void RenderMainMenu();
static void NavigateBasedOnSelection(std::string in);
static void ResetBackToMainMenu();
static void RenderPreferencesMenu();
static void ColorSwitchBasedOnSelection(std::string in);
static void BasicReset();
static void RenderWordReversal();

private:
static void NotImplementedNotification();
static void DisplayDescription();
//Values to be passed into the system();
static std::string _gray;
static std::string _blue;
static std::string _lightGreen;
static std::string _aqua;
static std::string _lightAqua;
static std::string _lightRed;
static std::string _lightPurple;
static std::string _yellow;
//Full Description variable:
static std::string _description;
};
//All static members must be initialized outside of the class:
std::string Terminal::_gray = "COLOR 8";
std::string Terminal::_blue = "COLOR 1";
std::string Terminal::_lightGreen = "COLOR A";
std::string Terminal::_aqua = "COLOR 3";
std::string Terminal::_lightAqua = "COLOR B";
std::string Terminal::_lightRed = "COLOR C";
std::string Terminal::_lightPurple = "COLOR D";
std::string Terminal::_yellow = "COLOR 6";
The error seems to be caused by line 10 of this file.

FinalShroom81
Posted on 01-26-17 09:36 PM, in Error C2084 visual C++ Link | #81114
Posted by StapleButter
Terminal() {}
that's why. you're trying to declare a second body for that function.

If I remove that then a huge amount of errors will appear, according to the last time I tried but I will attempt it again.

FinalShroom81
Posted on 01-26-17 11:12 PM, in Error C2084 visual C++ Link | #81116
Posted by StapleButter
Terminal();
shouldn't it be like that?

So I tried your solution but It failed. I got 19 errors saying this:

Error is LNK2005
Severity Code Description Project File Line Suppression State
Error LNK2005 "private: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > Terminal::_lightGreen" (?_lightGreen@Terminal@@0V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A) already defined in CCHS_ShowcaseProgram.obj CCHS_ShowcaseProgram C:\Users\NIKE\Desktop\code projects\CCHS_ShowcaseProgram\CCHS_ShowcaseProgram\StringReverse.obj 1

FinalShroom81
Posted on 01-26-17 11:44 PM, in Error C2084 visual C++ Link | #81118
Posted by StapleButter
oh lord


try moving the "std::string Terminal::_gray = "COLOR 8";" lines to the .cpp file maybe

I will try. Thank you so much for all of the help you are giving me

FinalShroom81
Posted on 01-26-17 11:57 PM, in Error C2084 visual C++ Link | #81121
Posted by StapleButter
well, I'm trying. I hate compiler errors that are a pile of nonsense, especially when it's something dumb like forgetting a ;.

I know the error has nothing to do with syntax so don't worry about that. The error has something to do with the Linker.
Pages: 1 2 3

Main - Posts by FinalShroom81

Page rendered in 0.032 seconds. (2048KB of memory used)
MySQL - queries: 22, rows: 142/142, time: 0.009 seconds.
[powered by Acmlm] Acmlmboard 2.064 (2018-07-20)
© 2005-2008 Acmlm, Xkeeper, blackhole89 et al.