1. Список говнокодов пользователя catnikita255

    Всего: 2

  2. Си / Говнокод #19275

    −24

    1. 1
    DoS - атака на ваш сайт.

    Я на вас DoS - атаку направил вместе с друзьями. Прошлый оффлайн - тоже мы постарались.

    catnikita255, 31 Декабря 2015

    Комментарии (39)
  3. C++ / Говнокод #19265

    −3

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    #include <iostream>
    #include <time.h>
    #include <windows.h>
    #include <thread>
    #include <conio.h>
    #include <locale.h>
    #include <string>
    #include <tchar.h>
    using namespace std;
    //functions
    void DrawUI();
    void setup();
    bool first_r;
    void ShowHelp();
    void Up();
    void Left();
    void Right();
    void Down();
    void ShowFoodMenu();
    //vars
    bool lock = false;
    bool play = false;
    //functions
    float Cal2Weight(float calEat);
    // game center
    int posx = 16; //yes, this is a center of room
    int posz = 5;
    
    static HANDLE _ConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE);//console out
    //for game center
    BOOL SetCurrentPos(SHORT x, SHORT y)
    {
    	COORD pos = { x, y };
    	return SetConsoleCursorPosition(_ConsoleOut, pos);
    }
    //some class declarations
    //food
    class Food
    {
    public:
    	Food(float calority, string name);
    	~Food();
    	void SetCalority(float newCalority) { itsCalority = newCalority; };
    	void SetName(string newName) { itsName = newName; };
    	float GetCalority() const { return itsCalority; }
    	string GetName() const { return itsName; };
    private:
    	float calority;
    	float itsCalority;
    	float newCalority;
    	string name;
    	string newName;
    	string itsName;
    };
    //food constructor
    Food::Food(float calority, string name)
    {
    	float itsCalority = calority;
    	string itsName = name;
    }
    //food destructor
    Food::~Food() {}
    //cat
    class Cat
    {
    public:
    	Cat(int age, float weight, string name);
    	~Cat();
    	void SetWeight(float newWeight) { itsWeight = newWeight; };
    	void SetAge(int newAge) { itsAge = newAge; };
    	void SetName(string newName) { itsName = newName; };
    	int GetAge() const { return itsAge; };
    	float GetWeight() const { return itsWeight; };
    	void Eat(string foodname);
    	string GetName() const { return itsName; };
    
    private:
    	int itsAge;
    	float itsWeight;
    	int age;
    	float weight;
    	int newAge;
    	float newWeight;
    	string itsName;
    	string newName;
    	string name;
    	string foodname;
    };
    //cat destructor
    Cat::~Cat() {}
    //making cat
    Cat Cat1(1, 1, "Unnamed");
    //food declaration
    Food Fries(2350, "Fries");
    Food Chips(1540, "Chips");
    Food Potatoes(251, "Potatoes");
    Food Water(0, "Water");
    Food Meat(200, "Meat");
    Food CatFood(65, "Special Cat Food");
    //for eating, bad code because i don't need normal, it works

    Мой очень старый код мелкой игры. Куча бреда для винды.

    catnikita255, 29 Декабря 2015

    Комментарии (9)