-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPolka_na_produkty.h
143 lines (112 loc) · 3.16 KB
/
Polka_na_produkty.h
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
//
// Created by Wiktor Sroczyński on 08/01/2021.
//
#ifndef SROCZYNSKIWIKTOR_ETAP2_POLKA_NA_PRODUKTY_H
#define SROCZYNSKIWIKTOR_ETAP2_POLKA_NA_PRODUKTY_H
#include <string>
#include <iostream>
#include "Produkt.h"
#include "Baton.h"
#include "Walidacja.h"
using namespace std;
template<typename T>
class Polka_na_produkty {
static int liczba_polek;
static int najdluzszy_string;
int liczba_produktow;
std::vector<T> wektor;
void najdluzszaNazwa(int dlugosc);
void wypiszPomocnicza(const int wartosc, const string &napis);
public:
explicit Polka_na_produkty() {
liczba_produktow = 0;
liczba_polek++;
};
void dodajProdukt(T obiekt);
int zwrocLiczbePolek() { return liczba_polek; };
int zwrocLiczbeProduktowNaPolce() { return liczba_produktow; }
int zwrocIDproduktu(int indeks);
int zwrocCeneProduktu(int indeks);
void wypisz(const int *tab);
T zdejmijOstatniProdukt();
};
template<typename T>
int Polka_na_produkty<T>::liczba_polek = 0;
template<typename T>
int Polka_na_produkty<T>::najdluzszy_string = 11;
template<typename T>
void Polka_na_produkty<T>::dodajProdukt(T obiekt) {
wektor.push_back(obiekt);
najdluzszaNazwa(obiekt->nazwa.length());
liczba_produktow += 1;
}
template<typename T>
void Polka_na_produkty<T>::wypiszPomocnicza(const int wartosc, const string &napis) {
int temp;
if (wartosc != 0) {
cout << "|";
cout << napis;
temp = najdluzszy_string - napis.length();
while (temp) {
cout << " ";
temp--;
}
cout << "|";
} else {
cout << "|";
temp = najdluzszy_string;
while (temp) {
cout << " ";
temp--;
}
cout << "|";
}
}
template<typename T>
void Polka_na_produkty<T>::wypisz(const int *tab) {
cout << "nazwa: ";
for (int j = 0; j < liczba_produktow; j++)
wypiszPomocnicza(tab[j], wektor[j]->nazwa);
cout << "\ncena: ";
for (int j = 0; j < liczba_produktow; j++)
wypiszPomocnicza(tab[j], Walidacja::wypisz_kwote(wektor[j]->cena));
cout << "\nID: ";
for (int j = 0; j < liczba_produktow; j++)
wypiszPomocnicza(tab[j], to_string(wektor[j]->ID));
for (int i = 0; i < 2; ++i) {
cout << "\n-------+";
for (int i = 0; i < liczba_produktow; i++) {
if (i) {
cout << "++";
}
int temp = najdluzszy_string;
while (temp--) {
cout << "-";
}
}
cout << "+";
}
}
template<typename T>
int Polka_na_produkty<T>::zwrocIDproduktu(int indeks) {
return wektor[indeks]->ID;
}
template<typename T>
int Polka_na_produkty<T>::zwrocCeneProduktu(int indeks) {
return wektor[indeks]->cena;
}
template<typename T>
void Polka_na_produkty<T>::najdluzszaNazwa(int dlugosc) {
if (dlugosc > najdluzszy_string) {
najdluzszy_string = dlugosc;
}
}
template<typename T>
T Polka_na_produkty<T>::zdejmijOstatniProdukt()
{
T ret = wektor[liczba_produktow-1];
wektor.pop_back();
liczba_produktow-=1;
return ret;
}
#endif //SROCZYNSKIWIKTOR_ETAP2_POLKA_NA_PRODUKTY_H