Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- void flip_visibility();
- void attack();
- void heal(char *name1, char *name2, players ppl[], int amount_players);
- int counter = 0;
- typedef struct Player
- {
- char name[100];
- int team_num;
- int power;
- char visibility[100];
- int exist;
- };
- struct Super_t super_tr[1000]; /*Creating the global variable Super_t is the array of the struct of the superheroes */
- FILE *O = fopen("output.txt", "w"); /*Creating the O file for outputtin the work of out program */
- int main()
- {
- FILE *f = fopen("input.txt", "r"); /*f - file for our inputs wich we gonna read from this file and send it to our program*/
- int Amount_of_the_leaders; /*the amount of the magicians */
- fscanf(f, "%d", &Amount_of_the_leaders); /// reading(taking) it from the file f(wich is the file that have our initila inputs)
- printf("%d", Amount_of_the_leaders); /*outputting it */
- char leaders[Amount_of_the_leaders][100]; /*the 2dim array of the magicians : 1st -is the amount of them , 2nd- is the size of the names (it is 100)*/
- for (int i = 0; i < Amount_of_the_leaders; ++i) /// loop goes till the amount of the magicians
- {
- char names[20]; // the name of the heroes to be store in the console
- fscanf(f, "%s ", leaders[i]); // taking from the file and store to the names
- /// inputtting from the saved name
- }
- int amount_players; /// the number of the players
- fscanf(f, "%d", &amount_players); /// reading it
- Player ppl[2 * amount_players]; /// creating the array of the structs
- for (int i = 0; i < amount_players; ++i) /*the loop for the inputing the values of the names to the structs of them */
- {
- fscanf(f, "%s", ppl[i].name); // inputing the names
- fscanf(f, "%d", &ppl[i].team_num); // in wich team the player is
- fscanf(f, "%d", &ppl[i].power); // the power of the player
- fscanf(f, "%s", ppl[i].visibility); // the visibility of the player
- ppl[i].exist = 1; // we created this variable in case if this player will be the part of the SUPERHERO
- } /// outputing i
- char name_p[20]; /// the name of the player
- int comand; // the participationg to the comand
- int power; /// the power of the player
- char visibility[10]; /// the visibility of the player
- for (int i = 0; i < amount_players; i++) /// the loop for the reading all the players features
- {
- fscanf(f, "%s %d %d %s ", name_p, &comand, &power, visibility); /// the fscanf for timely storing the value of the things
- printf("%s\n%d\n%d\n%s\n", name_p, comand, power, visibility); /// the outputting the values that we took from the file and store it to the variables , and after we just outputting from them
- }
- char name_a[100]; /*needs for storing 1 line of the input */
- while (fgets(name_a, 100, f) != NULL) /// some while for reading the all of the string . Reaading from the file till the 100 of the symobl , indeed we just read the one big line
- /*
- HOW THE LOGIC OF THE ABOVE LOOP WORKS :
- ` 1) fgets() - takes one hole line of the file "f"(wich for reading the files)
- 2)storing to the variable(name_a[100])
- 3)the CONDITION : till the line will not finish- when the line finished the line will be the NULL
- */
- {
- printf("%s", name_a); /// Output the hole line abouve
- int i = 0; /// needs for the act[i]
- char act[30]; /// the variable for storing the modes(attack ...)
- while (name_a[i] != ' ')
- /*
- HOW THE LOGIC OF THE ABOVE LOOP WORKS:
- STORING TO THE ACT[] TILL WHEN IN THE ARRAY OF NAME_A WILL NOT BE THE " _"
- */
- {
- act[i] = name_a[i]; /// so we are assingning to the char value of the line name_a till the "_"
- i++; // here we count in order to know till wich position we stopped
- }
- act[i] = '\0'; /// after that we are assigning to the array of the act "\0" - in order to understand in wich position the array of the act[] we left
- printf("Act: %s\n", act); /// after the storing we output the mode (the act )
- i++; /// is it to skip the "_"
- char p[30]; /// NAME STORING // it is for the name of the person
- int temp = 0; /// it is for the storing the value of the p in to the order of the 0
- while (name_a[i] != ' ' && name_a[i] != '\n' && name_a[i] != '\0') // we read the text till the " ", till the "\n", and till the "\0"
- {
- p[temp] = name_a[i]; /// storing the value of the p[temp] from the number_a[i]
- i++; /// the i increase
- temp++; // also the temp
- }
- i++; /// DO NOT NEED [SEE 78_LINE] // is it skip the " ";
- p[temp] = '\0'; /// assigninig to the array of the p in the temp the "\0"
- printf("Player1: %s %d\n", p, strlen(p)); /// IT IS NEEDED, WE CONSIDER IT AS THE INPUT // printed the name of the player and the size of the array p
- char q[30]; /// IT IS FOR READING THE NAME OF THE SECOND PLAYER
- temp = 0;
- while (name_a[i] != '\n' && name_a[i] != '\0')
- {
- q[temp] = name_a[i];
- temp++;
- i++;
- }
- q[temp] = '\0';
- printf("Player2: %s %d\n", q, strlen(q));
- if (strcmp(act, "flip_visibility") == 0) // IT WAS AS THE EXPLANATION
- // flip_visibility(p)
- {
- flip_visibility();
- }
- else if (strcmp(act, "attack") == 0)
- {
- // attack(p, q)
- attack(p, q, m);
- attack(char *name1, char *name2, players ppl[], int amount_players)
- how to pass the name1 and the name2 of the given from the file name
- ? how
- }
- /// else if ()
- // heal
- // super
- //* array[n]{0}
- }
- return 0;
- }
- void flip_visibility(char *name, players ppl[], int amount_players) /// the function for changing the visibiliyt of the hero
- {
- for (int i = 0; i < amount_players; i++) // LOOP FOR FINDING THE GIVEN NAME FROM THE ARRAY OF THE STRUCTURE
- {
- if (strcmp(name, ppl[i].name) == 0) /// IF FOR CHECKING IF THE GIVEN NAME IS EQUAL FROM THE NAME OF THE STRUCTURE
- {
- if (ppl[i].power == 0)
- {
- fprintf(o, "This player is frozen");
- return;
- }
- if (strcmp(ppl[i].visibility, "True") == 0) /// REVERSING THE VALUE OF THE VISIBILITY , BY CHECKING
- {
- strcpy(ppl[i].visibility, "False");
- }
- else
- strcpy(ppl[i].visibility, "True"); /// changing it by using the strcpy
- }
- }
- }
- void attack(char *name1, char *name2, players ppl[], int amount_players)
- {
- int i1, i2;
- for (int i = 0; i < amount_players; i++)
- {
- if (strcmp(name1, ppl[i].name) == 0)
- {
- i1 = i;
- }
- if (strcmp(name2, ppl[i].name) == 0)
- {
- i2 = i;
- }
- }
- if (strcmp(ppl[i1].visibility, "False") == 0)
- {
- fprintf(O, "This player cannot play\n");
- return;
- }
- if (ppl[i1].power == 0)
- {
- fprintf(O, "This player is frozen\n");
- return;
- }
- if (strcmp(ppl[i2].visibility, "False") == 0)
- {
- ppl[i1].power = 0;
- return;
- }
- if (ppl[i1].power > ppl[i2].power)
- {
- ppl[i1].power += (ppl[i1].power - ppl[i2].power);
- if (ppl[i1].power > 1000)
- ppl[i1].power = 1000;
- ppl[i2].power = 0;
- }
- /// checking if the visibility false
- else if (ppl[i1].power < ppl[i2].power)
- {
- ppl[i2].power += ppl[i2].power - ppl[i1].power;
- if (ppl[i2].power > 1000)
- {
- ppl[i2].power = 1000;
- }
- ppl[i1].power = 0;
- }
- else if (ppl[i1].power == ppl[i2].power)
- {
- ppl[i1].power = 0;
- ppl[i2].power = 0;
- }
- }
- void heal(char *name1, char *name2, players ppl[], int amount_players)
- {
- // need to check if the players in the same of the comand
- // write the process of giving the half of the health to another player
- // look in the case if the heal need to both of the player
- int i1, i2;
- for (int i = 0; i < amount_players; i++)
- {
- if (strcmp(name1, ppl[i].name) == 0)
- {
- i1 = i;
- }
- if (strcmp(name2, ppl[i].name) == 0)
- {
- i2 = i;
- }
- }
- if (ppl[i1].team_num != ppl[i2].team_num)
- {
- fprintf(O, "Both players should be from the same team\n");
- return;
- } // Should we return here ?
- if (i1 == i2)
- {
- fprintf(O, "The player cannot heal itself\n");
- return;
- }
- if (ppl[i1].power == 0)
- {
- fprintf(O, "This player is frozen");
- return;
- }
- if (ppl[i1].team_num == ppl[i2].team_num)
- {
- ppl[i1].power = (ppl[i1].power + 1) / 2;
- ppl[i2].power += ppl[i1].power;
- if (ppl[i2].power > 1000)
- {
- ppl[i2].power = 1000;
- }
- }
- }
- void superhero(char *name1, char *name2, Player ppl[], int amount_players)
- {
- Player *player1;
- Player *player2;
- int checker_ppl = 0;
- for (int i = 0; i < amount_players; i++)
- {
- if (strcmp(name1, ppl[i].name))
- {
- checker_ppl++;
- player1 = &ppl[i];
- }
- if (strcmp(name2, ppl[i].name))
- {
- checker_ppl++;
- player2 = &ppl[i];
- }
- }
- if (checker_ppl == 2)
- {
- if (player1->team_num != player2->team_num)
- {
- fprintf(O, "Both players should be from the same team\n");
- return;
- }
- else (strcmp(player1->name,player2->name))
- {
- // printf("The player cannot do super action with itself"); /// THIS OUTPUT EROR SHOULD BE IN THE OUTPUT.TXT NOT IN THE CONSOLE . SHOULD TO IMPLEMENT
- fprintf(O, "The player cannot do super action with itself\n");
- return;
- }
- }
- /// if (ppl[i1].power == 0) should we consider when in the superhero making is the player wich is the frozen in the both of the cases ?
- char initial[100] = "S_";
- char number[100];
- {
- sprintf(number, "%d", counter); // convert the int number into the char number;
- strcat(initial, number); // store the number to the initial :S_+1
- /*HERE WE NEED TO MAKE IT WHEN OUR VARIABLES ALSO IS SUPERHERO AND WE NEED TO ADD THE VALUES OF THE SUPERHERO HERE */
- super_tr[counter].power = p1 + p2; // storing the power of the super_tr[i] by adding the all the power of the pl[i1] and pl[i2]
- if (super_tr[counter].power > 1000)
- {
- super_tr[counter].power = 1000;
- }
- super_tr[counter].visibility = "True";
- super_tr[counter].name = initial;
- } /*IT IS IN CASE WHEN BOTH OF THE VARIABLES ARE THE HEROES NOT THE SUPER */
- if (name_1 == 1)
- {
- ppl[i1].exist = 0;
- } /*HERE ALSO NEED TO CONSIDER THE CASE WHEN WE WILL MAKE ONE EXIST OF THE VARIABLE WICH IS NOT SUPER */
- if (name_2 == 1)
- {
- ppl[i2].exist = 0;
- } /*OR THE CASE WHEN BOTH OF THE VARIABLES SUPERHERO WE DO NOT NEED TO USE IT */
- counter++;
- }
- void eror_priority(/*the returning variables of the erors*/)
- {
- if (/*checking them */)
- {
- /*and outputtin that error wich in the high priority first */
- }
- }
Add Comment
Please, Sign In to add comment