1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*****************************************************************
* Chat Program in C++ *
* Developed By: *
* Frooster *
*****************************************************************/
#include "head.h"
//must include <mutex> and <synhapi.h>
/*******************************
* Pointer variable to Users: *
* * -> User #1 or A *
* # -> User #2 or B *
*******************************/
//Random Declaraions
using namespace std;
#define SIZE 100
mutex mtx;
bool written=true;
//Global variables
char text[100];
ifstream ifile("chat.txt",ios::ate);
ofstream ofile("chat.txt",ios::ate);
int len;
//Function for User A
void userA(){
do{
cout<<"You:";
cin.getline(text,SIZE);
strcat(text,"*");
do{
try{
written=true;
mtx.lock();
ofile<<text;
mtx.unlock();
}catch(exception e){
continue;
written=false;
}
}while(!written);
memset(text,'\0',SIZE);
while(1){
memset(text,'\0',SIZE);
try{
mtx.lock();
ifile.getline(text,SIZE);
len=strlen(text);
mtx.unlock();
}catch(exception e){
continue;
};
if(text[len]=='*')
continue;
else if(text[len]=='#')
break;
Sleep(3000);
};
cout<<text;
}while(strcmpi(text,"bye") || strcmpi(text,"bye"));
ifile.close();
ofile.close();
system("pause");
exit(0);
}
//Function for User B
void userB(){
do{
while(1){
memset(text,'\0',SIZE);
try{
mtx.lock();
ifile.getline(text,SIZE);
len=strlen(text);
mtx.unlock();
}catch(exception e){
continue;
};
if(text[len]=='#')
continue;
else if(text[len]=='*')
break;
Sleep(3000);
};
cout<<"He:"<<text;
memset(text,'\0',SIZE);
cout<<"You:";
cin.getline(text,SIZE);
strcat(text,"#");
do{
try{
written=true;
mtx.lock();
ofile<<text;
mtx.unlock();
}catch(exception e){
continue;
written=false;
}
}while(!written);
memset(text,'\0',SIZE);
}while(strcmpi(text,"bye") || strcmpi(text,"bye"));
ifile.close();
ofile.close();
system("pause");
exit(0);
}
int main(int argc, char* argv[]){
if(argc<2){
cout<<"Failed to get User Priority";
cout<<"Enter User Priority in Command Line Argument"<<endl;
cout<<"Input A/a for User Priority #1"<<endl;
cout<<"Input B/b for User Priority #2"<<endl;
cout<<"Aborting Program Now..."<<endl;
system("pause");
//delay(3000);
exit(0);
}
if(strcmp(argv[1],"a")){
userA();
}
if(strcmp(argv[1],"b")){
userB();
}
else{
cout<<"Wrong User Priority.."<<endl;
//delay(3000);
system("pause");
}
return 0;
}
|