PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Committer:
spinal
Date:
Sun Nov 18 15:47:54 2018 +0000
Revision:
64:6e6c6c2b664e
Parent:
5:ea7377f3d1af
added fix for directrectangle()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 5:ea7377f3d1af 1 /* mbed Microcontroller Library
Pokitto 5:ea7377f3d1af 2 * Copyright (c) 2006-2013 ARM Limited
Pokitto 5:ea7377f3d1af 3 *
Pokitto 5:ea7377f3d1af 4 * Licensed under the Apache License, Version 2.0 (the "License");
Pokitto 5:ea7377f3d1af 5 * you may not use this file except in compliance with the License.
Pokitto 5:ea7377f3d1af 6 * You may obtain a copy of the License at
Pokitto 5:ea7377f3d1af 7 *
Pokitto 5:ea7377f3d1af 8 * http://www.apache.org/licenses/LICENSE-2.0
Pokitto 5:ea7377f3d1af 9 *
Pokitto 5:ea7377f3d1af 10 * Unless required by applicable law or agreed to in writing, software
Pokitto 5:ea7377f3d1af 11 * distributed under the License is distributed on an "AS IS" BASIS,
Pokitto 5:ea7377f3d1af 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Pokitto 5:ea7377f3d1af 13 * See the License for the specific language governing permissions and
Pokitto 5:ea7377f3d1af 14 * limitations under the License.
Pokitto 5:ea7377f3d1af 15 */
Pokitto 5:ea7377f3d1af 16 #ifndef MBED_FILEBASE_H
Pokitto 5:ea7377f3d1af 17 #define MBED_FILEBASE_H
Pokitto 5:ea7377f3d1af 18
Pokitto 5:ea7377f3d1af 19 typedef int FILEHANDLE;
Pokitto 5:ea7377f3d1af 20
Pokitto 5:ea7377f3d1af 21 #include <stdio.h>
Pokitto 5:ea7377f3d1af 22
Pokitto 5:ea7377f3d1af 23 #if defined(__ARMCC_VERSION) || defined(__ICCARM__)
Pokitto 5:ea7377f3d1af 24 # define O_RDONLY 0
Pokitto 5:ea7377f3d1af 25 # define O_WRONLY 1
Pokitto 5:ea7377f3d1af 26 # define O_RDWR 2
Pokitto 5:ea7377f3d1af 27 # define O_CREAT 0x0200
Pokitto 5:ea7377f3d1af 28 # define O_TRUNC 0x0400
Pokitto 5:ea7377f3d1af 29 # define O_APPEND 0x0008
Pokitto 5:ea7377f3d1af 30
Pokitto 5:ea7377f3d1af 31 # define NAME_MAX 255
Pokitto 5:ea7377f3d1af 32
Pokitto 5:ea7377f3d1af 33 typedef int mode_t;
Pokitto 5:ea7377f3d1af 34 typedef int ssize_t;
Pokitto 5:ea7377f3d1af 35 typedef long off_t;
Pokitto 5:ea7377f3d1af 36
Pokitto 5:ea7377f3d1af 37 #else
Pokitto 5:ea7377f3d1af 38 # include <sys/fcntl.h>
Pokitto 5:ea7377f3d1af 39 # include <sys/types.h>
Pokitto 5:ea7377f3d1af 40 # include <sys/syslimits.h>
Pokitto 5:ea7377f3d1af 41 #endif
Pokitto 5:ea7377f3d1af 42
Pokitto 5:ea7377f3d1af 43 #include "platform.h"
Pokitto 5:ea7377f3d1af 44
Pokitto 5:ea7377f3d1af 45 namespace mbed {
Pokitto 5:ea7377f3d1af 46
Pokitto 5:ea7377f3d1af 47 typedef enum {
Pokitto 5:ea7377f3d1af 48 FilePathType,
Pokitto 5:ea7377f3d1af 49 FileSystemPathType
Pokitto 5:ea7377f3d1af 50 } PathType;
Pokitto 5:ea7377f3d1af 51
Pokitto 5:ea7377f3d1af 52 class FileBase {
Pokitto 5:ea7377f3d1af 53 public:
Pokitto 5:ea7377f3d1af 54 FileBase(const char *name, PathType t);
Pokitto 5:ea7377f3d1af 55
Pokitto 5:ea7377f3d1af 56 virtual ~FileBase();
Pokitto 5:ea7377f3d1af 57
Pokitto 5:ea7377f3d1af 58 const char* getName(void);
Pokitto 5:ea7377f3d1af 59 PathType getPathType(void);
Pokitto 5:ea7377f3d1af 60
Pokitto 5:ea7377f3d1af 61 static FileBase *lookup(const char *name, unsigned int len);
Pokitto 5:ea7377f3d1af 62
Pokitto 5:ea7377f3d1af 63 static FileBase *get(int n);
Pokitto 5:ea7377f3d1af 64
Pokitto 5:ea7377f3d1af 65 protected:
Pokitto 5:ea7377f3d1af 66 static FileBase *_head;
Pokitto 5:ea7377f3d1af 67
Pokitto 5:ea7377f3d1af 68 FileBase *_next;
Pokitto 5:ea7377f3d1af 69 const char *_name;
Pokitto 5:ea7377f3d1af 70 PathType _path_type;
Pokitto 5:ea7377f3d1af 71
Pokitto 5:ea7377f3d1af 72 /* disallow copy constructor and assignment operators */
Pokitto 5:ea7377f3d1af 73 private:
Pokitto 5:ea7377f3d1af 74 FileBase(const FileBase&);
Pokitto 5:ea7377f3d1af 75 FileBase & operator = (const FileBase&);
Pokitto 5:ea7377f3d1af 76 };
Pokitto 5:ea7377f3d1af 77
Pokitto 5:ea7377f3d1af 78 } // namespace mbed
Pokitto 5:ea7377f3d1af 79
Pokitto 5:ea7377f3d1af 80 #endif