{"id":2661,"date":"2020-04-11T08:54:37","date_gmt":"2020-04-10T23:54:37","guid":{"rendered":"http:\/\/taki-lab.site\/bocci\/?p=2661"},"modified":"2020-04-11T08:54:40","modified_gmt":"2020-04-10T23:54:40","slug":"%e3%80%90c%e3%80%91%e3%80%90altseed%e3%80%91%e3%80%90%e6%95%b0%e7%8b%ac%e3%80%91%e3%83%9e%e3%82%a6%e3%82%b9%e6%93%8d%e4%bd%9c%e3%82%92%e3%81%84%e3%82%8d%e3%81%84%e3%82%8d","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=2661","title":{"rendered":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u3044\u308d\u3044\u308d"},"content":{"rendered":"\n<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002<\/p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"xOyU6Kb0Op\"><a href=\"https:\/\/taki-lab.site\/bocci\/?p=2653\">\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u6587\u5b57\u5217\u3092\u8868\u793a\u3059\u308b<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u6587\u5b57\u5217\u3092\u8868\u793a\u3059\u308b&#8221; &#8212; \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" src=\"https:\/\/taki-lab.site\/bocci\/?p=2653&#038;embed=true#?secret=bruxbKMY4u#?secret=xOyU6Kb0Op\" data-secret=\"xOyU6Kb0Op\" width=\"474\" height=\"267\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>\u4eca\u56de\u306f\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u8a66\u3057\u3066\u307f\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u306e\u4f4d\u7f6e\u3092\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u8868\u793a\u3001\u3055\u3089\u306b\u5de6\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u305d\u306e\u5ea7\u6a19\u3092\u8868\u793a\u3059\u308b\u3001\u3068\u3044\u3046\u611f\u3058\u3067\u3084\u3063\u3066\u307f\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace sudokuGUI\n{\n    class Program\n    {\n        &#91;STAThread]\n        static void Main(string&#91;] args)\n        {\n            \/\/ Altseed\u3092\u521d\u671f\u5316\u3059\u308b\u3002\n            asd.Engine.Initialize(\"\u6570\u72ec\u89e3\u6790\u30c4\u30fc\u30eb\", 1000, 800, new asd.EngineOption());\n\n            \/\/ \u4e0b\u5730\n            var background = new asd.GeometryObject2D();\n            asd.Engine.AddObject2D(background);\n            var bgRect = new asd.RectangleShape();\n            bgRect.DrawingArea = new asd.RectF(0, 0, 1000, 800);\n            background.Shape = bgRect;\n\n            \/\/ \u30c6\u30af\u30b9\u30c1\u30e3\u30fc\n            asd.Texture2D texture = asd.Engine.Graphics.CreateTexture2D(\"squares.png\");\n\n            \/\/ \u30de\u30b9\n            int offsetX = 10;\n            int offsetY = 10;\n            var square = new asd.TextureObject2D();\n            square.Position = new asd.Vector2DF(offsetX, offsetY);\n            square.Texture = texture;\n            asd.Engine.AddObject2D(square);\n\n            int fontOffsetX = 19;\n            int fontOffsetY = 9;\n            var font = asd.Engine.Graphics.CreateFont(\"number.aff\");\n            var obj = new asd.TextObject2D();\n            obj.Font = font;\n            obj.Position = new asd.Vector2DF(offsetX + fontOffsetX, offsetY + fontOffsetY);\n            obj.Text = \"1\";\n            asd.Engine.AddObject2D(obj);\n\n            var obj2 = new asd.TextObject2D();\n            obj2.Font = font;\n            obj2.Position = new asd.Vector2DF(64 + offsetX + fontOffsetX, 64 + offsetY + fontOffsetY);\n            obj2.Text = \"2\";\n            asd.Engine.AddObject2D(obj2);\n\n            var mouseXText = new asd.TextObject2D();\n            mouseXText.Position = new asd.Vector2DF(700, 600);\n            mouseXText.Font = font;\n            asd.Engine.AddObject2D(mouseXText);\n\n            var mouseYText = new asd.TextObject2D();\n            mouseYText.Position = new asd.Vector2DF(700, 670);\n            mouseYText.Font = font;\n            asd.Engine.AddObject2D(mouseYText);\n\n            var mouseHXText = new asd.TextObject2D();\n            mouseHXText.Position = new asd.Vector2DF(800, 600);\n            mouseHXText.Font = font;\n            asd.Engine.AddObject2D(mouseHXText);\n\n            var mouseHYText = new asd.TextObject2D();\n            mouseHYText.Position = new asd.Vector2DF(800, 670);\n            mouseHYText.Font = font;\n            asd.Engine.AddObject2D(mouseHYText);\n\n\n            \/\/ Altseed\u304c\u9032\u884c\u53ef\u80fd\u304b\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3002\n            while (asd.Engine.DoEvents())\n            {\n                asd.Vector2DF pos = asd.Engine.Mouse.Position;\n                mouseXText.Text = string.Format(\"{0}\", pos.X);\n                mouseYText.Text = string.Format(\"{0}\", pos.Y);\n\n                if(asd.Engine.Mouse.LeftButton.ButtonState == asd.ButtonState.Push)\n                {\n                    mouseHXText.Text = string.Format(\"{0}\", pos.X);\n                    mouseHYText.Text = string.Format(\"{0}\", pos.Y);\n                }\n\n                \/\/ Altseed\u3092\u66f4\u65b0\u3059\u308b\u3002\n                asd.Engine.Update();\n            }\n\n            \/\/ Altseed\u3092\u7d42\u4e86\u3059\u308b\u3002\n            asd.Engine.Terminate();\n        }\n    }\n}\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"http:\/\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/20200411083359_Trim.mp4\"><\/video><\/figure>\n\n\n\n<p>\u306a\u304b\u306a\u304b\u826f\u3055\u305d\u3046\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u3058\u3083\u3042\u3001\u6b21\u56de\u304b\u3089UI\u3092\u3082\u3063\u3068\u8a70\u3081\u3066\u3001\u30af\u30e9\u30b9\u69cb\u6210\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u3087\u3046\u3002<\/p>\n\n\n\n<a href=\"\/\/blog.with2.net\/link\/?2023426:1010\" target=\"_blank\" rel=\"noopener noreferrer\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/03a6eee54039f74ded0b8f7548b1868f.png?w=474\" title=\"\u30d1\u30bd\u30b3\u30f3\u30e9\u30f3\u30ad\u30f3\u30b0\"><\/a>\n\n","protected":false},"excerpt":{"rendered":"<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 \u4eca\u56de\u306f\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u8a66\u3057\u3066\u307f\u307e\u3059\u3002 \u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u306e\u4f4d\u7f6e\u3092\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u8868\u793a\u3001\u3055\u3089\u306b\u5de6\u30af\u30ea\u30c3\u30af\u3059\u308b\u3068\u305d\u306e\u5ea7\u6a19\u3092\u8868\u793a\u3059\u308b\u3001\u3068\u3044\u3046\u611f\u3058\u3067\u3084\u3063\u3066\u307f\u307e\u3059\u3002 \u306a\u304b\u306a\u304b\u826f\u3055\u305d\u3046\u3067\u3059\u3002 \u3058\u3083\u3042\u3001\u6b21\u56de\u304b\u3089UI\u3092\u3082 &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=2661\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u3044\u308d\u3044\u308d<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30a6\u30b9\u64cd\u4f5c\u3092\u3044\u308d\u3044\u308d\n#TechCommit\n","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[174,3],"tags":[184,137,175],"class_list":["post-2661","post","type-post","status-publish","format-standard","hentry","category-c","category-3","tag-altseed","tag-c","tag-175"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-GV","jetpack-related-posts":[{"id":2688,"url":"https:\/\/taki-lab.site\/bocci\/?p=2688","url_meta":{"origin":2661,"position":0},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30d1\u30ec\u30c3\u30c8\u306e\u8868\u793a\u3001\u975e\u8868\u793a","author":"taki","date":"2020\u5e744\u670816\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2682 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/palette.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":2669,"url":"https:\/\/taki-lab.site\/bocci\/?p=2669","url_meta":{"origin":2661,"position":1},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011UI\u3092\u8003\u3048\u308b\u3002","author":"taki","date":"2020\u5e744\u670813\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2661 W\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/squares_sample1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/squares_sample1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/squares_sample1.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":2677,"url":"https:\/\/taki-lab.site\/bocci\/?p=2677","url_meta":{"origin":2661,"position":2},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30b9\u30af\u30e9\u30b9\u3092\u5b9f\u88c5\u3059\u308b\u3002","author":"taki","date":"2020\u5e744\u670814\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2669 \u3067\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/eb20e3bee78b032b77926fcbc1da0f69.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2682,"url":"https:\/\/taki-lab.site\/bocci\/?p=2682","url_meta":{"origin":2661,"position":3},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u30de\u30a6\u30b9\u30ab\u30fc\u30bd\u30eb\u306e\u79fb\u52d5\u3067\u8272\u3092\u5909\u3048\u308b\u3002","author":"taki","date":"2020\u5e744\u670815\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2677 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2640,"url":"https:\/\/taki-lab.site\/bocci\/?p=2640","url_meta":{"origin":2661,"position":4},"title":"\u3010C#\u3011\u3010Altseed\u3011\u3010\u6570\u72ec\u3011\u30de\u30b9\u3092\u4f5c\u6210\u3059\u308b","author":"taki","date":"2020\u5e744\u67089\u65e5","format":false,"excerpt":"\u3068\u308a\u3042\u3048\u305a\u3001\u4e0b\u5730\u3068\u306a\u308b\u30de\u30b9\u3092\u66f8\u3044\u3066\u307f\u307e\u3059\u3002 \u6700\u521d\u8003\u3048\u305f\u306e\u306f\u3001 \u3053\u3093\u306a\u753b\u50cf\u3092\u7528\u610f\u3057\u3066\u30019\u00d79\u306b\u4e26\u3079\u3066\u307f\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/46cc327b9a0d67456a4a9e79d229aed6.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/46cc327b9a0d67456a4a9e79d229aed6.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/46cc327b9a0d67456a4a9e79d229aed6.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/46cc327b9a0d67456a4a9e79d229aed6.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2653,"url":"https:\/\/taki-lab.site\/bocci\/?p=2653","url_meta":{"origin":2661,"position":5},"title":"\u3010C#\u3011\u3010ALTSEED\u3011\u3010\u6570\u72ec\u3011\u6587\u5b57\u5217\u3092\u8868\u793a\u3059\u308b","author":"taki","date":"2020\u5e744\u670810\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2640 \u5b9f\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/b7fb36bcf16ff04b872a24262a2a9187.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/b7fb36bcf16ff04b872a24262a2a9187.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/b7fb36bcf16ff04b872a24262a2a9187.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/04\/b7fb36bcf16ff04b872a24262a2a9187.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2661","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2661"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2661\/revisions"}],"predecessor-version":[{"id":2663,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2661\/revisions\/2663"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2661"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2661"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2661"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}