commit
78a0bc4806
136
src/ui.c
136
src/ui.c
|
@ -3,18 +3,65 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
/* Created by Juergen Buechel, 13.12.2024/
|
/* Created by Juergen Buechel, 13.12.2024/
|
||||||
*/
|
*/
|
||||||
|
#include "ui.h"
|
||||||
|
// #include "db.h"
|
||||||
|
#include "llist.h"
|
||||||
#include "planner.h" // for subject and event structs
|
#include "planner.h" // for subject and event structs
|
||||||
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "ui.h"
|
|
||||||
#include <assert.h>
|
|
||||||
#include "llist.h"
|
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
char taskname[256]; // taskName Buffer
|
||||||
|
int taskcreation_date = 0;
|
||||||
|
int taskdeadline_date = 0;
|
||||||
|
int taskpriority = 0;
|
||||||
|
int taskspare = 0;
|
||||||
|
// llist *list = NULL;
|
||||||
|
//
|
||||||
|
// Task *task = newTask(taskname, taskcreation_date, taskdeadline_date,
|
||||||
|
// taskpriority, taskspare); if (task == NULL) {
|
||||||
|
// printf("Fehler beim Erstellen der Aufgabe.\n");
|
||||||
|
// return 0;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if (list == NULL) {
|
||||||
|
// list = llistNew(task, cmpTaskN);
|
||||||
|
// } else {
|
||||||
|
// list = llistAppend(list, task); // Rückgabewert verwenden
|
||||||
|
// }
|
||||||
|
llist *list = llistNew(NULL, cmpTaskN);
|
||||||
|
if (list == NULL) {
|
||||||
|
printf("Fehler beim Erstellen der Aufgabe.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
|
int choice = 0, i = 0;
|
||||||
|
do {
|
||||||
|
printf(" -1- Neues Fach eingeben\n");
|
||||||
|
printf(" -2- Verfuegbare Zeit eingeben\n");
|
||||||
|
printf(" -3- Alle vorhandenen Faecher aufliesten\n");
|
||||||
|
printf(" -4- Kalenderlink ausgeben\n");
|
||||||
|
printf(" -5- Planer beenden\n");
|
||||||
|
printf(" Wähle die gewünschte Option aus\n");
|
||||||
|
if (scanf("%d", &choice) != 1) {
|
||||||
|
printf("Falsche Eingabe\n");
|
||||||
|
};
|
||||||
|
choice = 0;
|
||||||
|
|
||||||
|
while ((choice < 1 || choice > 5)) {
|
||||||
|
switch (choice) {
|
||||||
|
case 1: {
|
||||||
|
printf(" Geben sie das gewünschte Fach ein: \n");
|
||||||
|
if (scanf("%255s", taskname) != 1) {
|
||||||
|
printf("Ungültige Eingabe für den Namen.\n");
|
||||||
|
return -1;
|
||||||
|
=======
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
char taskname = NULL;
|
char *taskname = "empty";
|
||||||
int taskcreation_date = 0;
|
int taskcreation_date = 0;
|
||||||
int taskdeadline_date = 0;
|
int taskdeadline_date = 0;
|
||||||
int taskpriority = 0;
|
int taskpriority = 0;
|
||||||
|
@ -27,8 +74,15 @@ int main(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int choice = 0;
|
if (list == NULL) {
|
||||||
do {
|
list = llistNew(task, cmpTaskN);
|
||||||
|
} else {
|
||||||
|
list = llistAppend(list, task); // Rückgabewert verwenden
|
||||||
|
}
|
||||||
|
|
||||||
|
int choice = 0, i = 0;
|
||||||
|
do
|
||||||
|
{
|
||||||
printf(" -1- Neues Fach eingeben\n");
|
printf(" -1- Neues Fach eingeben\n");
|
||||||
printf(" -2- Verfuegbare Zeit eingeben\n");
|
printf(" -2- Verfuegbare Zeit eingeben\n");
|
||||||
printf(" -3- Alle vorhandenen Faecher aufliesten\n");
|
printf(" -3- Alle vorhandenen Faecher aufliesten\n");
|
||||||
|
@ -38,15 +92,12 @@ int main(void)
|
||||||
if( scanf("%d", &choice) != 1){
|
if( scanf("%d", &choice) != 1){
|
||||||
printf("Falsche Eingabe\n");};
|
printf("Falsche Eingabe\n");};
|
||||||
choice = 0;
|
choice = 0;
|
||||||
}while(( choice < 1 || choice > 5));{
|
|
||||||
|
while(( choice < 1 || choice > 5)){
|
||||||
switch (choice){
|
switch (choice){
|
||||||
case 0: {
|
|
||||||
printf(" Bitte wählen sie eine Zahl zwischen 1 und 5!\n");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1:{
|
case 1:{
|
||||||
printf(" Geben sie das gewünschte Fach ein: \n");
|
printf(" Geben sie das gewünschte Fach ein: \n");
|
||||||
if (scanf("%255s", taskname) != 1) {
|
if (scanf("%c", taskname) != 1) {
|
||||||
printf("Ungültige Eingabe für den Namen.\n");
|
printf("Ungültige Eingabe für den Namen.\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -79,7 +130,8 @@ int main(void)
|
||||||
|
|
||||||
case 3: if( task == NULL){
|
case 3: if( task == NULL){
|
||||||
printf("Die Liste ist leer");
|
printf("Die Liste ist leer");
|
||||||
} else {
|
}
|
||||||
|
else{
|
||||||
llist *iterator = list;
|
llist *iterator = list;
|
||||||
while (iterator != NULL) {
|
while (iterator != NULL) {
|
||||||
Task *currentTask = (Task *)(iterator->data); // Cast zu Task
|
Task *currentTask = (Task *)(iterator->data); // Cast zu Task
|
||||||
|
@ -92,13 +144,53 @@ int main(void)
|
||||||
// case 4: iCAl();break;
|
// case 4: iCAl();break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
>>>>>>> cf63dc47121e0381e7850dcf85ad23b4c82dd268
|
||||||
}
|
}
|
||||||
if (list == NULL) {
|
|
||||||
list = llistNew(task, cmpTaskN);
|
printf(" Wie viel Zeit bleibt ihnen:\n");
|
||||||
} else {
|
if (scanf("%d", &taskdeadline_date) != 1) {
|
||||||
list = llistAppend(list, task); // Rückgabewert verwenden
|
printf("Ungültige Eingabe.\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf(" Gib die Priorität des Faches an: \n");
|
||||||
|
if (scanf("%d", &taskpriority) != 1) {
|
||||||
|
printf("Ungültige Eingabe.\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf(" Wie viel Zeit habe Sie für dieses Fach: \n");
|
||||||
|
if (scanf("%d", &taskspare) != 1) {
|
||||||
|
printf("Ungültige Eingabe.\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
printf(
|
||||||
|
"Geben Sie die zur verfuegung stehende Zeit für die Fächer an: \n");
|
||||||
|
scanf("%d", &taskspare);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
// if (task == NULL) {//task?
|
||||||
|
// printf("Die Liste ist leer");
|
||||||
|
// } else {
|
||||||
|
// llist *iterator = list;
|
||||||
|
// while (iterator != NULL) {
|
||||||
|
// Task *currentTask = (Task *)(iterator->data); // Cast zu Task
|
||||||
|
// printf("Fach: %s, Deadline: %ld, Priorität: %d\n",
|
||||||
|
// currentTask->name, currentTask->deadline,
|
||||||
|
// currentTask->priority);
|
||||||
|
// iterator = iterator->next; // Gehe zum nächsten Listenelement
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
break;
|
||||||
|
// case 4: iCAl();break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
while (choice ==5) {}; {
|
} while (choice != 5);
|
||||||
return EXIT_SUCCESS;
|
{
|
||||||
}
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue