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

    Всего: 5

  2. C++ / Говнокод #12563

    +12

    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
    class Thread
    {
    public:
    	Thread(const Thread&);
    	Thread() : handle(NULL), running(false), finished(false)
    	{
    		handle = (HANDLE)(_beginthreadex(NULL, 0, &(Thread::threadRun), this, CREATE_SUSPENDED, NULL));
    	}
    	~Thread()
    	{
    		if(isRunning()) {
    			TerminateThread(handle, 0);
    		} 
    
    		CloseHandle(handle);
    	}
    	void start(void* arg)
    	{
    		if(isRunning() || isFinished()) {
    			throw Exception("Thread is running or finished!");
    		} else {
    			this->arg = arg;
    			ResumeThread(handle);
    		}
    		
    	}
    	void pause()
    	{
    		if(isRunning()) {
    			SuspendThread(handle);
    		} else {
    			throw Exception("Thread is not running or finished!");
    		}
    	}
    	void resume()
    	{
    		if(!(isRunning())) {
    			throw Exception("Thread is finished!");
    		} else {
    			ResumeThread(handle);
    		}
    	}
    	void stop()
    	{
    		if(isRunning()) {
    			TerminateThread(handle, 0);
    			running = false;
    			finished = true;
    			throw Exception("Thread stopped!");
    		} else {
    			throw Exception("Thread is not running or finished!");
    		}
    	}
    	void setPriority(ThreadPriority priority)
    	{
    		if(isFinished()) {
    			throw Exception("Thread is finished!");
    		} else {
    			switch(priority) {
    			case ThreadPriorityLow:
    				SetThreadPriority(handle, THREAD_PRIORITY_LOWEST);
    				break;
    			case ThreadPriorityNormal:
    				SetThreadPriority(handle, THREAD_PRIORITY_NORMAL);
    				break;
    			case ThreadPriorityHigh:
    				SetThreadPriority(handle, THREAD_PRIORITY_HIGHEST);
    				break;
    			default:
    				throw Exception("Invalid priority!");
    				break;
    			}
    		}
    	}
    	bool isRunning()
    	{
    		return (running);
    	}
    	bool isFinished()
    	{
    		return (finished);
    	}
    protected:
    	virtual void run(void *arg) = 0;
    private:
    	static unsigned int __stdcall threadRun(void *arg)
    	{
    		Thread *thread = static_cast<Thread*>(arg);
    		thread->running = true;
    		thread->run(thread->arg);
    		thread->running = false;
    		thread->finished = true;
    		_endthreadex(0);
    		return (0);
    	}
    	void *arg;
    	HANDLE handle;
    	bool running;
    	bool finished;
    };

    Из предыдущей оперы.

    dreesto, 10 Февраля 2013

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

    +7

    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
    template<typename T>
    class Enumerable
    {
    public:
    	Enumerable() : enumerableInProcess(false) { };
    	virtual void begin() = 0;
    	virtual void end() = 0;
    	virtual bool enumeration(T* item) = 0;
    protected:
    	bool enumerableInProcess;
    };
    template<typename T>
    class List : Enumerable<T*>
    {
    public:
    	class ListItem
    	{
    	public:
    		friend class List;
    		T item;
    		ListItem(T item) : item(item), next(nullptr), previous(nullptr)
    		{
    		}
    	private:
    		class ListItem* next;
    		class ListItem* previous;
    	};
    
    	/* ... */
    	
    	void begin()
    	{
    		if(enumerableInProcess) {
    			throw Exception("Error Enumerable!");
    		}
    
    		enumerableInProcess = true;
    		enumerationItem = first;
    	}
    	bool enumeration(T** item)
    	{
    		if(enumerableInProcess) {
    			if(enumerationItem != nullptr) {
    				(*item) = &(enumerationItem->item);
    				enumerationItem = enumerationItem->next;
    				return (true);
    			} else {
    				(*item) = nullptr;
    				return (false);
    			}
    		} else {
    			throw Exception("Error Enumerable!");
    		}
    	}
    	bool enumeration(ListItem **listItem)
    	{
    		if(enumerableInProcess) {
    			if(enumerationItem != nullptr) {
    				(*listItem) = enumerationItem;
    				enumerationItem = enumerationItem->next;
    				return (true);
    			} else {
    				(*listItem) = nullptr;
    				return (false);
    			}
    		} else {
    			throw Exception("Error Enumerable!");
    		}
    	}
    	void end()
    	{
    		if(!enumerableInProcess) {
    			throw Exception("Error Enumerable!");
    		}
    		enumerableInProcess = false;
    	}
    private:
    	const int size;
    	int count;
    	ListItem *first;
    	ListItem *last;
    	ListItem *enumerationItem;
    };
    void list_t_1()
    {
    	List<int> list(8);
    	List<int>::ListItem *item;
    	list.add(1);
    	list.add(2);
    	list.add(4);
    	list.add(8);
    	list.add(16);
    
    	list.begin();
    	while(list.enumeration(&item))
    	{
    		printf("%i\n", (item->item));
    	}
    	list.end();
    }

    dreesto, 09 Февраля 2013

    Комментарии (13)
  4. Си / Говнокод #12215

    +139

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    /* В комментариях то что хотел Автор от своей программы 	*/
    /* Радует однако, что она компилируется и во время		*/
    /* работы не выдает ни каких ошибок				*/
    /* Порядок операторов сохранен.					*/
    /* Тот же код только вырезанно "лишнее".			*/
    
    /* Эта ф-ия находится в другом cpp файле */
    float f(float x, float y)
    {
    	/* Тут что-то происходит с x и y */
    	return x, y;
    }
    
    void main(void)
    {
    	float **m;
    
    	/* ... */
    	float f(float x, float y);
    	/* ... */
    
    	/* Задается N					*/
    	float N;
    	/* ... */
    
    	/* Выделяется память под массив m[N][2] 	*/
    	m = (float **)malloc(sizeof(float*));
    	for(i = 0; i < N; i++)
    	{
    		m[i] = (float*)malloc(sizeof(float*) * 2);
    	}
    
    	/* ... */
    	for(i = 0; i < N; i++)
    	{
    		/* Массив заполняется числами						*/
    		/* В m[i][] должны быть записанны числа x, y измененый ф-ей f 		*/
    		/* т. е.	m[i][0] = xf						*/
    		/*		m[i][1] = yf						*/
    		for(j = 0; j < 2; j++)
    		{
    			m[i][j] = f(x, y);
    			/* ... */
    		}
    	}
    
    	/* ... */
    }

    dreesto, 28 Ноября 2012

    Комментарии (71)
  5. VisualBasic / Говнокод #9391

    −112

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    'http://www.gotdotnet.ru/files/1003/
    Public Class Form1
        Public massiv(50), massiv1(50) As String
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim a As String
            a = " " + TextBox1.Text
            For i As Integer = 1 To a.Length - 1
                For j As Integer = 1 To 44
                    If a.Substring(i, 1).ToLower = massiv(j) Then
                        TextBox2.Text = TextBox2.Text + massiv1(j)
                        Exit For
                    End If
                Next
            Next
        End Sub
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            massiv(1) = "а"
            massiv(2) = "б"
            massiv(3) = "в"
            massiv(4) = "г"
            massiv(5) = "д"
            massiv(6) = "е"
            massiv(7) = "ё"
            massiv(8) = "ж"
            '...
            massiv(31) = "э"
            massiv(32) = "ю"
            massiv(33) = "я"
            massiv(34) = "1"
            massiv(35) = "2"
            massiv(36) = "3"
            massiv(37) = "4"
            massiv(38) = "5"
            massiv(39) = "6"
            massiv(40) = "7"
            massiv(41) = "8"
            massiv(42) = "9"
            massiv(43) = "0"
            massiv(44) = " "
            '  ////////////////////////////////////////////////////////////////////////////////////
            massiv1(1) = "1"
            massiv1(2) = "2"
            massiv1(3) = "3"
            massiv1(4) = "4"
            massiv1(5) = "5"
            massiv1(6) = "6"
            massiv1(7) = "7"
            massiv1(8) = "8"
            massiv1(9) = "9"
            massiv1(10) = "a"
            massiv1(11) = "b"
            massiv1(12) = "c"
            massiv1(13) = "d"
            '...
            massiv1(31) = "v"
            massiv1(32) = "w"
            massiv1(33) = "x"
            massiv1(34) = "<"
            massiv1(35) = ">"
            massiv1(36) = "!"
            massiv1(37) = "="
            massiv1(38) = "?"
            massiv1(39) = "/"
            massiv1(40) = "@"
            massiv1(41) = "~"
            massiv1(42) = "\"
            massiv1(43) = "-"
            massiv1(44) = "_"
    
        End Sub
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Dim g As String
            g = " " + TextBox1.Text
            For i As Integer = 1 To g.Length - 1
                For j As Integer = 1 To 44
                    If g.Substring(i, 1).ToLower = massiv1(j) Then
                        TextBox2.Text = TextBox2.Text + massiv(j)
                        Exit For
                    End If
                Next
            Next
        End Sub
    End Class

    dreesto, 11 Февраля 2012

    Комментарии (7)
  6. PHP / Говнокод #9287

    +141

    1. 1
    //А почему PHP кода на этом сайте больше всего?

    dreesto, 01 Февраля 2012

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