aboutsummaryrefslogtreecommitdiff
path: root/core/io/file_access_buffered_fa.h
diff options
context:
space:
mode:
authorRémi Verschelde2017-03-05 16:44:50 +0100
committerRémi Verschelde2017-03-05 16:44:50 +0100
commit5dbf1809c6e3e905b94b8764e99491e608122261 (patch)
tree5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /core/io/file_access_buffered_fa.h
parent45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff)
downloadgodot-5dbf180.tar.gz
godot-5dbf180.tar.zst
godot-5dbf180.zip
A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
Diffstat (limited to 'core/io/file_access_buffered_fa.h')
-rw-r--r--core/io/file_access_buffered_fa.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/core/io/file_access_buffered_fa.h b/core/io/file_access_buffered_fa.h
index 000c2b45f..dd1e99f8f 100644
--- a/core/io/file_access_buffered_fa.h
+++ b/core/io/file_access_buffered_fa.h
@@ -31,16 +31,16 @@
#include "core/io/file_access_buffered.h"
-template<class T>
+template <class T>
class FileAccessBufferedFA : public FileAccessBuffered {
T f;
int read_data_block(int p_offset, int p_size, uint8_t *p_dest = 0) const {
- ERR_FAIL_COND_V( !f.is_open(), -1 );
+ ERR_FAIL_COND_V(!f.is_open(), -1);
- ((T*)&f)->seek(p_offset);
+ ((T *)&f)->seek(p_offset);
if (p_dest) {
@@ -63,9 +63,9 @@ class FileAccessBufferedFA : public FileAccessBuffered {
};
};
- static FileAccess* create() {
+ static FileAccess *create() {
- return memnew( FileAccessBufferedFA<T>() );
+ return memnew(FileAccessBufferedFA<T>());
};
protected:
@@ -75,29 +75,27 @@ protected:
};
public:
-
-
void store_8(uint8_t p_dest) {
f.store_8(p_dest);
};
- void store_buffer(const uint8_t *p_src,int p_length) {
+ void store_buffer(const uint8_t *p_src, int p_length) {
f.store_buffer(p_src, p_length);
};
- bool file_exists(const String& p_name) {
+ bool file_exists(const String &p_name) {
return f.file_exists(p_name);
};
- Error _open(const String& p_path, int p_mode_flags) {
+ Error _open(const String &p_path, int p_mode_flags) {
close();
Error ret = f._open(p_path, p_mode_flags);
- if (ret !=OK)
+ if (ret != OK)
return ret;
//ERR_FAIL_COND_V( ret != OK, ret );
@@ -133,16 +131,14 @@ public:
};
*/
- virtual uint64_t _get_modified_time(const String& p_file) {
+ virtual uint64_t _get_modified_time(const String &p_file) {
return f._get_modified_time(p_file);
}
- FileAccessBufferedFA() {
-
+ FileAccessBufferedFA(){
};
};
-
#endif // FILE_ACCESS_BUFFERED_FA_H