anushervon111

Untitled

Oct 8th, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 12.44 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. void flip_visibility();
  5. void attack();
  6. void heal(char *name1, char *name2, players ppl[], int amount_players);
  7.  
  8. int counter = 0;
  9.  
  10. typedef struct Player
  11. {
  12.     char name[100];
  13.     int team_num;
  14.     int power;
  15.     char visibility[100];
  16.     int exist;
  17. };
  18.  
  19. struct Super_t super_tr[1000];      /*Creating the global variable Super_t is the array of the struct of the superheroes */
  20. FILE *O = fopen("output.txt", "w"); /*Creating the O file for outputtin the work of out program */
  21.  
  22. int main()
  23. {
  24.     FILE *f = fopen("input.txt", "r");              /*f - file for our inputs wich we gonna read from this file and send it to our program*/
  25.     int Amount_of_the_leaders;                      /*the amount of the magicians */
  26.     fscanf(f, "%d", &Amount_of_the_leaders);        /// reading(taking) it from the file f(wich is the file that have our initila inputs)
  27.     printf("%d", Amount_of_the_leaders);            /*outputting it */
  28.     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)*/
  29.     for (int i = 0; i < Amount_of_the_leaders; ++i) /// loop goes till the amount of the magicians
  30.     {
  31.         char names[20];               // the name of the heroes to be store in the console
  32.         fscanf(f, "%s ", leaders[i]); // taking from the file and store to the names
  33.                                       /// inputtting from the saved name
  34.     }
  35.     int amount_players;               /// the number of the players
  36.     fscanf(f, "%d", &amount_players); /// reading it
  37.     Player ppl[2 * amount_players];   /// creating the array of the structs
  38.  
  39.     for (int i = 0; i < amount_players; ++i) /*the loop for the inputing the values of the names to the structs of them */
  40.     {
  41.         fscanf(f, "%s", ppl[i].name);       // inputing the names
  42.         fscanf(f, "%d", &ppl[i].team_num);  // in wich team the player is
  43.         fscanf(f, "%d", &ppl[i].power);     // the power of the player
  44.         fscanf(f, "%s", ppl[i].visibility); // the visibility of the player
  45.         ppl[i].exist = 1;                   // we created this variable in case if this player will be the part of the SUPERHERO
  46.     }                                       /// outputing i
  47.     char name_p[20];                        /// the name of the player
  48.     int comand;                             // the participationg to the comand
  49.  
  50.     int power;           /// the power of the player
  51.     char visibility[10]; /// the visibility of the player
  52.  
  53.     for (int i = 0; i < amount_players; i++) /// the loop for the reading all the players features
  54.     {
  55.         fscanf(f, "%s %d %d %s ", name_p, &comand, &power, visibility); /// the fscanf for timely storing the value of the things
  56.         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
  57.     }
  58.  
  59.     char name_a[100]; /*needs for storing 1 line of the input */
  60.  
  61.     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
  62.                                           /*
  63.                                                    HOW THE LOGIC OF THE ABOVE LOOP WORKS :
  64.                                                `   1) fgets() - takes one hole line of the file "f"(wich for reading the files)
  65.                                                    2)storing to the variable(name_a[100])
  66.                                                    3)the CONDITION : till the line will not finish- when the line finished the line will be the NULL
  67.                                           */
  68.     {
  69.         printf("%s", name_a); /// Output the hole line abouve
  70.         int i = 0;            /// needs for the act[i]
  71.         char act[30];         /// the variable for storing the modes(attack ...)
  72.         while (name_a[i] != ' ')
  73.         /*
  74.             HOW THE LOGIC OF THE ABOVE LOOP WORKS:
  75.             STORING TO THE ACT[] TILL WHEN IN THE ARRAY OF NAME_A WILL NOT BE THE " _"
  76.         */
  77.         {
  78.             act[i] = name_a[i]; /// so we are assingning to the char value of the line name_a till the "_"
  79.             i++;                // here we count in order to know till wich position we stopped
  80.         }
  81.         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
  82.         printf("Act: %s\n", act);                                          /// after the storing we output the mode (the act )
  83.         i++;                                                               /// is it to skip the "_"
  84.         char p[30];                                                        /// NAME STORING                                            // it is for the name of the person
  85.         int temp = 0;                                                      /// it is for the storing the value of the p in to the order of the 0
  86.         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"
  87.         {
  88.             p[temp] = name_a[i]; /// storing the value of the p[temp] from the number_a[i]
  89.             i++;                 /// the i increase
  90.             temp++;              // also the temp
  91.         }
  92.         i++;                                      /// DO NOT NEED [SEE 78_LINE]                                   // is it skip the " ";
  93.         p[temp] = '\0';                           /// assigninig to the array of the p in the temp the "\0"
  94.         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
  95.         char q[30];                               /// IT IS FOR READING THE NAME OF THE SECOND PLAYER
  96.         temp = 0;
  97.         while (name_a[i] != '\n' && name_a[i] != '\0')
  98.         {
  99.             q[temp] = name_a[i];
  100.             temp++;
  101.             i++;
  102.         }
  103.         q[temp] = '\0';
  104.         printf("Player2: %s %d\n", q, strlen(q));
  105.         if (strcmp(act, "flip_visibility") == 0) // IT WAS AS THE EXPLANATION
  106.         // flip_visibility(p)
  107.         {
  108.             flip_visibility();
  109.         }
  110.         else if (strcmp(act, "attack") == 0)
  111.         {
  112.             // attack(p, q)
  113.             attack(p, q, m);
  114.             attack(char *name1, char *name2, players ppl[], int amount_players)
  115.                 how to pass the name1 and the name2 of the given from the file name
  116.                 ? how
  117.         }
  118.         ///  else if ()
  119.  
  120.         // heal
  121.  
  122.         // super
  123.         //* array[n]{0}
  124.     }
  125.  
  126.     return 0;
  127. }
  128.  
  129. void flip_visibility(char *name, players ppl[], int amount_players) /// the function for changing the visibiliyt of the hero
  130. {
  131.     for (int i = 0; i < amount_players; i++) // LOOP FOR FINDING THE GIVEN NAME FROM THE ARRAY OF THE STRUCTURE
  132.     {
  133.         if (strcmp(name, ppl[i].name) == 0) /// IF FOR CHECKING IF THE GIVEN NAME IS EQUAL FROM THE NAME OF THE STRUCTURE
  134.         {
  135.             if (ppl[i].power == 0)
  136.             {
  137.                 fprintf(o, "This player is frozen");
  138.                 return;
  139.             }
  140.             if (strcmp(ppl[i].visibility, "True") == 0) /// REVERSING THE VALUE OF THE VISIBILITY , BY CHECKING
  141.             {
  142.                 strcpy(ppl[i].visibility, "False");
  143.             }
  144.             else
  145.                 strcpy(ppl[i].visibility, "True"); /// changing it by using the strcpy
  146.         }
  147.     }
  148. }
  149.  
  150. void attack(char *name1, char *name2, players ppl[], int amount_players)
  151. {
  152.     int i1, i2;
  153.     for (int i = 0; i < amount_players; i++)
  154.     {
  155.         if (strcmp(name1, ppl[i].name) == 0)
  156.         {
  157.             i1 = i;
  158.         }
  159.  
  160.         if (strcmp(name2, ppl[i].name) == 0)
  161.         {
  162.             i2 = i;
  163.         }
  164.     }
  165.     if (strcmp(ppl[i1].visibility, "False") == 0)
  166.     {
  167.         fprintf(O, "This player cannot play\n");
  168.         return;
  169.     }
  170.     if (ppl[i1].power == 0)
  171.     {
  172.         fprintf(O, "This player is frozen\n");
  173.         return;
  174.     }
  175.     if (strcmp(ppl[i2].visibility, "False") == 0)
  176.     {
  177.         ppl[i1].power = 0;
  178.         return;
  179.     }
  180.     if (ppl[i1].power > ppl[i2].power)
  181.     {
  182.         ppl[i1].power += (ppl[i1].power - ppl[i2].power);
  183.         if (ppl[i1].power > 1000)
  184.             ppl[i1].power = 1000;
  185.         ppl[i2].power = 0;
  186.     }
  187.     /// checking  if the visibility false
  188.     else if (ppl[i1].power < ppl[i2].power)
  189.     {
  190.         ppl[i2].power += ppl[i2].power - ppl[i1].power;
  191.         if (ppl[i2].power > 1000)
  192.         {
  193.             ppl[i2].power = 1000;
  194.         }
  195.         ppl[i1].power = 0;
  196.     }
  197.     else if (ppl[i1].power == ppl[i2].power)
  198.     {
  199.         ppl[i1].power = 0;
  200.         ppl[i2].power = 0;
  201.     }
  202. }
  203.  
  204. void heal(char *name1, char *name2, players ppl[], int amount_players)
  205. {
  206.     // need to check if the players in the same of the comand
  207.     // write the process of giving the half of the health to another player
  208.     //  look in the case if the heal need to both of the player
  209.     int i1, i2;
  210.     for (int i = 0; i < amount_players; i++)
  211.     {
  212.         if (strcmp(name1, ppl[i].name) == 0)
  213.         {
  214.             i1 = i;
  215.         }
  216.         if (strcmp(name2, ppl[i].name) == 0)
  217.         {
  218.             i2 = i;
  219.         }
  220.     }
  221.  
  222.     if (ppl[i1].team_num != ppl[i2].team_num)
  223.     {
  224.         fprintf(O, "Both players should be from the same team\n");
  225.         return;
  226.     } // Should we return here ?
  227.     if (i1 == i2)
  228.     {
  229.         fprintf(O, "The player cannot heal itself\n");
  230.         return;
  231.     }
  232.     if (ppl[i1].power == 0)
  233.     {
  234.         fprintf(O, "This player is frozen");
  235.         return;
  236.     }
  237.  
  238.     if (ppl[i1].team_num == ppl[i2].team_num)
  239.     {
  240.         ppl[i1].power = (ppl[i1].power + 1) / 2;
  241.         ppl[i2].power += ppl[i1].power;
  242.         if (ppl[i2].power > 1000)
  243.         {
  244.             ppl[i2].power = 1000;
  245.         }
  246.     }
  247. }
  248.  
  249. void superhero(char *name1, char *name2, Player ppl[], int amount_players)
  250. {
  251.     Player *player1;
  252.     Player *player2;
  253.     int checker_ppl = 0;
  254.     for (int i = 0; i < amount_players; i++)
  255.     {
  256.         if (strcmp(name1, ppl[i].name))
  257.         {
  258.             checker_ppl++;
  259.             player1 = &ppl[i];
  260.         }
  261.         if (strcmp(name2, ppl[i].name))
  262.         {
  263.             checker_ppl++;
  264.             player2 = &ppl[i];
  265.         }
  266.     }
  267.     if (checker_ppl == 2)
  268.     {
  269.         if (player1->team_num != player2->team_num)
  270.         {
  271.             fprintf(O, "Both players should be from the same team\n");
  272.             return;
  273.         }
  274.         else (strcmp(player1->name,player2->name))
  275.         {
  276.             // 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
  277.             fprintf(O, "The player cannot do super action with itself\n");
  278.             return;
  279.         }
  280.     }
  281.     /// 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 ?
  282.  
  283.     char initial[100] = "S_";
  284.     char number[100];
  285.     {
  286.         sprintf(number, "%d", counter); // convert the int number into the char number;
  287.         strcat(initial, number);        // store the number to the initial :S_+1
  288.         /*HERE WE NEED TO MAKE IT WHEN OUR VARIABLES ALSO IS SUPERHERO AND WE NEED TO ADD THE VALUES OF THE SUPERHERO HERE */
  289.         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]
  290.         if (super_tr[counter].power > 1000)
  291.         {
  292.             super_tr[counter].power = 1000;
  293.         }
  294.         super_tr[counter].visibility = "True";
  295.  
  296.         super_tr[counter].name = initial;
  297.     } /*IT IS IN CASE WHEN BOTH OF THE VARIABLES ARE THE HEROES NOT THE SUPER */
  298.     if (name_1 == 1)
  299.     {
  300.         ppl[i1].exist = 0;
  301.     } /*HERE ALSO NEED TO CONSIDER THE CASE WHEN WE WILL MAKE ONE EXIST OF THE VARIABLE WICH IS NOT SUPER */
  302.     if (name_2 == 1)
  303.     {
  304.         ppl[i2].exist = 0;
  305.     } /*OR THE CASE WHEN BOTH OF THE VARIABLES SUPERHERO WE DO NOT NEED TO USE IT */
  306.  
  307.     counter++;
  308. }
  309.  
  310. void eror_priority(/*the returning variables of the erors*/)
  311. {
  312.     if (/*checking them */)
  313.     {
  314.         /*and outputtin that error wich in the high priority first */
  315.     }
  316. }
Add Comment
Please, Sign In to add comment