annotate ErrorHandling.h @ 2443:1e1b2728b3d3

moved pKeyActionMap
author Ritor1
date Wed, 23 Jul 2014 17:34:47 +0600
parents d6887ee81068
children 1d04e48651d4
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 1558
diff changeset
1 #define _CRT_NON_CONFORMING_SWPRINTFS
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
2 #pragma once
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
3
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
4 #define Error(format, ...) Error_impl_(__FILE__, __FUNCTION__, __LINE__, format, __VA_ARGS__)
1558
30db6d265ceb Changed the new Assert macro definition slightly, Party::AddItem (for some reason in players.cpp) renamed to Party::AddItemToParty, cleaned up; some unused variables in previous functions removed
Grumpy7
parents: 1545
diff changeset
5 #define Assert(condition, ...) Assert_impl_(__FILE__, __FUNCTION__, __LINE__, condition, #condition, __VA_ARGS__)
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
6
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
7
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
8
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
9 #include <stdarg.h>
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2253
diff changeset
10 #include <stdio.h>
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
11 inline __declspec(noreturn) void Error_impl_(const char *filename, const char *functionname, int line,
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
12 const char *format, ...)
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
13 {
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
14 va_list va;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
15 va_start(va, format);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
16 {
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
17 char header[4096];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
18 sprintf(header, "Error in %s: %u\n\t%s\n\n", filename, line, functionname);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
19
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
20 char msg_body[8192];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
21 vsprintf(msg_body, format, va);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
22
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
23 wchar_t msg[sizeof(header) + sizeof(msg_body)];
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 1558
diff changeset
24 swprintf(msg, 8192, L"%S %S", header, msg_body);
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
25
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
26 extern void MsgBox(const wchar_t *, const wchar_t *);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
27 MsgBox(msg, L"Error");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
28 }
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
29 va_end(va);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
30
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
31 __debugbreak();
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
32 }
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
33
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
34
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
35 inline void Assert_impl_(const char *filename, const char *functionname, int line,
1558
30db6d265ceb Changed the new Assert macro definition slightly, Party::AddItem (for some reason in players.cpp) renamed to Party::AddItemToParty, cleaned up; some unused variables in previous functions removed
Grumpy7
parents: 1545
diff changeset
36 bool condition, const char *condition_string, const char *format = nullptr, ...)
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
37 {
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
38 if (condition)
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
39 return;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
40
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
41 va_list va;
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
42 va_start(va, format);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
43 {
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
44 char header[4096];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
45 sprintf(header, "Assertion in %s: %u\n\t%s:\n%s\n\n", filename, line, functionname, condition_string);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
46
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
47 char msg_body[8192];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
48 vsprintf(msg_body, format, va);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
49
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
50 wchar_t msg[sizeof(header) + sizeof(msg_body)];
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
51 if (format)
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 1558
diff changeset
52 swprintf(msg, (sizeof(header) + sizeof(msg_body)), L"%S %S", header, msg_body);
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
53 else
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 1558
diff changeset
54 swprintf(msg, (sizeof(header) + sizeof(msg_body)), L"%S", header);
1545
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
55
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
56 extern void MsgBox(const wchar_t *, const wchar_t *);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
57 MsgBox(msg, L"Assertion");
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
58 }
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
59 va_end(va);
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
60
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
61 __debugbreak();
c4ab816fcc5e assert, Abortf, AbortWithError -> Assert, Error
Nomad
parents:
diff changeset
62 }