-
Notifications
You must be signed in to change notification settings - Fork 0
/
elemento.c
154 lines (112 loc) · 2.57 KB
/
elemento.c
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
/*----------------------------
| elemento.c
| Author: LB, DG, JB, MC, LC
----------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "elemento.h"
#define CANTIDAD_ELEMENTOS 10
struct _Elemento
{
char nombre[20];
int ID;
int cantidad;
};
/*------------
| Constructor
-------------*/
Elemento crearElemento(char nombre[20], int ID, int cantidad)
{
Elemento elemento = malloc(sizeof(struct _Elemento));
strcpy(elemento->nombre, nombre);
elemento->ID = ID;
elemento->cantidad = cantidad;
return elemento;
}
Elemento crearElementoPorTeclado()
{
char nombre[20];
int ID;
int cantidad;
printf("\nIngrese nombre del elemento: ");
fflush(stdin);
gets(nombre);
printf("\nIngrese ID para \"%s\": ", nombre);
scanf("%d", &ID);
printf("\nIngrese cantidad para \"%s\": ", nombre);
scanf("%d", &cantidad);
return crearElemento(nombre, ID, cantidad);
}
Elemento inicializarElemento()
{
return crearElemento("", -1, -1);
}
/*------------
| Destructor
-------------*/
void destruirElemento(Elemento elemento)
{
free(elemento);
}
/*------------
| Setters
-------------*/
void setNombreElemento(Elemento elemento, char nuevoNombre[20])
{
strcpy(elemento->nombre, nuevoNombre);
}
void setIDElemento(Elemento elemento, int nuevoID)
{
elemento->ID = nuevoID;
}
void setCantidadElemento(Elemento elemento, int nuevaCantidad)
{
elemento->cantidad = nuevaCantidad;
}
/*------------
| Getters
-------------*/
char * getNombreElemento(Elemento elemento)
{
return elemento->nombre;
}
int getIDElemento(Elemento elemento)
{
return elemento->ID;
}
int getCantidadElemento(Elemento elemento)
{
return elemento->cantidad;
}
void mostrarElemento(Elemento elemento)
{
if(elemento->cantidad != -1)
{
printf("\nElemento:");
printf("\n\t- Nombre: %s", elemento->nombre);
printf("\n\t- ID: %d", elemento->ID);
printf("\n\t- Cantidad: %d", elemento->cantidad);
}
}
/*---------------------------
| Procedimientos de archivo
---------------------------*/
void guardarElementos(Elemento elementos[])
{
FILE * archivoElementos = fopen("elementos.txt", "w");
for(int i = 0; i < CANTIDAD_ELEMENTOS; i++)
{
if(elementos[i]->cantidad != -1)
{
fprintf(
archivoElementos,
"%s+%d+%d\n",
elementos[i]->nombre,
elementos[i]->ID,
elementos[i]->cantidad
);
}
}
fclose(archivoElementos);
}